Skip to content

Simple and Easy OSM geoJSON Tile Server on NodeJS

Notifications You must be signed in to change notification settings

cuulee/vectorosm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

  • INSTALL POSTGRES + POSTGIS:

sudo apt-get install python-software-properties

sudo apt-add-repository ppa:sharpie/for-science

sudo apt-add-repository ppa:sharpie/postgis-stable

sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable

sudo apt-get update

sudo apt-get install postgresql-9.1-postgis2 postgresql-contrib-9.1

  • CREATE DATABASE IN POSTGRESQL WITH "OSMUSER" AS OWNER:

sudo -u postgres -i -H

createuser -SdR osmuser

createdb -E UTF8 -O osmuser osm

  • ADD SPATIAL CAPABILITIES TO OSM DATABASE:

createlang plpgsql osm

psql -d osm -f /usr/share/postgresql/contrib/postgis-2.0/postgis.sql

psql -d osm -f /usr/share/postgresql/contrib/postgis-2.0/spatial_ref_sys.sql

psql osm -c "CREATE EXTENSION hstore"

psql osm -c "ALTER TABLE geometry_columns OWNER TO osmuser"

psql osm -c "ALTER TABLE spatial_ref_sys OWNER TO osmuser"

exit

  • INSTALL OSM2PGSQL:

sudo add-apt-repository ppa:kakrueger/openstreetmap

sudo apt-get update

sudo apt-get install osm2pgsql

(When installing it will create a database in PostGIS. If you want to have access to it when asking which users should have access, type "osmuser" after www-data : "www-data osmuser")

  • DOWNLOAD LATEST OSM WORLD PBF FILE:

http://planet.osm.org/pbf/planet-latest.osm.pbf

  • IMPORT OSM FILE TO POSTGRES:

osm2pgsql -m -s -c --drop -j -v --cache-strategy dense --flat-nodes tempFileErase -d osm -U osmuser --unlogged --number-processe 12 -C 12000 --hstore-add-index --exclude-invalid-polygon -r pbf planet-latest.osm.pbf

  • INSTALL NODEJS:

sudo apt-get update

sudo apt-get install python-software-properties python g++ make

sudo add-apt-repository ppa:chris-lea/node.js

sudo apt-get update

sudo apt-get install nodejs

  • INSTALL NODE MODULES THROUGH NPM (Node Package Manager):

(go to project directory "vectorosm" and install the modules locally there. When using NPM, this will download the modules in the current directory. However, it has a -g flag for installing modules globally.)

npm install express

npm install pg

npm install colors

npm install body-parser

  • MAKE PG MODULE ABLE TO CONNECT TO POSTGRES:

(In tileCreator.js type the connection string "anything://user:password@host:port/database")

conString = 'tcp://osmuser:osmpassword@localhost:5432/osm';

  • MODIFY IF NEEDED THE QUERIES FOR EACH ZOOM LEVEL:

(In queryCreator.js queries can be modified to show more or less data for each zoom level if needed)

  • RUN VECTOR TILE SERVER:

node server.js

About

Simple and Easy OSM geoJSON Tile Server on NodeJS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.8%
  • HTML 6.2%