Last active
May 31, 2020 22:22
-
-
Save anisotropi4/acb0fddf7ccb1230ff81746781d3eefe to your computer and use it in GitHub Desktop.
Trunk Roads: OSM locations of trunk roads in the GB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Released license:MIT | |
height:780 | |
border:no | |
Trunk Roads: OSM locations of trunk roads in the GB | |
OpenStreetMap® open data is © OpenStreetMap contributors and used under the Open Street Map license https://www.openstreetmap.org/copyright | |
Open Data Institute Leeds scripts and configuration are used © Creative Commons BY 4.0 ODI Leeds 2018 https://creativecommons.org/licenses/by/4.0/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import json | |
import csv | |
DATA = [] | |
TAGS = [] | |
for gtype in ['points', 'lines', 'multilinestrings', 'multipolygons', 'other_relations']: | |
with open('great-britain-highway-{}.json'.format(gtype), 'r', encoding='utf-8') as fin: | |
data = json.load(fin) | |
DATA.append(data) | |
TAGS += [{k: v for (k, v) in i['properties'].items() | |
if v and k not in ['z_order', 'layer']} | |
for i in data['features'] if i] | |
with open('output-all.json', 'w') as fout: | |
json.dump(DATA, fout, indent=1) | |
with open('tag-report.csv', 'w') as fout: | |
fieldnames = ['osm_id', 'highway', 'maxspeed'] | |
fieldnames += [k for k in set([j for i in TAGS for j in i]) - set(fieldnames)] | |
csvwriter = csv.DictWriter(fout, fieldnames=fieldnames) | |
csvwriter.writeheader() | |
for tag in TAGS: | |
csvwriter.writerow(tag) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
none | |
1 | |
1.983960E+00 5.133770E+01 | |
5.807600E-02 5.010375E+01 | |
-1.246112E+00 4.989032E+01 | |
-2.027284E+00 4.977612E+01 | |
-2.020900E+00 4.976352E+01 | |
-2.031990E+00 4.976171E+01 | |
-1.808598E+00 4.910263E+01 | |
-1.835368E+00 4.900443E+01 | |
-3.940324E+00 4.915592E+01 | |
-7.024780E+00 4.970097E+01 | |
-5.441616E+00 5.278017E+01 | |
-5.206178E+00 5.377268E+01 | |
-5.488813E+00 5.486510E+01 | |
-6.208707E+00 5.533747E+01 | |
-6.604158E+00 5.543057E+01 | |
-7.148041E+00 5.566455E+01 | |
-1.486751E+01 5.746894E+01 | |
-1.499070E+01 5.768017E+01 | |
-1.208287E+01 5.853333E+01 | |
-1.637515E+00 6.113564E+01 | |
-2.670263E-01 6.110300E+01 | |
1.278458E-01 5.976591E+01 | |
9.781600E-02 5.942198E+01 | |
7.998970E-01 5.579959E+01 | |
1.702395E+00 5.443427E+01 | |
2.250000E+00 5.258000E+01 | |
1.983960E+00 5.133770E+01 | |
END | |
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Trunk Roads: OSM locations of trunk roads in the GB</title> | |
<meta charset="utf-8"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="Cache-control" content="No-Cache"> | |
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico"/> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" | |
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" | |
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew==" | |
crossorigin=""></script> | |
<script src="http://d3js.org/d3.v5.min.js"></script> | |
<div id="map" style="width: 1340px; height: 780px"></div> | |
</head> | |
<body> | |
<div id='map'></div> | |
<script type="text/javascript"> | |
var radius = 3; | |
var weight = 1; | |
var linewidth = 2; | |
var log2 = Math.log(2.0); | |
var minZoom = 3; | |
var maxZoom = 18; | |
var map = L.map('map').setView([54.533, -2.53], 6); | |
L.tileLayer("http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", { | |
maxZoom: maxZoom, | |
minZoom: minZoom, | |
attribution: 'Map data © <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, ' + '<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' + 'Imagery © <a href="https://www.mapbox.com/">Mapbox</a>', | |
id: 'osm.standard' | |
}).addTo(map); | |
d3.json("output-all.json").then(function(d) { | |
function onEachFeature(feature, layer) { | |
var this_feature = feature.properties; | |
var popupContent; | |
if (this_feature.name) | |
popupContent = this_feature.name; | |
else | |
popupContent = this_feature.railway; | |
var lookup = { | |
"osm_id": "OSM ID", | |
"highway": "highway", | |
"maxspeed": "speed", | |
} | |
var k = Object.keys(this_feature).filter(i=>(i != "type" && i != "geometry" && i != "name" && i != "is_in" && i != "z_order" && i != "railway")) | |
for (var i = 0; i < k.length; i++) { | |
if (k[i] in this_feature) { | |
popupContent += '<br>' + lookup[k[i]] + ': ' + this_feature[k[i]]; | |
} | |
} | |
layer.bindPopup(popupContent); | |
} | |
function get_colour(p) { | |
var h = p.highway; | |
var s = p.maxspeed; | |
//if (p.osm_id == "28032243") | |
// return fail; | |
if (s && s.substr(-4) == " mph") s = s.slice(0, s.length - 4); | |
var fail = "#ff00ff"; | |
if (s && Number(s) < 20) s = "20"; | |
if (h == "trunk") { | |
var colours = { "20": "#e69c65", | |
"30": "#bd5d16", | |
"40": "#ffce36", | |
"50": "#ff893f", | |
"60": "#ff3818", | |
"70": "#d00000",}; | |
if (! s || s == 'none') s = "60"; | |
if (s in colours) return colours[s]; | |
return fail; | |
} | |
if (h == "motorway") { | |
var colours = { "30": "#0a3797", | |
"40": "#bd5d16", | |
"50": "#b3e297", | |
"60": "#ffce36", | |
"70": "#ffce36",}; | |
if (! s || s == 'signals') s = "70"; | |
if (s in colours) return colours[s]; | |
return fail; | |
} | |
return fail; | |
} | |
L.geoJSON(d, { | |
style: function(feature) { | |
var c = get_colour(feature.properties); | |
switch (feature.geometry.type) { | |
case 'Point': | |
return { | |
color: c, | |
radius: radius, | |
weight: weight | |
}; | |
case 'LineString': | |
return { | |
color: c, | |
weight: linewidth | |
}; | |
case 'MultiLineString': | |
return { | |
color: c, | |
weight: linewidth | |
}; | |
case 'MultiPolygon': | |
return { | |
weight: linewidth, | |
opacity: 1.0, | |
color: "Green", | |
fillColor: "Green", | |
fillOpacity: 0.2 | |
}; | |
case 'GeometryCollection': | |
return { | |
radius: radius, | |
weight: linewidth, | |
opacity: 1.0, | |
color: "Green", | |
fillColor: "GreenYellow", | |
fillOpacity: 0.2 | |
}; | |
default: | |
return { | |
weight: weight | |
}; | |
} | |
}, | |
onEachFeature: onEachFeature, | |
pointToLayer: function(feature, latlng) { | |
return L.circleMarker(latlng, { | |
opacity: 1, | |
fillOpacity: 0.8 | |
}); | |
} | |
}).addTo(map); | |
}); | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MIT License | |
Copyright (c) 2020 Will Deakin | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all | |
copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Configuration file for OSM import | |
# | |
# put here the name of keys for ways that are assumed to be polygons if they are closed | |
# see http://wiki.openstreetmap.org/wiki/Map_Features | |
closed_ways_are_polygons=aeroway,amenity,boundary,building,craft,geological,historic,landuse,leisure,military,natural,office,place,shop,sport,tourism | |
# comment to avoid laundering of keys ( ':' turned into '_' ) | |
attribute_name_laundering=yes | |
# uncomment to report all nodes, including the ones without any (significant) tag | |
#report_all_nodes=yes | |
# uncomment to report all ways, including the ones without any (significant) tag | |
#report_all_ways=yes | |
[points] | |
# common attributes | |
osm_id=yes | |
osm_version=no | |
osm_timestamp=no | |
osm_uid=no | |
osm_user=no | |
osm_changeset=no | |
# keys to report as OGR fields | |
attributes=highway,ref,maxspeed,lanes,oneway,lit,name,operator,maxspeed:type,highways_england:area,bicycle,surface,source:maxspeed,sidewalk,layer,bridge,junction,carriageway_ref,foot,int_ref,maintenance,source:name,horse,gritting,source:ref,turn:lanes,cycleway,salting:ref,motor_vehicle,description,old_ref,lanes:forward,gritting_operator,gritting_route_ref,alt_name,cycleway:left,parking:lane:both,traffic_restriction,lanes:backward,maxspeed:variable | |
# keys that, alone, are not significant enough to report a node as a OGR point | |
unsignificant=created_by,converted_by,source,time,attribution | |
# keys that should NOT be reported in the "other_tags" field | |
ignore=created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME | |
# uncomment to avoid creation of "other_tags" field | |
other_tags=no | |
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive | |
#all_tags=yes | |
[lines] | |
# common attributes | |
osm_id=yes | |
osm_version=no | |
osm_timestamp=no | |
osm_uid=no | |
osm_user=no | |
osm_changeset=no | |
# keys to report as OGR fields | |
attributes=highway,ref,maxspeed,lanes,oneway,lit,name,operator,maxspeed:type,highways_england:area,bicycle,surface,source:maxspeed,sidewalk,layer,bridge,junction,carriageway_ref,foot,int_ref,maintenance,source:name,horse,gritting,source:ref,turn:lanes,cycleway,salting:ref,motor_vehicle,description,old_ref,lanes:forward,gritting_operator,gritting_route_ref,alt_name,cycleway:left,parking:lane:both,traffic_restriction,lanes:backward,maxspeed:variable | |
# keys that should NOT be reported in the "other_tags" field | |
ignore=created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME | |
# uncomment to avoid creation of "other_tags" field | |
other_tags=no | |
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive | |
#all_tags=yes | |
#computed_attributes must appear before the keywords _type and _sql | |
computed_attributes=z_order | |
z_order_type=Integer | |
# Formula based on https://github.com/openstreetmap/osm2pgsql/blob/master/style.lua#L13 | |
# [foo] is substituted by value of tag foo. When substitution is not wished, the [ character can be escaped with \[ in literals | |
z_order_sql="SELECT (CASE [highway] WHEN 'minor' THEN 3 WHEN 'road' THEN 3 WHEN 'unclassified' THEN 3 WHEN 'residential' THEN 3 WHEN 'tertiary_link' THEN 4 WHEN 'tertiary' THEN 4 WHEN 'secondary_link' THEN 6 WHEN 'secondary' THEN 6 WHEN 'primary_link' THEN 7 WHEN 'primary' THEN 7 WHEN 'trunk_link' THEN 8 WHEN 'trunk' THEN 8 WHEN 'motorway_link' THEN 9 WHEN 'motorway' THEN 9 ELSE 0 END) + (CASE WHEN [bridge] IN ('yes', 'true', '1') THEN 10 ELSE 0 END) + (CASE WHEN [tunnel] IN ('yes', 'true', '1') THEN -10 ELSE 0 END) + (CASE WHEN [railway] IS NOT NULL THEN 5 ELSE 0 END) + (CASE WHEN [layer] IS NOT NULL THEN 10 * CAST([layer] AS INTEGER) ELSE 0 END)" | |
[multipolygons] | |
# common attributes | |
# note: for multipolygons, osm_id=yes instanciates a osm_id field for the id of relations | |
# and a osm_way_id field for the id of closed ways. Both fields are exclusively set. | |
osm_id=yes | |
osm_version=no | |
osm_timestamp=no | |
osm_uid=no | |
osm_user=no | |
osm_changeset=no | |
# keys to report as OGR fields | |
attributes=highway,ref,maxspeed,lanes,oneway,lit,name,operator,maxspeed:type,highways_england:area,bicycle,surface,source:maxspeed,sidewalk,layer,bridge,junction,carriageway_ref,foot,int_ref,maintenance,source:name,horse,gritting,source:ref,turn:lanes,cycleway,salting:ref,motor_vehicle,description,old_ref,lanes:forward,gritting_operator,gritting_route_ref,alt_name,cycleway:left,parking:lane:both,traffic_restriction,lanes:backward,maxspeed:variable | |
# keys that should NOT be reported in the "other_tags" field | |
ignore=area,created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME | |
# uncomment to avoid creation of "other_tags" field | |
other_tags=no | |
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive | |
#all_tags=yes | |
[multilinestrings] | |
# common attributes | |
osm_id=yes | |
osm_version=no | |
osm_timestamp=no | |
osm_uid=no | |
osm_user=no | |
osm_changeset=no | |
# keys to report as OGR fields | |
attributes=highway,ref,maxspeed,lanes,oneway,lit,name,operator,maxspeed:type,highways_england:area,bicycle,surface,source:maxspeed,sidewalk,layer,bridge,junction,carriageway_ref,foot,int_ref,maintenance,source:name,horse,gritting,source:ref,turn:lanes,cycleway,salting:ref,motor_vehicle,description,old_ref,lanes:forward,gritting_operator,gritting_route_ref,alt_name,cycleway:left,parking:lane:both,traffic_restriction,lanes:backward,maxspeed:variable | |
# keys that should NOT be reported in the "other_tags" field | |
ignore=area,created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME | |
# uncomment to avoid creation of "other_tags" field | |
other_tags=no | |
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive | |
#all_tags=yes | |
[other_relations] | |
# common attributes | |
osm_id=yes | |
osm_version=no | |
osm_timestamp=no | |
osm_uid=no | |
osm_user=no | |
osm_changeset=no | |
# keys to report as OGR fields | |
attributes=highway,ref,maxspeed,lanes,oneway,lit,name,operator,maxspeed:type,highways_england:area,bicycle,surface,source:maxspeed,sidewalk,layer,bridge,junction,carriageway_ref,foot,int_ref,maintenance,source:name,horse,gritting,source:ref,turn:lanes,cycleway,salting:ref,motor_vehicle,description,old_ref,lanes:forward,gritting_operator,gritting_route_ref,alt_name,cycleway:left,parking:lane:both,traffic_restriction,lanes:backward,maxspeed:variable | |
# keys that should NOT be reported in the "other_tags" field | |
ignore=area,created_by,converted_by,source,time,note,openGeoDB:,fixme,FIXME | |
# uncomment to avoid creation of "other_tags" field | |
other_tags=no | |
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive | |
#all_tags=yes |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment