2021-05-03 22:59:30 +08:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
# genroads.py - create appropriate ROAD_LIST STG files for ws30 from openstreetmap
|
|
|
|
# Copyright (C) 2021 Stuart Buchanan
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
2021-12-06 04:38:19 +08:00
|
|
|
# Simple generate of line feature - roads, railways, rivers
|
2021-05-03 22:59:30 +08:00
|
|
|
# You will need Python Overpass API - "pip install overpy"
|
|
|
|
|
|
|
|
import xml.etree.ElementTree as etree
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
import collections
|
|
|
|
from math import floor
|
|
|
|
|
|
|
|
import calc_tile
|
|
|
|
import overpy
|
|
|
|
|
|
|
|
nodes = {}
|
2021-12-06 04:38:19 +08:00
|
|
|
curr_road_count = 0
|
|
|
|
curr_river_count = 0
|
2021-05-03 22:59:30 +08:00
|
|
|
road_count = 0
|
|
|
|
river_count = 0
|
|
|
|
|
|
|
|
if (len(sys.argv) != 6):
|
2021-12-06 04:38:19 +08:00
|
|
|
print("Simple generation of LINEAR_FEATURE_LIST files")
|
2021-05-03 22:59:30 +08:00
|
|
|
print("")
|
|
|
|
print("Usage: " + sys.argv[0] + " <scenery_dir> <lon1> <lat1> <lon2> <lat2>")
|
|
|
|
print(" <scenery_dir> \tScenery directory to write to")
|
|
|
|
print(" <lon1> <lat1> \tBottom left lon/lat of bounding box")
|
|
|
|
print(" <lon2> <lat2> \tTop right lon/lat of bounding box")
|
|
|
|
exit(1)
|
|
|
|
|
|
|
|
scenery_prefix = sys.argv[1]
|
|
|
|
lon1 = sys.argv[2]
|
|
|
|
lat1 = sys.argv[3]
|
|
|
|
lon2 = sys.argv[4]
|
|
|
|
lat2 = sys.argv[5]
|
|
|
|
|
|
|
|
os.makedirs(scenery_prefix, exist_ok=True)
|
|
|
|
|
|
|
|
def feature_file(lat, lon, type):
|
|
|
|
index = calc_tile.calc_tile_index((lon,lat))
|
|
|
|
return str(index) + "_" + type + ".txt"
|
|
|
|
|
|
|
|
def add_to_stg(lat, lon, type):
|
|
|
|
index = calc_tile.calc_tile_index((lon, lat))
|
|
|
|
stg = os.path.join(scenery_prefix, calc_tile.directory_name((lon, lat)), str(index) + ".stg")
|
|
|
|
#print("Writing " + stg)
|
|
|
|
with open(stg, 'a') as f:
|
|
|
|
f.write("LINE_FEATURE_LIST " + feature_file(lat, lon, type) + " " + type + "\n")
|
|
|
|
|
2021-12-06 04:38:19 +08:00
|
|
|
def write_feature(lon, lat, road, type, width, lit):
|
2021-05-03 22:59:30 +08:00
|
|
|
index = calc_tile.calc_tile_index((lon,lat))
|
|
|
|
dirname = os.path.join(scenery_prefix, calc_tile.directory_name((lon, lat)))
|
|
|
|
os.makedirs(dirname, exist_ok=True)
|
|
|
|
txt = os.path.join(scenery_prefix, calc_tile.directory_name((lon, lat)), feature_file(lat, lon, type))
|
|
|
|
#print("Writing " + txt)
|
|
|
|
with open(txt, 'a') as f:
|
2021-12-06 04:38:19 +08:00
|
|
|
f.write(str(width) + " " + str(lit) + " 1 1 1 1") # Width plus currently unused generic attributes.
|
2021-05-03 22:59:30 +08:00
|
|
|
for pt in road :
|
|
|
|
f.write(" " + str(pt.lon) + " " + str(pt.lat))
|
|
|
|
f.write("\n")
|
|
|
|
|
|
|
|
stg = os.path.join(scenery_prefix, calc_tile.directory_name((lon, lat)), str(index) + ".stg")
|
|
|
|
if not os.path.isfile(stg) :
|
|
|
|
# No STG - generate
|
|
|
|
add_to_stg(lat, lon, type)
|
|
|
|
else :
|
|
|
|
road_exists = 0
|
|
|
|
with open(stg, 'r') as f:
|
|
|
|
for line in f:
|
|
|
|
if line.startswith("LINE_FEATURE_LIST " + feature_file(lat, lon, type)) :
|
|
|
|
road_exists = 1
|
|
|
|
if road_exists == 0 :
|
|
|
|
add_to_stg(lat, lon, type)
|
|
|
|
|
|
|
|
|
|
|
|
def parse_way(way) :
|
2021-12-06 04:38:19 +08:00
|
|
|
global curr_road_count, curr_river_count, lat1, lon1, lat2, lon2
|
2021-05-03 22:59:30 +08:00
|
|
|
pts = []
|
|
|
|
width = 6.0
|
2021-12-06 04:38:19 +08:00
|
|
|
lit = 0
|
|
|
|
road = 0
|
2021-05-03 22:59:30 +08:00
|
|
|
river = 0
|
2021-12-06 04:38:19 +08:00
|
|
|
rail = 0
|
2021-05-03 22:59:30 +08:00
|
|
|
|
|
|
|
highway = way.tags.get("highway")
|
|
|
|
waterway = way.tags.get("waterway")
|
2021-12-06 04:38:19 +08:00
|
|
|
railway = way.tags.get("railway")
|
2021-05-03 22:59:30 +08:00
|
|
|
feature_type = "None"
|
|
|
|
|
|
|
|
if (highway=="motorway_junction") or (highway=="motorway") or (highway=="motorway_link"):
|
|
|
|
width = 15.0
|
2021-12-06 04:38:19 +08:00
|
|
|
feature_type = "ws30Freeway"
|
|
|
|
curr_road_count = curr_road_count + 1
|
|
|
|
|
|
|
|
if (highway=="primary") or (highway=="trunk") or (highway=="trunk_link") or (highway=="primary_link") :
|
|
|
|
width = 12.0
|
|
|
|
feature_type = "ws30Freeway"
|
|
|
|
curr_road_count = curr_road_count + 1
|
2021-05-03 22:59:30 +08:00
|
|
|
|
2021-12-06 04:38:19 +08:00
|
|
|
if (highway=="secondary") or (highway=="secondary_link") :
|
2021-05-03 22:59:30 +08:00
|
|
|
width = 12.0
|
2021-12-06 04:38:19 +08:00
|
|
|
feature_type = "ws30Road"
|
|
|
|
curr_road_count = curr_road_count + 1
|
2021-05-03 22:59:30 +08:00
|
|
|
|
|
|
|
if (highway=="unclassified") or (highway=="tertiary") or (highway=="tertiary_link") or (highway=="service") or (highway=="residential"):
|
|
|
|
width = 6.0
|
2021-12-06 04:38:19 +08:00
|
|
|
feature_type = "ws30Road"
|
|
|
|
curr_road_count = curr_road_count + 1
|
2021-05-03 22:59:30 +08:00
|
|
|
if (waterway=="river") or (waterway=="canal") :
|
|
|
|
width = 10.0
|
2021-12-06 04:38:19 +08:00
|
|
|
feature_type = "ws30River"
|
|
|
|
curr_river_count = curr_river_count + 1
|
|
|
|
|
|
|
|
if (railway=="rail") or (railway=="preserved") or (railway=="disused") :
|
|
|
|
width = 4.2 # Standard guage ~ 1.4m, with twice the space either side
|
|
|
|
feature_type = "ws30Railway"
|
2021-05-03 22:59:30 +08:00
|
|
|
|
|
|
|
# Use the width if defined and parseable
|
|
|
|
if (way.tags.get("width") != None) :
|
|
|
|
width_str = way.tags.get("width")
|
|
|
|
try:
|
|
|
|
if (' m' in width_str) :
|
|
|
|
width = float(width_str[0:width_str.find(" m")])
|
|
|
|
if (' ft' in width_str) :
|
|
|
|
width = 0.3 * float(width_str[0:width_str.find(" ft")])
|
|
|
|
except ValueError :
|
|
|
|
print("Unable to parse width " + width_str)
|
|
|
|
|
2021-12-06 04:38:19 +08:00
|
|
|
# Use the lit tag if defined and parseable
|
|
|
|
if (way.tags.get("lit") != None) :
|
|
|
|
lit_str = way.tags.get("lit")
|
|
|
|
if ((lit_str == "no") or (lit == "disused")) :
|
|
|
|
# Specific tags for unlit ways
|
|
|
|
lit = 0
|
|
|
|
else :
|
|
|
|
# Everything else indicates some form of lighting
|
|
|
|
lit = 1
|
|
|
|
|
2021-05-03 22:59:30 +08:00
|
|
|
if (feature_type != "None") :
|
|
|
|
# It's a road or river. Add it to appropriate tile entries.
|
|
|
|
tileids = set()
|
|
|
|
|
|
|
|
for pt in way.nodes:
|
|
|
|
lon = float(pt.lon)
|
|
|
|
lat = float(pt.lat)
|
|
|
|
idx = calc_tile.calc_tile_index([lon, lat])
|
|
|
|
if ((float(lon1) <= lon <= float(lon2)) and (float(lat1) <= lat <= float(lat2)) and (idx not in tileids)) :
|
|
|
|
# Write the feature to a bucket provided it's within the lat/lon bounds and if we've not already written it there
|
2021-12-06 04:38:19 +08:00
|
|
|
write_feature(lon, lat, way.nodes, feature_type, width, lit)
|
2021-05-03 22:59:30 +08:00
|
|
|
tileids.add(idx)
|
|
|
|
|
|
|
|
def writeOSM(result):
|
|
|
|
for child in result.ways:
|
|
|
|
parse_way(child)
|
|
|
|
|
2021-12-06 04:38:19 +08:00
|
|
|
for lat in range(int(lat1), int(lat2)):
|
|
|
|
for lon in range(int(lon1), int(lon2)):
|
|
|
|
curr_road_count = 0
|
|
|
|
curr_river_count = 0
|
|
|
|
osm_bbox = ",".join([str(lat), str(lon), str(lat+1), str(lon+1)])
|
|
|
|
#api = overpy.Overpass(url="https://lz4.overpass-api.de/api/interpreter")
|
|
|
|
api = overpy.Overpass(url="https://overpass.kumi.systems/api/interpreter")
|
|
|
|
|
|
|
|
# Get River data
|
|
|
|
river_query = "(way[\"waterway\"=\"river\"](" + osm_bbox + "); way[\"waterway\"=\"canal\"](" + osm_bbox + "););(._;>;);out;"
|
|
|
|
result = api.query(river_query)
|
|
|
|
writeOSM(result)
|
|
|
|
|
|
|
|
railway_query = "("
|
|
|
|
railway_types = ["rail", "preserved", "disused"]
|
|
|
|
for r in railway_types :
|
|
|
|
railway_query = railway_query + "way[\"railway\"=\"" + r + "\"](" + osm_bbox + ");"
|
|
|
|
|
|
|
|
railway_query = railway_query + ");(._;>;);out;"
|
|
|
|
result = api.query(railway_query)
|
|
|
|
writeOSM(result)
|
|
|
|
|
|
|
|
road_query = "("
|
|
|
|
#road_types = ["unclassified", "tertiary", "service", "secondary", "primary", "motorway_junction", "motorway"]
|
|
|
|
#road_types = ["tertiary", "secondary", "primary", "motorway_junction", "motorway"]
|
|
|
|
road_types = ["motorway", "trunk", "primary", "secondary", "tertiary", "unclassified", "residential", "motorway_link", "trunk_link", "primary_link", "secondary_link", "tertiary_link"]
|
|
|
|
for r in road_types :
|
|
|
|
road_query = road_query + "way[\"highway\"=\"" + r + "\"](" + osm_bbox + ");"
|
|
|
|
|
|
|
|
road_query = road_query + ");(._;>;);out;"
|
|
|
|
result = api.query(road_query)
|
|
|
|
writeOSM(result)
|
|
|
|
|
|
|
|
print(str(lat) + "," + str(lon) + ": " + str(curr_road_count) + " roads " + str(curr_river_count) + " rivers")
|
|
|
|
road_count += curr_road_count
|
|
|
|
river_count += curr_river_count
|
|
|
|
|
|
|
|
print(str(lat1) + "," + str(lon1) + " " + str(lat2) + "," + str(lon2))
|
|
|
|
print("Wrote total of " + str(road_count) + " roads " + str(river_count) + " rivers")
|
2021-05-03 22:59:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#time ./genroads.py /tmp/OSMTEST/Terrain/ -3.5 55.0 -2.5 56.0
|
|
|
|
#2005 time ./genroads.py /tmp/OSMTEST/Terrain/ -12 59.0 -10 61.0
|
|
|
|
# 2006 time ./genroads.py /tmp/OSMTEST/Terrain/ -10 59.0 -8 61.0
|
|
|
|
# 2007 time ./genroads.py /tmp/OSMTEST/Terrain/ -8 59.0 -4 61.0
|
|
|
|
# 2008 time ./genroads.py /tmp/OSMTEST/Terrain/ -4 59.0 0 61.0
|
|
|
|
# 2009 time ./genroads.py /tmp/OSMTEST/Terrain/ 0 59.0 4 61.0
|
|
|
|
# 2010 time ./genroads.py /tmp/OSMTEST/Terrain/ -12 57.0 -10 59.0
|
|
|
|
# 2011 time ./genroads.py /tmp/OSMTEST/Terrain/ -10 57.0 -6 59.0
|
|
|
|
# 2012 time ./genroads.py /tmp/OSMTEST/Terrain/ -6 57.0 -2 59.0
|
|
|
|
# 2013 time ./genroads.py /tmp/OSMTEST/Terrain/ -2 57.0 4 59.0
|