Skip to content

Commit 1ef1ebe

Browse files
authored
Release 0.4.0 (#131)
1 parent f46e5d1 commit 1ef1ebe

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ authors:
2424
affiliation: Purdue University
2525
orcid: https://orcid.org/0000-0002-7188-2544
2626
version: 0.4.0
27-
date-released: 2023-09-26
27+
date-released: 2023-09-27
2828
repository-code: https://github.com/openradar/xradar
2929
license: MIT

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Xradar includes all the tools to get your weather radar into the xarray data mod
1515

1616
## About
1717

18-
At a developer meeting held in the course of the ERAD2022 conference in Locarno, Switzerland, future plans and cross-package collaboration of the openradarscience community were intensively discussed.
18+
At a developer meeting held in the course of the ERAD2022 conference in Locarno, Switzerland, future plans and cross-package collaboration of the [openradarscience](https://openradar.discourse.group/) community were intensively discussed.
1919

2020
The consensus was that a close collaboration that benefits the entire community can only be maximized through joint projects. So the idea of a common software project whose only task is to read and write radar data was born. The data import should include as many available data formats as possible, but the data export should be limited to the recognized standards, such as [ODIM_H5](https://www.eumetnet.eu/activities/observations-programme/current-activities/opera/) and [CfRadial](https://github.com/NCAR/CfRadial).
2121

@@ -29,7 +29,7 @@ Xradar is considered stable for the implemented readers and writers which have b
2929

3030
## Features
3131

32-
* Import CfRadial1 data
32+
* Import/Export CfRadial1 data
3333
* Import/Export CfRadial2 data
3434
* Import/Export ODIM_H5 data
3535
* Import GAMIC HDF5

docs/history.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# History
22

3-
## development version
3+
## 0.4.0 (2023-09-27)
44

5-
* ENH: Add cfradial1 exporter ({issue}`124`) by [@syedhamidali](https://github.com/syedhamidali), ({pull}`126`) by [@syedhamidali](https://github.com/syedhamidali), improved by [@kmuehlbauer](https://github.com/kmuehlbauer)
5+
* ENH: Add cfradial1 exporter ({issue}`124`) by [@syedhamidali](https://github.com/syedhamidali), ({pull}`126`) by [@syedhamidali](https://github.com/syedhamidali)
66
* FIX: use datastore._group instead of variable["sweep_number"] ({issue}`121`) by [@aladinor](https://github.com/aladinor) , ({pull}`123`) by [@kmuehlbauer](https://github.com/kmuehlbauer)
77
* MIN: use "crs_wkt" instead of deprecated "spatial_ref" when adding CRS ({pull}`127`) by [@kmuehlbauer](https://github.com/kmuehlbauer)
8+
* FIX: always read nodata and undetect attributes from ODIM file ({pull}`125`) by [@egouden](https://github.com/egouden)
9+
* MIN: use `cmweather` colormaps in xradar ({pull}`128`) by [@kmuehlbauer](https://github.com/kmuehlbauer).
810

911
## 0.3.0 (2023-07-11)
1012
* ENH: Add new examples using radar data on AWS s3 bucket ({pull}`102`) by [@aladinor](https://github.com/aladinor)

docs/usage.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ notebooks/Accessors
2626
2727
notebooks/CfRadial1_Model_Transformation
2828
notebooks/CfRadial1
29+
notebooks/CfRadial1_Export
2930
notebooks/ODIM_H5
3031
notebooks/GAMIC
3132
notebooks/Furuno

xradar/io/export/cfradial1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def calculate_sweep_indices(dtree, dataset=None):
272272

273273
def to_cfradial1(dtree=None, filename=None, calibs=True):
274274
"""
275-
Convert a radar dtreeume dataset to the CFRadial1 format
275+
Convert a radar datatree.DataTree to the CFRadial1 format
276276
and save it to a file.
277277
278278
Parameters

0 commit comments

Comments
 (0)