Releases: thinkingmachines/geowrangler
Releases · thinkingmachines/geowrangler
v0.5.1
Improvements
- Missing corner tiles issue is fixed for both
FastSquareGridGenerator
andFastBingTileGenerator
(PR #255) from @joshuacortez
v0.5.0
New Features
FastSquareGridGenerator
as a faster equivalent toSquareGridGenerator
(PR #253) from @joshuacortez- Just like
FastBingTileGenerator
, this is also added in00_grids.ipynb
.
- Just like
Improvements
- The
generate_grid
method inSquareGridGenerator
andFastSquareGridGenerator
shows a warning when the boundary of doesn't fully enclose the AOI. (issue #147)
v0.4.0
New Features
-
FastBingTileGenerator
for significantly speeding up grid generation (#245), thanks to @joshuacortez- This PR adds a new gridding class
FastBingTileGenerator
that significantly speeds up grid generation. This is added in00_grids.ipynb
.
- This PR adds a new gridding class
-
Exactextract zonal stats
method for a faster raster zonal stats implementation based onexactextract
python package (#236), thanks to @tm-jc-nacpil- This PR adds a new method
create_raster_zonal_stats_exactextract
that uses theexactextract
python 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.