Merge branch 'master' into upstream
Signed-off-by: Alexander Borsuk <170263+biodranik@users.noreply.github.com>
This commit is contained in:
commit
524be2a088
2 changed files with 7 additions and 4 deletions
|
@ -101,7 +101,7 @@ Expose a directory with static contents via a web-server and put into it:
|
|||
Summary information about all metro networks that are monitored is gathered in the
|
||||
[Google Spreadsheet](https://docs.google.com/spreadsheets/d/1SEW1-NiNOnA2qDwievcxYV1FOaQl1mb1fdeyqAxHu3k).
|
||||
|
||||
Regular updates of validation results are available at
|
||||
Regular updates of validation results are available at [Organic Maps](https://cdn.organicmaps.app/subway/) and
|
||||
[this website](https://maps.vk.com/osm/tools/subways/latest/).
|
||||
You can find more info about this validator instance in
|
||||
[OSM Wiki](https://wiki.openstreetmap.org/wiki/Quality_assurance#subway-preprocessor).
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -e -u
|
||||
#!/usr/bin/env bash
|
||||
#set -euxo pipefail
|
||||
|
||||
if [ $# -gt 0 -a \( "${1-}" = "-h" -o "${1-}" = '--help' \) ]; then
|
||||
cat << EOF
|
||||
|
@ -153,7 +153,7 @@ fi
|
|||
if [ -n "${NEED_FILTER-}" ]; then
|
||||
|
||||
# If $PLANET_METRO file doesn't exist, create it
|
||||
|
||||
|
||||
if [ -n "${PLANET_METRO-}" ]; then
|
||||
EXT=${PLANET_METRO##*.}
|
||||
if [ ! "$EXT" = "osm" -a ! "$EXT" == "xml" -a ! "$EXT" = "o5m" ]; then
|
||||
|
@ -254,6 +254,9 @@ if [ -n "${NEED_TO_REMOVE_POLY-}" ]; then
|
|||
fi
|
||||
|
||||
# Running the validation
|
||||
if [ -n "${DUMP-}" ]; then
|
||||
mkdir -p "$DUMP"
|
||||
fi
|
||||
|
||||
if [ -n "${DUMP-}" ]; then
|
||||
mkdir -p "$DUMP"
|
||||
|
|
Loading…
Add table
Reference in a new issue