Metadata-Version: 2.1
Name: bite-grads
Version: 0.0.1
Summary: For reading GrADS format data.
Home-page: https://github.com/Mo-Dabao/BiteGrADS
Author: modabao
Author-email: mo_dabao@qq.com
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: xarray
Requires-Dist: dask
Requires-Dist: pyproj
Requires-Dist: numpy
Requires-Dist: pandas

# BiteGrADS

For reading GrADS format data.

## Install

```shell
pip install bite_grads
```

Requires `xarray; dask; pyproj; numpy; pandas`.

## Supported ctl entries

[Components of a GrADS Data Descriptor File](http://cola.gmu.edu/grads/gadoc/descriptorfile.html)

- DTYPE
  - [x] gridded binary
  - [ ] station
  - [ ] ...
- OPTIONS
  - [x] byte order
  - [ ] template
  - [ ] ...
- [x] UNDEF
- PDEF
  - [x] lcc
  - [ ] ...
- [x] XDEF
- YDEF
  - [x] LINEAR
  - [x] LEVELS
  - [ ] GAUS*
- [x] ZDEF
- [x] TDEF
- VARS
  - [x] varname
  - [x] levs
  - [x] units
  - [ ] additional_codes
  - [x] description
- ATTRIBUTE METADATA
  - [x] varname
  - [ ] attribute_type
  - [x] attribute_name
  - [x] attribute_value
- [x] COMMENTS
- [ ] ...

## Features

- Lazy loading
- Manual correction of `TDEF`
- Manual correction of `PDEF`
- Projection information following CF-Conventions

## Else

Use [xgrads](https://github.com/miniufo/xgrads) for more features.

Use nc or other modern formats to store you data.
