-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathimport_ne.sh
executable file
·18 lines (13 loc) · 1.17 KB
/
import_ne.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#Переходим в папку NE
cd $ne_dir/10m_cultural
#Импортируем урбанизированные территории
ogr2ogr -a_srs EPSG:4326 -wrapdateline -clipsrc $adm_dir/adm2_country.shp -f "PostgreSQL" "$dbsettings" ne_10m_urban_areas.shp -nln "ne.urban" -nlt MULTIPOLYGON -overwrite -lco ENCODING=UTF-8
#Импортируем реки
cd $ne_dir/10m_physical
ogr2ogr -a_srs EPSG:4326 -wrapdateline -clipsrc $adm_dir/adm2_country.shp -f "PostgreSQL" "$dbsettings" ne_10m_rivers_lake_centerlines_scale_rank.shp -nln "ne.rivers" -nlt MULTILINESTRING -overwrite -lco ENCODING=UTF-8
#Импортируем ледники
ogr2ogr -a_srs EPSG:4326 -wrapdateline -clipsrc $adm_dir/adm2_country.shp -f "PostgreSQL" "$dbsettings" ne_10m_glaciated_areas.shp -nln "ne.glaciers" -nlt MULTIPOLYGON -overwrite -lco ENCODING=UTF-8
#Импортируем озера
ogr2ogr -a_srs EPSG:4326 -wrapdateline -clipsrc $adm_dir/adm2_country.shp -f "PostgreSQL" "$dbsettings" ne_10m_lakes.shp -nln "ne.lakes" -nlt MULTIPOLYGON -overwrite -lco ENCODING=UTF-8
#Добавляем геометрию в конической проекции
psql -d ooptrf -f $conf_dir/add_conic_geom_ne.sql