Metadata-Version: 2.1
Name: mundipy
Version: 0.0.1
Summary: mundipy is a Python framework for spatial data manipulation
Project-URL: Documentation, https://docs.mundi.ai/
Project-URL: GitHub, https://github.com/BuntingLabs/mundipy
Project-URL: File an Issue, https://github.com/BuntingLabs/mundipy/issues
Project-URL: Bunting Labs, https://buntinglabs.com/
Author-email: Brendan Ashworth <brendan@buntinglabs.com>
License: MIT License
        
        Copyright (c) 2022 Bunting Labs, Inc.
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: GIS
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# ![mundi.py](docs/logo/light.svg)

mundipy is a Python framework for spatial data manipulation. Built on top of
[geopandas](https://geopandas.org/en/stable/), [GDAL](https://gdal.org/),
and [shapely](https://shapely.readthedocs.io/en/stable/manual.html), mundi.py
provides a useful abstraction to eliminate the hassles of spatial data.

## Projected Coordinate Systems

Automatically suggests a projected coordinate system to use, given a shapely
geometry in WGS84.

This prioritizes coordinate systems that:
1. totally contain the given geometry
2. have minimal area (probably less distortion)
3. are not deprecated

```py
>>> from mundipy.pcs import choose_pcs
>>> from shapely.geometry import Point

>>> choose_pcs(Point(-118.24, 34.052), units='feet')
{
    'name': 'NAD27 / California zone VII',
    'epsg': 26799,
    'crs': 'EPSG:26799',
    'units': 'feet'
}
```

## Project Roadmap

- No projections needed: automatically chooses and selects a relevant CRS when doing operations
- Automatic spatial indexing
- Jupyter notebook native (\_repr\_html\_) that doesn't explode with massive data
- Nearest neighbor/distance queries
- Spatial joins
- Dissolving into h3/s2

## License

Mundi.py is MIT licensed.
