OSMBrasil / stable

Cópia filtrada segura e estável de dados oficiais do Brasil representados no OSM
Other
13 stars 5 forks source link

Gerando backups a partir de osm2pgsql e PostGIS #6

Closed ppKrauss closed 6 years ago

ppKrauss commented 6 years ago

Discutir aqui alternativas e/ou fixação das convenções e procedimentos a serem utilizados nos "backups oficiciais" (database dumps homolodados por equipe de curadores).

Por hora foram realizados dumps através dos subsídios postados na pasta ./src e comandos SQL abaixo:


COPY (
  SELECT ST_AsGeoJSONb(way,6,3,osm_type||osm_id,tags,name,null,false)
  FROM vw_municipios_km2_base WHERE id_ibge::int=4208906
) TO '/tmp/SC-JaraguaSul.geojson';

COPY (
  SELECT ST_AsGeoJSONb(way,6,3,osm_type||osm_id,tags,name,null,false) 
  FROM vw_municipios_km2_base WHERE id_ibge::int=3531704) 
TO '/tmp/SP-MonteiroLobato.geojson';

COPY (
  SELECT ST_AsGeoJSONb(way,6,3,osm_type||osm_id,tags,name,null,false) 
  FROM vw_municipios_km2_base WHERE id_ibge::int=4106902
) TO '/tmp/PR-Curitiba.geojson';