Skip to content

Releases: JuliaGeo/GeoInterface.jl

v0.5.2

04 Feb 17:12
v0.5.2
3604b72
Compare
Choose a tag to compare

v0.5.1

31 Jan 16:09
v0.5.1
fcb14eb
Compare
Choose a tag to compare

v0.5.1 (2020-01-31)

Diff since v0.5.0

Merged pull requests:

v0.5.0

17 Jan 16:21
v0.5.0
Compare
Choose a tag to compare

v0.5.0 (2020-01-17)

Diff since v0.4.1

This release is only breaking in the sense that it drops Julia 0.7 support.

Merged pull requests:

GeoInterface v0.4.1

03 Apr 18:04
Compare
Choose a tag to compare
Add comparison operators for some geometry types. (#22)

* implement ==, hash for AbstractPoint

* add tests for comparison operators

* implement isapprox for Points, with tests

GeoInterface v0.4.0

06 Jul 11:22
Compare
Choose a tag to compare

Fix deprecation warnings and REQUIRE julia 0.7-beta

GeoInterface v0.3.1

28 Jan 16:57
Compare
Choose a tag to compare
add implementation of shapecoords for AbstractGeometry

this is for packages implementing GeoInterface at the level of
AbstractGeometry, rather than the subtypes
AbstractPoint…AbstractMultiPolygon. They just need to define
`geotype(::AbstractGeometry)` in order for this package to identify
which geometry type it is, and return the corresponding coordinates.

We first define methods (`pointcoords()`,…,`multipolygoncoords()`) on
AbstractGeometry that returns the coordinates for different geometry
types. We can then have a `shapecoords(geom::AbstractGeometry)` that
uses `geotype(geom)` to look up the corresponding method to call

GeoInterface v0.3.0

14 Nov 02:52
Compare
Choose a tag to compare
Fix deprecations (#11)

* Fix deprecations

* Remove Compat from REQUIRE

- Allow failures on nightly
- Stop testing on 0.5

GeoInterface v0.2.1

24 May 05:09
Compare
Choose a tag to compare

Fix deprecation warnings on julia v0.6.

GeoInterface v0.2.0

30 Apr 14:01
Compare
Choose a tag to compare
Update for julia0.5 (#8)

* update for julia0.5

* remove julia 0.4 testing from travis

* x/y/z -> x/y/zcoord

closes #9

* some more x/y/z to xcoord/ycoord/zcoord

and adding Travis testing for 0.6 since nightly is about to diverge