diff --git a/docs/preprocessing.md b/docs/preprocessing.md index 9c92add..d7402e3 100644 --- a/docs/preprocessing.md +++ b/docs/preprocessing.md @@ -19,14 +19,14 @@ This table provides a high-level summary for different stages of processing the |Execution Order | File | Input | Output | |--|--|--|--| -| 1 | [terrainDataSourcer.py](https://github.com/purijs/terrain-mapper/blob/main/preprocess/terrainDataSourcer.py "terrainDataSourcer.py") | .xyz | .parquet | -| 2 | [parquetToGridConverter.py](https://github.com/purijs/terrain-mapper/blob/main/preprocess/parquetToGridConverter.py "parquetToGridConverter.py")| .parquet | grid_resolution_6.gpkg, grid_resolution_8.gpkg | -| 3 | [dbGenerator.py](https://github.com/purijs/terrain-mapper/blob/main/preprocess/dbGenerator.py "dbGenerator.py")| .gpkg | db/{geohash}/ | -| 4 | [DTMRasterInterpolator.py](https://github.com/purijs/terrain-mapper/blob/main/preprocess/DTMRasterInterpolator.py "DTMRasterInterpolator.py")| db/{geohash}/ | db/{geohash}/raster/ | -| 5 | [rasterProcessor.py](https://github.com/purijs/terrain-mapper/blob/main/preprocess/rasterProcessor.py "rasterProcessor.py")| db/{geohash}/raster | interpolated_raster.tif | -| 6 | [terrainLayersExtractor.py](https://github.com/purijs/terrain-mapper/blob/main/preprocess/terrainLayersExtractor.py "terrainLayersExtractor.py")| interpolated_raster.tif | {slope,aspect,tri,tpi,roughness}_raster.tif | -| 7 | [derivedVariablesExtractor.py](https://github.com/purijs/terrain-mapper/blob/main/preprocess/derivedVariablesExtractor.py "derivedVariablesExtractor.py")| grid_resolution_8.gpkg | grid_resolution_8_derived.gpkg | -| 8 | [derivedVariablesInterpolator.py](https://github.com/purijs/terrain-mapper/blob/main/preprocess/derivedVariablesInterpolator.py "derivedVariablesInterpolator.py")| grid_resolution_8_derived.gpkg | SER.tif, Solar_Potential.tif, Terrain_Risk.tif | +| 1 | [terrainDataSourcer.py](../preprocess/terrainDataSourcer.py "terrainDataSourcer.py") | .xyz | .parquet | +| 2 | [parquetToGridConverter.py](../preprocess/parquetToGridConverter.py "parquetToGridConverter.py")| .parquet | grid_resolution_6.gpkg, grid_resolution_8.gpkg | +| 3 | [dbGenerator.py](../preprocess/dbGenerator.py "dbGenerator.py")| .gpkg | db/{geohash}/ | +| 4 | [DTMRasterInterpolator.py](../preprocess/DTMRasterInterpolator.py "DTMRasterInterpolator.py")| db/{geohash}/ | db/{geohash}/raster/ | +| 5 | [rasterProcessor.py](../preprocess/rasterProcessor.py "rasterProcessor.py")| db/{geohash}/raster | interpolated_raster.tif | +| 6 | [terrainLayersExtractor.py](../preprocess/terrainLayersExtractor.py "terrainLayersExtractor.py")| interpolated_raster.tif | {slope,aspect,tri,tpi,roughness}_raster.tif | +| 7 | [derivedVariablesExtractor.py](../preprocess/derivedVariablesExtractor.py "derivedVariablesExtractor.py")| grid_resolution_8.gpkg | grid_resolution_8_derived.gpkg | +| 8 | [derivedVariablesInterpolator.py](../preprocess/derivedVariablesInterpolator.py "derivedVariablesInterpolator.py")| grid_resolution_8_derived.gpkg | SER.tif, Solar_Potential.tif, Terrain_Risk.tif | --- @@ -34,7 +34,7 @@ This table provides a high-level summary for different stages of processing the This diagram depicts the high-level working of different scripts for preparing the data -![](https://github.com/purijs/terrain-mapper/blob/main/images/credium.drawio.png) +![](../images/credium.drawio.png) ### Workflow Highlights