Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/update changelog for release 0.4.0 #252

Merged
merged 3 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion geowrangler/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.4.0"
2 changes: 1 addition & 1 deletion notebooks/index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading