Skip to content

AndresHerrera/Geo-snippets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 

Repository files navigation

Geo-snippets

This repository contains a collection of code snippets for geo developers

Snippets

PostgreSQL

Create PostgreSQL database

createdb -U user -p 5432 -h localhost -E UTF8 -e databasename 

Create PostGIS and PgRouting extensions in PostgreSQL

psql -U user -p 5432 -h localhost -d databasename -c "CREATE EXTENSION postgis;"
psql -U user -p 5432 -h localhost -d databasename -c "CREATE EXTENSION pgrouting;"

Add PostgreSQL extensions

CREATE EXTENSION IF NOT EXISTS postgis; 

Import to PostgreSQL from SQL file

psql -U user -d databasename -h localhost -p 5432 -f input_file.sql

Import CSV file to a PostgreSQL table

COPY table_name FROM 'data.csv' WITH DELIMITER ',' CSV HEADER;

Exports table as a JSON array

COPY (SELECT array_to_json(array_agg(t)) 
FROM schema.table as t) to '/output.json'

Create an unique id

SELECT ROW_NUMBER() OVER (ORDER BY column ) as id  
FROM schema.table;

Size of database

SELECT pg_size_pretty(pg_database_size('databasename')) as dbsize;

Size of schema

select pg_size_pretty(CAST((SELECT
SUM(pg_total_relation_size(table_schema || '.' || table_name) )
FROM information_schema.tables
WHERE table_schema = 'schema') as bigint) )  as schema_size;

Find duplicates

SELECT column, COUNT(column) AS numocurrences
FROM schema.table
GROUP BY column
HAVING ( COUNT(column) > 1 );

PostGIS

Get the geometry type

 SELECT st_geometrytype(the_geom) FROM  schema.table;

Get tables with wrong SRID

SELECT t.f_table_catalog, t.f_table_schema, t.f_table_name, t.f_geometry_column, t.coord_dimension, t.srid, t.type
FROM geometry_columns t 
WHERE t.srid <> 4326 ORDER BY t.f_table_schema, t.f_table_name;

Find a table SRID

SELECT Find_SRID('schema', 'table', 'the_geom');

Change table SRID

SELECT UpdateGeometrySRID('schema', 'table', 'the_geom',4326);

Spatial join point in polygon

SELECT *
FROM table1 a, table2 b
WHERE ST_Within(a.the_geom, b.the_geom);

Check validity of geometries

SELECT *
FROM schema.table
WHERE ST_IsValid(the_geom) = true;

Get extent of table

SELECT ST_XMax(r) AS xmax, ST_XMin(r) AS xmin, ST_YMax(r) AS ymax, ST_YMin(r) AS ymin 
FROM (SELECT ST_Collect(the_geom) AS r FROM schema.table) AS foo;

Change projection of data

ALTER TABLE schema.table ALTER COLUMN the_geom TYPE Geometry(MultiLineString, 3115) 
USING ST_Transform(the_geom, 3115);

shp2pgsql

Export a shapefile to SQL

shp2pgsql -g the_geom -s 4326 -W latin1 shapefile table_name > output.sql

ogr2ogr

Export a new shapefile filtered by criteria

ogr2ogr -sql "SELECT * FROM input WHERE criteria=1" output.shp input.shp

Export a shapefile to GML

ogr2ogr -f GML -t_srs crs:84 output.gml input.shp

Export a shapefile to GeoJSON

ogr2ogr -f GeoJSON -t_srs crs:84 output.geojson input.shp

Export a shapefile to KML

ogr2ogr -f KML -t_srs crs:84 output.KML input.shp

Export dbf table to PostgreSQL

ogr2ogr -f "PostgreSQL" PG:"dbname=database host=localhost user=postgres password=postgres port=5432" table_dbf.dbf -nln "newtable"

Import to PostgreSQL table from csv and Virtual File Format

ogr2ogr -a_srs epsg:4326 -f "PostgreSQL" PG:"dbname=database host=localhost user=postgres password=postgres port=5432" file.vrt

Export a csv file to dbf

ogr2ogr -f "ESRI Shapefile" output.dbf input.csv

Export a csv file to shapefile

ogr2ogr -f "ESRI Shapefile" output_shp_xy data.vrt

Export a Postgres table to GeoPackage

ogr2ogr -f GPKG output.gpkg PG:"dbname=database host=localhost user=postgres password=postgres port=5432" "table"

Export many Postgres tables to GeoPackage

ogr2ogr -f GPKG output.gpkg PG:"dbname=database host=localhost user=postgres password=postgres port=5432 tables=table1,table2,table3"

Export a whole Postgres database to GeoPackage

ogr2ogr -f GPKG output.gpkg PG:"dbname=database host=localhost user=postgres password=postgres port=5432"

Load a single layer GeoPackage into Postgres

ogr2ogr -f "PostgreSQL" PG:"dbname=database host=localhost user=postgres password=postgres port=5432" input.gpkg -nln "new_table"

PostGIS to SQLite

ogr2ogr -progress -gt 65536 -f "SQLite" data.sqlite PG:"dbname=database host=localhost user=postgres password=postgres port=5432" -a_srs "EPSG:4326"

Import Geodatabase to PostGIS

ogr2ogr -f "PostgreSQL" PG:"dbname=database host=localhost user=postgres password=postgres port=5432" data.gdb -a_srs EPSG:4326

Reading the meta data using ogrinfo

ogrinfo -ro data.shp

osm2pgsql

Import OSM pbf file to PostGIS]

osm2pgsql -c -d database -U postgres -H localhost -S osm2pgsql/default.style input_file.osm.pbf 

gdal

Create virtual raster from a folder containing Geotiff files

gdalbuildvrt file.vrt folder_name/*.tif

Create tiles to disk from GeoTiff file

gdal2tiles.py input.tif output_folder  -z 6-18 -r antialias

*Zoom level 6 to 18

Create a hillsahe from a dem Geotiff

gdaldem hillshade inputdem.tif  outputhillshade.tif

Crop a raster file according to a shapefile

gdalwarp -overwrite -s_srs EPSG:3115 -q -cutline shapefile.shp -of GTiff input.tiff output.tiff

Merge bands into a raster file

gdal_merge.py -o output.tiff -of GTiff -ps 10 10 -separate band1.tiff band2.tiff band3.tiff

*10 x 10 meter pixel

Merge bands into a raster file spatially

gdal_merge.py -o output.tiff -of GTiff band1.tiff band2.tiff band3.tiff

Resample a raster file

gdal_translate -outsize 50% 50% input.tif output.tif

*Resample to 50%

Python

GPS

Export a Garmin fit activity to gpx

gpsbabel -t -i garmin_fit -f input.FIT -o gpx -F output.gpx

DOS or UNIX Bash routines

Load all shapefiles into Postgres

@echo allshp2dbpgsql.bat
@echo off
color 20
for %%x in (*.shp) do ogr2ogr -f "PostgreSQL" PG:"host=localhost user=postgres dbname=database password=12345 port:5432" %%~nx.shp
pause
exit

Convert all shapefiles into Postgres

@echo allshapes2pgsql.bat
@echo off
color 20
for %%x in (*.shp) do shp2pgsql -g the_geom -s 4326 -W latin1 %%~nx %%~nx > %%~nx.sql
pause
exit

Convert all Garmin Fit to GPX

@echo allfit2gpx.bat
@echo off
color 20
for %%x in (*.fit) do gpsbabel -t -i garmin_fit -f %%~nx.fit -o gpx -F %%~nx.gpx
pause
exit

Potree

Convert las to potree

PotreeConverter.exe C:/temporal/input.las -o C:/temporal/data_converted

Author: Andres Herrera © 2020

License: MIT - do anything with the code, but don't blame me if it does not work.

Spread the word: tweet, star on github, etc.

About

A collection of code snippets for geo developers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published