Zh-hant:Converting map data between formats

From OpenStreetMap Wiki
Jump to navigation Jump to search

返回 開發 (正體中文)

轉檔速查表

轉檔格式 作法
PBF 轉 PostgreSQL
# (VPS 作法) 限制記憶體用量
osm2pgsql --cache 256 --cache-strategy sparse \
   -l -k -H 127.0.0.1 -d osm -U osm taiwan-latest.osm.pbf

# (建議作法) 座標採用經緯度,且包含所有 tag
osm2pgsql -l -k -H 127.0.0.1 -d osm -U osm taiwan-latest.osm.pbf

# (預設作法) 座標採用 Google 投影 EPSG:900913
osm2pgsql -H 127.0.0.1 -d osm -U osm taiwan-latest.osm.pbf
  • -l 使用 longitude, latitude 標示位置 EPSG:4326
  • -k 沒有開欄位的 tag,使用 hstore 儲存 (需要開外掛 hstore)
  • -d 資料庫名稱
  • -U 使用者