Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nco/pynco
Python bindings for NCO
https://github.com/nco/pynco
Last synced: 3 months ago
JSON representation
Python bindings for NCO
- Host: GitHub
- URL: https://github.com/nco/pynco
- Owner: nco
- License: mit
- Created: 2014-01-13T17:41:59.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-01-29T02:29:18.000Z (9 months ago)
- Last Synced: 2024-06-11T16:32:31.051Z (5 months ago)
- Language: Python
- Homepage: http://pynco.readthedocs.org
- Size: 206 KB
- Stars: 88
- Watchers: 8
- Forks: 32
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- open-sustainable-technology - pynco - Contains the module python nco, which implements a Python style access to the NetCDF Operators (NCO). (Climate Change / Climate Data Processing and Analysis)
README
# pynco
Python bindings for [NCO](http://nco.sourceforge.net/). A fork from Ralf Mueller's [cdo-bindings](https://github.com/Try2Code/cdo-bindings).
This package contains the python module `nco`, which implements a python style access to the [NetCDF Operators (NCO)](http://nco.sourceforge.net/). NCO is a command line tool for processing netCDF data. Its main focus is climate data, but it can by used for other purposes too.
## Documentation
Read the documentation at [pynco.readthedocs.org](https://pynco.readthedocs.io/)
## Installation
### Conda Installation (recommended)
This will install all required and optional dependencies and is the quickest and easiest way to a working `pynco` installation.
```bash
conda install -c conda-forge pynco
```
### PyPI InstallationPlease see [the requirements](https://pynco.readthedocs.org/en/latest/#requirements) before installing
```bash
pip install nco
```
## Example```python
from nco import Nco
nco = Nco()
temperatures = nco.ncra(input='input.nc', returnCdf=True).variables['T'][:]
```
## Support, issues, bugs, ...Please use the github page to report issues, bugs, and features:
https://github.com/nco/pynco.For usage questions, please use [Stack Overflow](https://stackoverflow.com/questions/tagged/nco).
## License
`pynco` makes use of the MIT License, see LICENSE.txt.