Jump to content

PostgreSQL postgis

From annawiki
Revision as of 2025-08-12T14:09:59 by Tobiasco (talk | contribs)

Example for Ubuntu and osmdb

apt install postgis
psql -d xxx //xxx=any dbname of a db one can connect to
CREATE DATABASE osmdb;
\c osmdb;
CREATE EXTENSION postgis;
SELECT PostGIS_Version(); //verify install

quit;
apt install osm2pgsql //https://osm2pgsql.org/doc/install/linux.html