├── .gitignore ├── README.md ├── clip-extent-project.sh ├── clip-raster-to-shp.sh ├── clip-to-polygon.sh ├── color-slope.txt ├── geojson-to-shp.sh ├── get-extent.sh ├── gpx-to-shp.sh ├── grep-find-replace.sh ├── import-shp-to-pg.sh ├── import-shp2pgsql.sh ├── make-hillshades.sh ├── merge.sh ├── project-mercator.sh ├── project-web-mercator.sh ├── project-wgs84.sh ├── rename-files-gis-friendly.sh ├── separate-roads-by-type-skeletron.sh ├── separate-roads-by-type.sh └── shp-to-geojson.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *test.sh 3 | separate-roads-by-type-skeletron.sh 4 | tmp/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/README.md -------------------------------------------------------------------------------- /clip-extent-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/clip-extent-project.sh -------------------------------------------------------------------------------- /clip-raster-to-shp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/clip-raster-to-shp.sh -------------------------------------------------------------------------------- /clip-to-polygon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/clip-to-polygon.sh -------------------------------------------------------------------------------- /color-slope.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/color-slope.txt -------------------------------------------------------------------------------- /geojson-to-shp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/geojson-to-shp.sh -------------------------------------------------------------------------------- /get-extent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/get-extent.sh -------------------------------------------------------------------------------- /gpx-to-shp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/gpx-to-shp.sh -------------------------------------------------------------------------------- /grep-find-replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/grep-find-replace.sh -------------------------------------------------------------------------------- /import-shp-to-pg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/import-shp-to-pg.sh -------------------------------------------------------------------------------- /import-shp2pgsql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/import-shp2pgsql.sh -------------------------------------------------------------------------------- /make-hillshades.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/make-hillshades.sh -------------------------------------------------------------------------------- /merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/merge.sh -------------------------------------------------------------------------------- /project-mercator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/project-mercator.sh -------------------------------------------------------------------------------- /project-web-mercator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/project-web-mercator.sh -------------------------------------------------------------------------------- /project-wgs84.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/project-wgs84.sh -------------------------------------------------------------------------------- /rename-files-gis-friendly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/rename-files-gis-friendly.sh -------------------------------------------------------------------------------- /separate-roads-by-type-skeletron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/separate-roads-by-type-skeletron.sh -------------------------------------------------------------------------------- /separate-roads-by-type.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/separate-roads-by-type.sh -------------------------------------------------------------------------------- /shp-to-geojson.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clhenrick/shell_scripts/HEAD/shp-to-geojson.sh --------------------------------------------------------------------------------