Zh-hant:Converting map data between formats
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
|