Metadata-Version: 2.1
Name: gridlock
Version: 0.5
Summary: Coupled gridding library
Home-page: https://mpxd.net/code/jan/gridlock
Author: Jan Petykiewicz
Author-email: anewusername@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Topic :: Multimedia :: Graphics :: 3D Rendering
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Scientific/Engineering :: Visualization
Description-Content-Type: text/markdown
Requires-Dist: float-raster
Requires-Dist: numpy
Provides-Extra: visualization
Requires-Dist: matplotlib ; extra == 'visualization'
Provides-Extra: visualization-isosurface
Requires-Dist: matplotlib ; extra == 'visualization-isosurface'
Requires-Dist: mpl-toolkits ; extra == 'visualization-isosurface'
Requires-Dist: skimage (>=0.13) ; extra == 'visualization-isosurface'

# Gridlock README

Gridlock is a Python module for drawing on coupled grids.

Gridlock is used primarily for 'painting' shapes in 3D on multiple grids which represent the
same spatial region, but are offset from each other. It does straightforward natural <-> grid unit
conversion and can handle non-uniform rectangular grids (the entire grid is generated based on
the coordinates of the boundary points along each axis).

- [Source repository](https://mpxd.net/code/jan/gridlock)
- [PyPi](https://pypi.org/project/gridlock)


## Installation

Requirements:
* python 3 (written and tested with 3.5)
* numpy
* [float_raster](https://mpxd.net/code/jan/float_raster)
* matplotlib (optional, used for visualization functions)
* mpl_toolkits.mplot3d (optional, used for isosurface visualization)
* skimage (optional, used for isosurface visualization)


Install with pip:
```bash
pip3 install gridlock
```

Alternatively, install via git
```bash
pip3 install git+https://mpxd.net/code/jan/float_raster.git@release
pip3 install git+https://mpxd.net/code/jan/gridlock.git@release
```


