Add RECOVERY_PATH configuration parameter; fix a bug in using --json argument and rename --json to --geojson
This commit is contained in:
parent
e38db5f5be
commit
a21042ecbd
2 changed files with 10 additions and 9 deletions
|
@ -82,9 +82,9 @@ if __name__ == '__main__':
|
|||
parser.add_argument('-o', '--output', type=argparse.FileType('w', encoding='utf-8'),
|
||||
help='Processed metro systems output')
|
||||
parser.add_argument('--cache', help='Cache file name for processed data')
|
||||
parser.add_argument('--recovery-path', help='Cache file name for error recovery')
|
||||
parser.add_argument('-r', '--recovery-path', help='Cache file name for error recovery')
|
||||
parser.add_argument('-d', '--dump', help='Make a YAML file for a city data')
|
||||
parser.add_argument('-j', '--json', help='Make a GeoJSON file for a city data')
|
||||
parser.add_argument('-j', '--geojson', help='Make a GeoJSON file for a city data')
|
||||
parser.add_argument('--crude', action='store_true',
|
||||
help='Do not use OSM railway geometry for GeoJSON')
|
||||
options = parser.parse_args()
|
||||
|
@ -180,17 +180,17 @@ if __name__ == '__main__':
|
|||
else:
|
||||
logging.error('Cannot dump %s cities at once', len(cities))
|
||||
|
||||
if options.json:
|
||||
if os.path.isdir(options.json):
|
||||
if options.geojson:
|
||||
if os.path.isdir(options.geojson):
|
||||
for c in cities:
|
||||
with open(os.path.join(options.dump, slugify(c.name) + '.geojson'),
|
||||
with open(os.path.join(options.geojson, slugify(c.name) + '.geojson'),
|
||||
'w', encoding='utf-8') as f:
|
||||
json.dump(make_geojson(c, not options.crude), f)
|
||||
elif len(cities) == 1:
|
||||
with open(options.json, 'w', encoding='utf-8') as f:
|
||||
with open(options.geojson, 'w', encoding='utf-8') as f:
|
||||
json.dump(make_geojson(cities[0], not options.crude), f)
|
||||
else:
|
||||
logging.error('Cannot make a json of %s cities at once', len(cities))
|
||||
logging.error('Cannot make a geojson of %s cities at once', len(cities))
|
||||
|
||||
if options.log:
|
||||
res = []
|
||||
|
|
|
@ -72,8 +72,9 @@ QNODES="railway=station station=subway =light_rail =monorail railway=subway_entr
|
|||
|
||||
VALIDATION="$TMPDIR/validation.json"
|
||||
"$PYTHON" "$SUBWAYS_PATH/process_subways.py" -q -x "$FILTERED_DATA" -l "$VALIDATION" ${MAPSME+-o "$MAPSME"}\
|
||||
${CITY+-c "$CITY"} ${DUMP+-d "$DUMP"} ${JSON+-j "$JSON"}\
|
||||
${ELEMENTS_CACHE+-i "$ELEMENTS_CACHE"} ${CITY_CACHE+--cache "$CITY_CACHE"}
|
||||
${CITY+-c "$CITY"} ${DUMP+-d "$DUMP"} ${GEOJSON+-j "$GEOJSON"}\
|
||||
${ELEMENTS_CACHE+-i "$ELEMENTS_CACHE"} ${CITY_CACHE+--cache "$CITY_CACHE"}\
|
||||
${RECOVERY_PATH+-r "$RECOVERY_PATH"}
|
||||
rm "$FILTERED_DATA"
|
||||
|
||||
# Preparing HTML files
|
||||
|
|
Loading…
Add table
Reference in a new issue