colouring-montreal/etl/extract_mastermap.sh
2018-09-27 21:37:47 +01:00

39 lines
735 B
Bash
Executable File

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