colouring-montreal/etl/extract_mastermap.sh

39 lines
735 B
Bash
Raw Normal View History

2018-09-21 06:10:39 -04:00
#!/usr/bin/env bash
#
# Extract MasterMap
#
2018-09-27 16:37:47 -04:00
: ${1?"Usage: $0 ./path/to/mastermap/dir ./path/to/boundary"}
: ${2?"Usage: $0 ./path/to/mastermap/dir ./path/to/boundary"}
data_dir=$1
2018-09-27 16:37:47 -04:00
boundary_file=$2
2018-09-21 06:10:39 -04:00
#
# Extract buildings from *.gz to CSV
2018-05-30 15:18:37 -04:00
#
# Features where::
# descriptiveGroup = '(1:Building)'
#
# Use `fid` as source ID, aka TOID.
2018-09-21 06:10:39 -04:00
#
2018-05-30 15:18:37 -04:00
find $data_dir -type f -name '*.gz' -printf "%f\n" | \
parallel \
gunzip $data_dir/{} -k -S gml
2018-05-30 15:18:37 -04:00
rename 's/$/.gml/' $data_dir/*[^gzt]
2018-05-30 15:18:37 -04:00
find $data_dir -type f -name '*.gml' -printf "%f\n" | \
2018-05-30 15:18:37 -04:00
parallel \
ogr2ogr \
2018-09-21 06:10:39 -04:00
-select fid,descriptiveGroup \
-f CSV $data_dir/{}.csv \
2018-09-27 16:37:47 -04:00
-clipsrc $boundary_file \
2018-09-21 06:10:39 -04:00
$data_dir/{} \
TopographicArea \
-lco GEOMETRY=AS_WKT
rm $data_dir/*.gfs