Revision [2452]
This is an old revision of Postgis made by MichalPalenik on 2009-12-11 11:45:13.
nastavenie postgis:
inštalácia balíčkov postgresql-8.3-postgis (alebo inú verziu, ako závislosti nainštaluje aj postgres databázu a postgis) a asi aj libpostgis-java (kvôli osmosis)
- pacman -S postgis :D
vytvorenie postgis DB osm a usera osmuser (cesty sa môžu meniť podľa distribúcie):
su postgres createdb osm createlang plpgsql osm psql -d osm -f /usr/share/postgresql-8.3-postgis/lwpostgis.sql psql -d osm -f /usr/share/postgresql-8.3-postgis/spatial_ref_sys.sql createuser osmuser; echo "GRANT ALL PRIVILEGES ON DATABASE osm to osmuser; alter role osmuser password 'osm';" | psql -d osm echo "grant all on spatial_ref_sys to osmuser; grant all on geometry_columns to osmuser;" | psql -d osm exit
ako užívateľ potom vytvoríme schému a naimportujeme pomocou osmosis.
psql -d osm -f script/pgsql_simple_schema_0.6.sql ./bin/osmosis --read-xml file="freemap/europe/slovakia.osm.bz2" --write-pgsql database="osm" user="osmuser" password="osm"
potom budeme mať kompletnú databázu
tabulka | popis |
---|---|
geometry_columns | tabuľka |
node_tags | tagy v nodoch |
nodes | |
relation_members | |
relation_tags | |
relations | |
schema_info | |
spatial_ref_sys | |
users | |
way_nodes | |
way_tags | |
ways |
existuje aj osm2pgsql
osmosis