Releases: JuliaGeo/GeoInterface.jl
Releases · JuliaGeo/GeoInterface.jl
v0.5.2
v0.5.2 (2020-01-31)
v0.5.1
v0.5.1 (2020-01-31)
Merged pull requests:
- Fix plotting for shapefiles with multiple polygons (#29) (mkborregaard)
v0.5.0
GeoInterface v0.4.1
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
Fix deprecation warnings and REQUIRE julia 0.7-beta
GeoInterface v0.3.1
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
Fix deprecations (#11) * Fix deprecations * Remove Compat from REQUIRE - Allow failures on nightly - Stop testing on 0.5
GeoInterface v0.2.1
Fix deprecation warnings on julia v0.6.
GeoInterface v0.2.0
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