float_raster/README.md

28 lines
596 B
Markdown
Raw Normal View History

2016-03-15 20:26:21 -07:00
# float_raster README
float_raster is a Python module for accurately drawing polygons onto non-uniform rectangular grids
float_raster calculates pixel values with float64 precision and is capable of drawing on grids
with variable pixel widths and heights.
2019-04-07 18:04:46 -07:00
- [Source repository](https://mpxd.net/code/jan/float_raster)
- [PyPi](https://pypi.org/project/float_raster)
2016-03-15 20:26:21 -07:00
## Installation
Requirements:
2024-07-29 02:07:32 -07:00
* python >=3.11
2016-03-15 20:26:21 -07:00
* numpy
2019-04-07 18:04:46 -07:00
Install with pip:
```bash
pip3 install float_raster
```
Alternatively, install via git
```bash
2019-04-07 18:04:46 -07:00
pip3 install git+https://mpxd.net/code/jan/float_raster.git@release
```