Comment sections in etl run script
This commit is contained in:
parent
2237cb8b35
commit
d72dd90351
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
#
|
||||
# Filter and transform for loading
|
||||
# Extract, transform and load building outlines and property records
|
||||
#
|
||||
: ${1?"Usage: $0 ./path/to/addressbase/dir ./path/to/mastermap/dir ./path/to/boundary"}
|
||||
: ${2?"Usage: $0 ./path/to/addressbase/dir ./path/to/mastermap/dir ./path/to/boundary"}
|
||||
@ -12,12 +12,20 @@ mastermap_dir=$2
|
||||
boundary_file=$3
|
||||
script_dir=${0%/*}
|
||||
|
||||
#
|
||||
# Process
|
||||
#
|
||||
|
||||
# extract both datasets
|
||||
$script_dir/extract_addressbase.sh $addressbase_dir
|
||||
$script_dir/extract_mastermap.sh $mastermap_dir
|
||||
# filter mastermap ('building' polygons and any others referenced by addressbase)
|
||||
$script_dir/filter_transform_mastermap_for_loading.sh $addressbase_dir $mastermap_dir
|
||||
|
||||
#
|
||||
# Load
|
||||
#
|
||||
|
||||
# load all building outlines
|
||||
$script_dir/load_geometries.sh $mastermap_dir
|
||||
# index geometries (should be faster after loading)
|
||||
|
Loading…
Reference in New Issue
Block a user