Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mierune/csmap-py
CSMap generator with few dependencies
https://github.com/mierune/csmap-py
csmap numpy python raster rasterio terrain
Last synced: about 1 month ago
JSON representation
CSMap generator with few dependencies
- Host: GitHub
- URL: https://github.com/mierune/csmap-py
- Owner: MIERUNE
- Created: 2023-12-03T03:04:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-14T08:02:59.000Z (about 2 months ago)
- Last Synced: 2024-11-14T09:18:21.126Z (about 2 months ago)
- Topics: csmap, numpy, python, raster, rasterio, terrain
- Language: Python
- Homepage: https://pypi.org/project/csmap-py/
- Size: 27.9 MB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# csmap-py
![GitHub Release](https://img.shields.io/github/v/release/MIERUNE/csmap-py?label=PyPI:csmap-py)
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/MIERUNE/csmap-py/test.yml?label=test)![](./doc/csmap.png)
module to process CSMap, based on
```planetext
usage: csmap [-h] [--chunk_size CHUNK_SIZE] [--max_workers MAX_WORKERS] [--gf_size GF_SIZE]
[--gf_sigma GF_SIGMA] [--curvature_size CURVATURE_SIZE]
[--height_scale HEIGHT_SCALE HEIGHT_SCALE]
[--slope_scale SLOPE_SCALE SLOPE_SCALE]
[--curvature_scale CURVATURE_SCALE CURVATURE_SCALE]
input_dem_path output_pathpositional arguments:
input_dem_path input DEM path
output_path output pathoptions:
-h, --help show this help message and exit
--chunk_size CHUNK_SIZE
chunk size as pixel, default to 1024
--max_workers MAX_WORKERS
max workers for multiprocessing, default to 1
--gf_size GF_SIZE gaussian filter size, default to 12
--gf_sigma GF_SIGMA gaussian filter sigma, default to 3
--curvature_size CURVATURE_SIZE
curvature filter size, default to 1
--height_scale HEIGHT_SCALE HEIGHT_SCALE
height scale, min max, default to 0.0 1000.0
--slope_scale SLOPE_SCALE SLOPE_SCALE
slope scale, min max, default to 0.0 1.5
--curvature_scale CURVATURE_SCALE CURVATURE_SCALE
curvature scale, min max, default to -0.1 0.1
```## usage
### Command Line Interface
```sh
pip install csmap-py
``````sh
csmap dem.tif csmap.tif
csmap dem.vrt csmap.tif # you can use virtual raster or other gdal supported format
csmap dem.tif csmap.tif --chunk_size 256 --max_workers 4 # you can use multiprocessing
csmap dem.tif csmap.tif --gf_size 3 --gf_sigma 1.0 --curvature_size 1 # you can change filter size
csmap dem.tif csmap.tif --height_scale 0 500 --slope_scale 0 1 --curvature_scale -0.2 0.2 # you can change scale
```### Python API
```python
from csmap.process import process, CsmapParamsparams = CsmapParams() # use default params
# convert dem to csmap
process(
input_dem_path,
output_path,
chunk_size=1024,
params
)
```## processing image
![](./doc/process.jpeg)
## Authors
- Kanahiro Iguchi([@Kanahiro](https://github.com/Kanahiro))