Metadata-Version: 2.1
Name: geodataset
Version: 0.1.0
Summary: Extension of netDCF4.Dataset for geospatial data
Home-page: https://github.com/nansencenter/geodataset
Author: ['Anton Korosov', 'Timothy Williams']
Author-email: Anton.Korosov@nersc.no
License: GPLv3
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# geodataset

Extension of netCDF4.Dataset for geospatial data.

# Installation

Install requirements with conda:

`conda env create -f environment.yml`

Activate the environment:

`conda activate geodataset`

Install geodataset using pip:

`pip install geodataset`

# Usage

Open netCDF file for input and access geo- metadata

```python
from geodataset.tools import open_netcdf

n = open_netcdf('netcdf_file.nc')

print(n.projection)

print(n.get_bbox())

print(n.get_lonlat_arrays())
```

