Releases: thinkingmachines/geowrangler
Releases · thinkingmachines/geowrangler
v0.5.1
Improvements
- Missing corner tiles issue is fixed for both
FastSquareGridGeneratorandFastBingTileGenerator(PR #255) from @joshuacortez
v0.5.0
New Features
FastSquareGridGeneratoras a faster equivalent toSquareGridGenerator(PR #253) from @joshuacortez- Just like
FastBingTileGenerator, this is also added in00_grids.ipynb.
- Just like
Improvements
- The
generate_gridmethod inSquareGridGeneratorandFastSquareGridGeneratorshows a warning when the boundary of doesn't fully enclose the AOI. (issue #147)
v0.4.0
New Features
-
FastBingTileGeneratorfor significantly speeding up grid generation (#245), thanks to @joshuacortez- This PR adds a new gridding class
FastBingTileGeneratorthat significantly speeds up grid generation. This is added in00_grids.ipynb.
- This PR adds a new gridding class
-
Exactextract zonal statsmethod for a faster raster zonal stats implementation based onexactextractpython package (#236), thanks to @tm-jc-nacpil- This PR adds a new method
create_raster_zonal_stats_exactextractthat uses theexactextractpython package for a faster raster zonal stats implementation. This is added in02_raster_zonal_stats.ipynb.
- This PR adds a new method
-
Documentation updates: updated the Development, Contributing and Release sections of the documentation to reflect the new development and release processes.