Metadata-Version: 2.3
Name: pyisg
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: GIS
License-File: LICENSE-APACHE
License-File: LICENSE-MIT
Summary: Library reading/writing the ISG 2.0 format
Keywords: GIS,ISG,isg file
Author: Kentaro Tatsumi <paqira.2019@gmail.com>
Author-email: Kentaro Tatsumi <paqira.2019@gmail.com>
License: MIT OR Apache-2.0
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Documentation, https://pyisg.readthedocs.io
Project-URL: Issues, https://github.com/paqira/pyisg/issues
Project-URL: Source, https://github.com/paqira/pyisg

# pyisg

Library reading/writing the [ISG 2.0 format][SPEC].

This provides APIs, such as `load`, `loads`, `dump` and `dumps`.

```python
import pyisg

# serialize to ISG 2.0 format str to dict
with open("file.isg") as fs:
    obj = pyisg.load(fs)

# deserialize to ISG 2.0 format str
s = pyisg.dumps(obj)
```

## Licence

MIT or Apache-2.0

## Reference

Specification: https://www.isgeoid.polimi.it/Geoid/format_specs.html


[SPEC]: https://www.isgeoid.polimi.it/Geoid/format_specs.html

