Small fixes

This commit is contained in:
Ilya Zverev 2017-10-18 12:52:31 +03:00
parent 258b209369
commit 9c288ef238
3 changed files with 4 additions and 22 deletions

View file

@ -3,5 +3,4 @@
OSMFILTER=${2-./osmfilter}
QRELATIONS="route=subway =light_rail =monorail route_master=subway =light_rail =monorail public_transport=stop_area =stop_area_group"
QNODES="station=subway =light_rail =monorail railway=subway_entrance subway=yes light_rail=yes monorail=yes"
"$OSMFILTER" "$1" --keep= --keep-relations="$QRELATIONS" --keep-nodes="$QNODES" -o=subways-$(date +%y%m%d).osm
# "$OSMFILTER" "$1" --keep= --keep-relations="$QRELATIONS" --keep-nodes="$QNODES" --drop-author -o=subways-$(date +%y%m%d).osm
"$OSMFILTER" "$1" --keep= --keep-relations="$QRELATIONS" --keep-nodes="$QNODES" --drop-author -o=subways-$(date +%y%m%d).osm

View file

@ -502,7 +502,8 @@ def get_unused_entrances_geojson(elements):
el['tags'].get('railway') == 'subway_entrance'):
if el_id(el) not in used_entrances:
geometry = {'type': 'Point', 'coordinates': el_center(el)}
properties = {k: v for k, v in el['tags'].items() if k != 'railway'}
properties = {k: v for k, v in el['tags'].items()
if k not in ('railway', 'entrance')}
features.append({'type': 'Feature', 'geometry': geometry, 'properties': properties})
return {'type': 'FeatureCollection', 'features': features}

View file

@ -60,23 +60,6 @@ class CityData:
s = s.replace('{='+k+'}', test_eq(self.data['num_'+k], 0))
return s
def add_warning(self, msg):
self.warnings.append(msg)
self.data['num_warnings'] += 1
def add_error(self, msg):
for k, reg in CityData.REGEXPS:
m = reg.search(msg)
if m:
self.data[k+'_found'] = int(m[1])
self.data[k+'_expected'] = int(m[2])
m = re.search(r'Found (\d+) unused subway e', msg)
if m:
self.data['unused_entrances'] = int(m[1])
self.errors.append(msg)
self.data['num_errors'] += 1
self.data['good_cities'] = 0
def tmpl(s, data=None, **kwargs):
if data:
@ -93,14 +76,13 @@ def tmpl(s, data=None, **kwargs):
EXPAND_OSM_TYPE = {'n': 'node', 'w': 'way', 'r': 'relation'}
RE_SHORT = re.compile(r'([nwr])(\d+)')
RE_FULL = re.compile(r'(node|way|relation) (\d+)')
LOG_LINE = re.compile(r'^(\d\d:\d\d:\d\d)\s+([A-Z]+)\s+([^:]+):\s+(.+?)\s*$')
def osm_links(s):
"""Converts object mentions to HTML links."""
def link(m):
return '<a href="https://www.openstreetmap.org/{}/{}">{}</a>'.format(
EXPAND_OSM_TYPE[m[1][0]], m[2], m[0])
EXPAND_OSM_TYPE[m.group(1)[0]], m.group(2), m.group(0))
s = RE_SHORT.sub(link, s)
s = RE_FULL.sub(link, s)
return s