├── .github └── workflows │ ├── publish-quarto.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── LICENSE ├── README.md ├── _freeze ├── docs │ ├── geoprocessing │ │ ├── execute-results │ │ │ └── html.json │ │ └── figure-html │ │ │ ├── cell-2-output-1.png │ │ │ └── cell-3-output-1.png │ ├── guide │ │ ├── execute-results │ │ │ └── html.json │ │ └── figure-html │ │ │ ├── cell-5-output-1.png │ │ │ └── cell-8-output-1.png │ ├── installation │ │ └── execute-results │ │ │ └── html.json │ ├── landcover │ │ ├── execute-results │ │ │ └── html.json │ │ └── figure-html │ │ │ ├── cell-10-output-2.png │ │ │ ├── cell-3-output-1.png │ │ │ └── cell-9-output-1.png │ ├── multitarget-regression-soil-properties │ │ ├── execute-results │ │ │ └── html.json │ │ └── figure-html │ │ │ ├── cell-11-output-1.png │ │ │ ├── cell-13-output-1.png │ │ │ ├── cell-15-output-1.png │ │ │ ├── cell-23-output-1.png │ │ │ ├── cell-25-output-1.png │ │ │ ├── cell-7-output-1.png │ │ │ └── cell-9-output-1.png │ ├── plotting │ │ ├── execute-results │ │ │ └── html.json │ │ └── figure-html │ │ │ ├── cell-2-output-1.png │ │ │ └── cell-3-output-1.png │ ├── quickstart │ │ ├── execute-results │ │ │ └── html.json │ │ └── figure-html │ │ │ ├── cell-5-output-1.png │ │ │ └── cell-8-output-1.png │ ├── sampling │ │ ├── execute-results │ │ │ └── html.json │ │ └── figure-html │ │ │ └── cell-2-output-1.png │ ├── spatial-features │ │ ├── execute-results │ │ │ └── html.json │ │ └── figure-html │ │ │ ├── cell-12-output-1.png │ │ │ └── cell-5-output-1.png │ └── transformers │ │ └── execute-results │ │ └── html.json └── site_libs │ └── clipboard │ └── clipboard.min.js ├── _quarto.yml ├── docs ├── .gitignore ├── Pyspatialml_training.svg ├── guide.qmd ├── installation.qmd ├── landcover.qmd ├── multitarget-regression-soil-properties.qmd ├── objects.json ├── plotting.qmd ├── sampling.qmd ├── spatial-features.qmd ├── transformers.qmd └── usage.qmd ├── index.qmd ├── pyproject.toml ├── pyspatialml ├── __init__.py ├── _plotting.py ├── _prediction.py ├── _rasterstats.py ├── _utils.py ├── datasets │ ├── __init__.py │ ├── chnl_dist.tif │ ├── dem.tif │ ├── dist.tif │ ├── extracted_pixels.txt │ ├── ffreq.tif │ ├── landimg2.tif │ ├── landimg3.tif │ ├── landimg4.tif │ ├── landsat96_labelled_pixels.tif │ ├── landsat96_points.dbf │ ├── landsat96_points.prj │ ├── landsat96_points.shp │ ├── landsat96_points.shx │ ├── landsat96_polygons.dbf │ ├── landsat96_polygons.prj │ ├── landsat96_polygons.shp │ ├── landsat96_polygons.shx │ ├── landsat_multiband.tif │ ├── lsat7_2000_10.tif │ ├── lsat7_2000_20.tif │ ├── lsat7_2000_30.tif │ ├── lsat7_2000_40.tif │ ├── lsat7_2000_50.tif │ ├── lsat7_2000_70.tif │ ├── meuse.dbf │ ├── meuse.prj │ ├── meuse.py │ ├── meuse.shp │ ├── meuse.shx │ ├── mrvbf.tif │ ├── nc.py │ ├── rsp.tif │ ├── slope.tif │ ├── soil.tif │ ├── strata.tif │ └── twi.tif ├── locindexer.py ├── preprocessing.py ├── raster.py ├── rasterlayer.py ├── transformers.py └── vector.py ├── reference ├── Raster.qmd ├── RasterLayer.qmd ├── index.qmd ├── preprocessing.qmd └── vector.qmd └── tests ├── __init__.py ├── test_alter.py ├── test_append.py ├── test_apply.py ├── test_band_math.py ├── test_band_names.py ├── test_crop.py ├── test_drop.py ├── test_extract.py ├── test_indexing.py ├── test_initiation.py ├── test_intersect.py ├── test_mask.py ├── test_plotting.py ├── test_prediction.py ├── test_rename.py ├── test_sample.py ├── test_stats.py ├── test_tocrs.py ├── test_transformers.py └── test_write.py /.github/workflows/publish-quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/.github/workflows/publish-quarto.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11.9 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/README.md -------------------------------------------------------------------------------- /_freeze/docs/geoprocessing/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/geoprocessing/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/docs/geoprocessing/figure-html/cell-2-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/geoprocessing/figure-html/cell-2-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/geoprocessing/figure-html/cell-3-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/geoprocessing/figure-html/cell-3-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/guide/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/guide/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/docs/guide/figure-html/cell-5-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/guide/figure-html/cell-5-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/guide/figure-html/cell-8-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/guide/figure-html/cell-8-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/installation/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/installation/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/docs/landcover/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/landcover/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/docs/landcover/figure-html/cell-10-output-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/landcover/figure-html/cell-10-output-2.png -------------------------------------------------------------------------------- /_freeze/docs/landcover/figure-html/cell-3-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/landcover/figure-html/cell-3-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/landcover/figure-html/cell-9-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/landcover/figure-html/cell-9-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/multitarget-regression-soil-properties/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/multitarget-regression-soil-properties/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-11-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-11-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-13-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-13-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-15-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-15-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-23-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-23-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-25-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-25-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-7-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-7-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-9-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/multitarget-regression-soil-properties/figure-html/cell-9-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/plotting/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/plotting/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/docs/plotting/figure-html/cell-2-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/plotting/figure-html/cell-2-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/plotting/figure-html/cell-3-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/plotting/figure-html/cell-3-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/quickstart/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/quickstart/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/docs/quickstart/figure-html/cell-5-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/quickstart/figure-html/cell-5-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/quickstart/figure-html/cell-8-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/quickstart/figure-html/cell-8-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/sampling/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/sampling/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/docs/sampling/figure-html/cell-2-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/sampling/figure-html/cell-2-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/spatial-features/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/spatial-features/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/docs/spatial-features/figure-html/cell-12-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/spatial-features/figure-html/cell-12-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/spatial-features/figure-html/cell-5-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/spatial-features/figure-html/cell-5-output-1.png -------------------------------------------------------------------------------- /_freeze/docs/transformers/execute-results/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/docs/transformers/execute-results/html.json -------------------------------------------------------------------------------- /_freeze/site_libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_freeze/site_libs/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/_quarto.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /docs/Pyspatialml_training.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/Pyspatialml_training.svg -------------------------------------------------------------------------------- /docs/guide.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/guide.qmd -------------------------------------------------------------------------------- /docs/installation.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/installation.qmd -------------------------------------------------------------------------------- /docs/landcover.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/landcover.qmd -------------------------------------------------------------------------------- /docs/multitarget-regression-soil-properties.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/multitarget-regression-soil-properties.qmd -------------------------------------------------------------------------------- /docs/objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/objects.json -------------------------------------------------------------------------------- /docs/plotting.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/plotting.qmd -------------------------------------------------------------------------------- /docs/sampling.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/sampling.qmd -------------------------------------------------------------------------------- /docs/spatial-features.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/spatial-features.qmd -------------------------------------------------------------------------------- /docs/transformers.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/transformers.qmd -------------------------------------------------------------------------------- /docs/usage.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/docs/usage.qmd -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/index.qmd -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyspatialml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/__init__.py -------------------------------------------------------------------------------- /pyspatialml/_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/_plotting.py -------------------------------------------------------------------------------- /pyspatialml/_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/_prediction.py -------------------------------------------------------------------------------- /pyspatialml/_rasterstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/_rasterstats.py -------------------------------------------------------------------------------- /pyspatialml/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/_utils.py -------------------------------------------------------------------------------- /pyspatialml/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyspatialml/datasets/chnl_dist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/chnl_dist.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/dem.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/dist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/dist.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/extracted_pixels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/extracted_pixels.txt -------------------------------------------------------------------------------- /pyspatialml/datasets/ffreq.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/ffreq.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/landimg2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landimg2.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/landimg3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landimg3.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/landimg4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landimg4.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/landsat96_labelled_pixels.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landsat96_labelled_pixels.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/landsat96_points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landsat96_points.dbf -------------------------------------------------------------------------------- /pyspatialml/datasets/landsat96_points.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landsat96_points.prj -------------------------------------------------------------------------------- /pyspatialml/datasets/landsat96_points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landsat96_points.shp -------------------------------------------------------------------------------- /pyspatialml/datasets/landsat96_points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landsat96_points.shx -------------------------------------------------------------------------------- /pyspatialml/datasets/landsat96_polygons.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landsat96_polygons.dbf -------------------------------------------------------------------------------- /pyspatialml/datasets/landsat96_polygons.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landsat96_polygons.prj -------------------------------------------------------------------------------- /pyspatialml/datasets/landsat96_polygons.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landsat96_polygons.shp -------------------------------------------------------------------------------- /pyspatialml/datasets/landsat96_polygons.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landsat96_polygons.shx -------------------------------------------------------------------------------- /pyspatialml/datasets/landsat_multiband.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/landsat_multiband.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/lsat7_2000_10.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/lsat7_2000_10.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/lsat7_2000_20.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/lsat7_2000_20.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/lsat7_2000_30.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/lsat7_2000_30.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/lsat7_2000_40.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/lsat7_2000_40.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/lsat7_2000_50.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/lsat7_2000_50.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/lsat7_2000_70.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/lsat7_2000_70.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/meuse.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/meuse.dbf -------------------------------------------------------------------------------- /pyspatialml/datasets/meuse.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/meuse.prj -------------------------------------------------------------------------------- /pyspatialml/datasets/meuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/meuse.py -------------------------------------------------------------------------------- /pyspatialml/datasets/meuse.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/meuse.shp -------------------------------------------------------------------------------- /pyspatialml/datasets/meuse.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/meuse.shx -------------------------------------------------------------------------------- /pyspatialml/datasets/mrvbf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/mrvbf.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/nc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/nc.py -------------------------------------------------------------------------------- /pyspatialml/datasets/rsp.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/rsp.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/slope.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/slope.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/soil.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/soil.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/strata.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/strata.tif -------------------------------------------------------------------------------- /pyspatialml/datasets/twi.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/datasets/twi.tif -------------------------------------------------------------------------------- /pyspatialml/locindexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/locindexer.py -------------------------------------------------------------------------------- /pyspatialml/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/preprocessing.py -------------------------------------------------------------------------------- /pyspatialml/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/raster.py -------------------------------------------------------------------------------- /pyspatialml/rasterlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/rasterlayer.py -------------------------------------------------------------------------------- /pyspatialml/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/transformers.py -------------------------------------------------------------------------------- /pyspatialml/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/pyspatialml/vector.py -------------------------------------------------------------------------------- /reference/Raster.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/reference/Raster.qmd -------------------------------------------------------------------------------- /reference/RasterLayer.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/reference/RasterLayer.qmd -------------------------------------------------------------------------------- /reference/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/reference/index.qmd -------------------------------------------------------------------------------- /reference/preprocessing.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/reference/preprocessing.qmd -------------------------------------------------------------------------------- /reference/vector.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/reference/vector.qmd -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_alter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_alter.py -------------------------------------------------------------------------------- /tests/test_append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_append.py -------------------------------------------------------------------------------- /tests/test_apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_apply.py -------------------------------------------------------------------------------- /tests/test_band_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_band_math.py -------------------------------------------------------------------------------- /tests/test_band_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_band_names.py -------------------------------------------------------------------------------- /tests/test_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_crop.py -------------------------------------------------------------------------------- /tests/test_drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_drop.py -------------------------------------------------------------------------------- /tests/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_extract.py -------------------------------------------------------------------------------- /tests/test_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_indexing.py -------------------------------------------------------------------------------- /tests/test_initiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_initiation.py -------------------------------------------------------------------------------- /tests/test_intersect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_intersect.py -------------------------------------------------------------------------------- /tests/test_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_mask.py -------------------------------------------------------------------------------- /tests/test_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_plotting.py -------------------------------------------------------------------------------- /tests/test_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_prediction.py -------------------------------------------------------------------------------- /tests/test_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_rename.py -------------------------------------------------------------------------------- /tests/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_sample.py -------------------------------------------------------------------------------- /tests/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_stats.py -------------------------------------------------------------------------------- /tests/test_tocrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_tocrs.py -------------------------------------------------------------------------------- /tests/test_transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_transformers.py -------------------------------------------------------------------------------- /tests/test_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenpawley/Pyspatialml/HEAD/tests/test_write.py --------------------------------------------------------------------------------