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

Version 0.2.3 #34

Merged
merged 3 commits into from
Feb 29, 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
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

## Unreleased


## v0.2.3 (2024-02-29)

New contributors:
- @kjdoore

Fixed:
- Ensured all attributes are kept upon regridding (dataset, variable and coordinate attrs).
- Regridding to larger grid now result in NaNs at locations outside of starting data grid.
- Ensure all attributes are kept upon regridding (dataset, variable and coordinate attrs) ([#27](https://github.com/EXCITED-CO2/xarray-regrid/pull/27)).
- The target grid can now have coordinates sorted in decending order, instead of the regridding failing ([#29](https://github.com/EXCITED-CO2/xarray-regrid/pull/29)).
- Regridding to larger grid now result in NaNs at locations outside of starting data grid ([#33](https://github.com/EXCITED-CO2/xarray-regrid/pull/33)).

Changed:
- Moved to the Ruff formatter, instead of black.
- Moved to the Ruff formatter, instead of black ([#27](https://github.com/EXCITED-CO2/xarray-regrid/pull/27)).

## v0.2.2 (20203-11-24)
## v0.2.2 (2023-11-24)

Added:
- CITATION.cff file for Zenodo integration.
Expand Down
7 changes: 6 additions & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,19 @@ authors:
family-names: Liu
orcid: 'https://orcid.org/0000-0002-1966-8460'
affiliation: Netherlands eScience Center
- given-names: Keith
family-names: Doore
orcid: 'https://orcid.org/0000-0001-5035-4016'
affiliation: United States Geological Survey

repository-code: 'https://github.com/EXCITED-CO2/xarray-regrid'
keywords:
- xarray
- geospatial
- regridding
- conservative regridding
license: Apache-2.0
version: 0.2.2
version: 0.2.3
date-released: '2023-11-24'
abstract: >
xarray-regrid can regrid (geospatial) data to a new
Expand Down
2 changes: 1 addition & 1 deletion src/xarray_regrid/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.2"
__version__ = "0.2.3"
Loading