Skip to content

Commit 51a284e

Browse files
Update README.md
1 parent 34762e1 commit 51a284e

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@
44
[![documentation dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliageo.github.io/CommonDataModel.jl/dev/)
55

66

7-
This package contains abstracts type definition to ensure compatibility of the package [GRIBDatasets](https://github.com/JuliaGeo/GRIBDatasets.jl) and [NCDatasets](https://github.com/Alexander-Barth/NCDatasets.jl) for manipulating GRIB and NetCDF files. This package aims to follow the [Common Data Model](https://docs.unidata.ucar.edu/netcdf-c/current/netcdf_data_model.html) and the [CF (climate and forecast models) Metadata Conventions](https://cfconventions.org/).
7+
This package contains abstracts type definition for loading and manipulating GRIB, NetCDF, geoTiff and Zarr files. This package aims to follow the [Common Data Model](https://docs.unidata.ucar.edu/netcdf-c/current/netcdf_data_model.html) and the [CF (climate and forecast models) Metadata Conventions](https://cfconventions.org/).
8+
9+
10+
| Format | Package | read support | write support |
11+
|---------|--------------|:------------:|:-------------:|
12+
| NetCDF | [`NCDatasets`](https://github.com/Alexander-Barth/NCDatasets.jl) |||
13+
| OPeNDAP | [`NCDatasets`](https://github.com/Alexander-Barth/NCDatasets.jl) || - |
14+
| GRIB | [`GRIBDatasets`](https://github.com/JuliaGeo/GRIBDatasets.jl) || - |
15+
| geoTIFF | [`TIFFDatasets`](https://github.com/Alexander-Barth/TIFFDatasets.jl) || - |
16+
| Zarr | [`ZarrDatasets`](https://github.com/JuliaGeo/ZarrDatasets.jl) |||
17+
818

919
Features include:
1020
* query and edit metadata of arrays and datasets
@@ -13,6 +23,8 @@ Features include:
1323
* group, map and reduce a variable (`CommonDataModel.groupby`, `CommonDataModel.@groupby`) and rolling reductions like running means `CommonDataModel.rolling`)
1424

1525

26+
27+
1628
Here is minimal example for loading GRIB or NetCDF files.
1729

1830
``` julia
@@ -40,8 +52,7 @@ close(ds)
4052

4153
Most users would typically import [`GRIBDatasets`](https://github.com/JuliaGeo/GRIBDatasets.jl) and [`NCDatasets`](https://github.com/Alexander-Barth/NCDatasets.jl) directly and not `CommonDataModel`. One should import `CommonDataModel` only to extent the functionality of `GRIBDatasets` and `NCDatasets`.
4254

43-
There is also an [`TIFFDatasets`](https://github.com/Alexander-Barth/TIFFDatasets.jl) package for GeoTIFF files and
44-
[`ZarrDatasets`](https://github.com/JuliaGeo/ZarrDatasets.jl) package for Zarr datasets.
55+
4556

4657
# File conversions
4758

0 commit comments

Comments
 (0)