https://github.com/nansencenter/geodataset
https://github.com/nansencenter/geodataset
netcdf netcdf-api netcdf-files netcdf4 resampler resampling resampling-methods
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nansencenter/geodataset
- Owner: nansencenter
- License: gpl-3.0
- Created: 2021-06-10T06:56:03.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-07-08T06:51:56.000Z (11 months ago)
- Last Synced: 2025-10-29T11:58:41.572Z (7 months ago)
- Topics: netcdf, netcdf-api, netcdf-files, netcdf4, resampler, resampling, resampling-methods
- Language: Jupyter Notebook
- Homepage:
- Size: 65.8 MB
- Stars: 0
- Watchers: 5
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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())
```