Skip to content

Releases: westnordost/osmapi

v3.6

20 Apr 16:19
Compare
Choose a tag to compare

MapDataParser does now not require elements to have a version attribute

v3.5

20 Apr 16:21
Compare
Choose a tag to compare

Major non-breaking update:

Instead of including as a dependency the whole library, you can include only parts of it. For example, just the parts that enable you to handle map data etc.
See readme for mor information.

v3.4

20 Apr 16:22
Compare
Choose a tag to compare
  • add setter for isModified on OsmElement
  • add changesCount field to ChangesetInfo

v3.3

20 Apr 16:24
Compare
Choose a tag to compare

Fix: Do not output lat/lon coordinates in scientific notation. F.e. output 0.0000001 and not 1e-7

v3.2

20 Apr 16:27
Compare
Choose a tag to compare
  • extend NotesDao by find and getAll method
  • document that the OSM API does not return a conflict anymore when (un)subscribing to an unclosed changeset
  • parse maxNotesQueryAreaInSquareDegrees into Capabilities from API response

v3.1

20 Apr 16:27
Compare
Choose a tag to compare

Fix: Never use default locale when upper- or lowercasing strings

v3.0

20 Apr 16:31
Compare
Choose a tag to compare

Breaking update

Use OsmLatLon (based on two doubles) by default instead of Fixed1E7LatLon (based on two ints).

Using Fixed1E7LatLon saves 8 byte per coordinate from an implementation based on doubles, but every access involves a division operation which is of course a lot slower, so it is hardly what should be the default behavior.