From eb6cf4127a8b6fda1d33eeb81f48eefd943ae741 Mon Sep 17 00:00:00 2001 From: Butch Landingin Date: Tue, 13 Aug 2024 18:39:22 +0800 Subject: [PATCH 1/3] chore:Add new features for next release in changelog --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ce96091..62823c18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Release Notes +## 0.4.0 + +### New Features + +- `FastBingTileGenerator` for significantly speeding up grid generation ([#245](https://github.com/thinkingmachines/geowrangler/pull/245)), thanks to [@joshuacortez](https://github.com/joshuacortez) + - This PR adds a new gridding class `FastBingTileGenerator` that significantly speeds up grid generation. This is added in `00_grids.ipynb`. + +- `Exactextract zonal stats` method for a faster raster zonal stats implementation based on `exactextract` python package ([#236](https://github.com/thinkingmachines/geowrangler/pull/236)), thanks to [@tm-jc-nacpil](https://github.com/tm-jc-nacpil) + + - This PR adds a new method `create_raster_zonal_stats_exactextract` that uses the `exactextract` python package for a faster raster zonal stats implementation. This is added in `02_raster_zonal_stats.ipynb`. + +- Documentation updates: updated the Development, Contributing and Release sections of the documentation to reflect the new development and release processes. + ## 0.1.0 - Initial Release ### Features From 45537ae13938e85da5204633d8e9f89aba4af541 Mon Sep 17 00:00:00 2001 From: Butch Landingin Date: Tue, 13 Aug 2024 18:45:55 +0800 Subject: [PATCH 2/3] chore:Bump for 0.4.0 release --- geowrangler/__init__.py | 2 +- settings.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/geowrangler/__init__.py b/geowrangler/__init__.py index 493f7415..6a9beea8 100644 --- a/geowrangler/__init__.py +++ b/geowrangler/__init__.py @@ -1 +1 @@ -__version__ = "0.3.0" +__version__ = "0.4.0" diff --git a/settings.ini b/settings.ini index ca2da5d8..bad0a889 100644 --- a/settings.ini +++ b/settings.ini @@ -2,7 +2,7 @@ host = github repo = geowrangler lib_name = geowrangler -version = 0.3.0 +version = 0.4.0 min_python = 3.8 license = MIT black_formatting = True From f934df2e031ddee2f2a1d251488146e2f9cb8a96 Mon Sep 17 00:00:00 2001 From: Butch Landingin Date: Wed, 14 Aug 2024 13:55:39 +0800 Subject: [PATCH 3/3] Fix: Add link to dev workflow doc --- notebooks/index.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/index.ipynb b/notebooks/index.ipynb index 7ffa955d..5ac1f477 100644 --- a/notebooks/index.ipynb +++ b/notebooks/index.ipynb @@ -69,7 +69,7 @@ "\n", "To make it easy to document, maintain, and extend the package, we opted to maintain the source code, tests and documentation\n", "on Jupyter notebooks. We use [nbdev](https://nbdev.fast.ai) to generate the Python package and documentation \n", - "from the notebooks. See this document to learn more about our development workflow. \n", + "from the notebooks. See this [document](https://github.com/thinkingmachines/geowrangler/blob/master/DEVELOPMENT.md) to learn more about our development workflow. \n", "\n", "By doing this, we hope to make it easy for geospatial analysts, scientists, and engineers to learn, explore, and extend this package \n", "for their geospatial processing needs. \n",