Last active
August 25, 2017 04:37
-
-
Save luanpcweb/4e2666981410835b42c2330df3070b81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################## | |
| osm2pgsql \ | |
| --host <IP address for DB container> \ | |
| --port <PORT for DB container> \ | |
| --database postgres | |
| ################### | |
| ogr2ogr \ | |
| -where "highway <> ''" \ | |
| -select 'name,highway,oneway,surface' \ | |
| -lco GEOMETRY_NAME=the_geom \ | |
| -lco FID=id \ | |
| -t_srs EPSG:3857 \ | |
| -f PostgreSQL PG:"dbname=routing user=postgres" \ | |
| -nln edges portland_maine.osm-line.shp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment