2021-10-10 10:32:28 +00:00
|
|
|
--
|
|
|
|
-- To use this file, see
|
|
|
|
-- https://mygisnotes.wordpress.com/2015/10/09/openstreepmap-import-data-into-a-postgis-database-and-incrementally-update-it/
|
|
|
|
-- for general instructions:
|
|
|
|
-- 1. Download PBF
|
|
|
|
-- 2. Convert and filter to your needs
|
|
|
|
-- 3. Run the import like this:
|
|
|
|
--
|
2022-02-11 09:59:51 +00:00
|
|
|
-- osm2pgsql --create --hstore --style roads_import.lua -O flex \
|
2021-10-10 10:32:28 +00:00
|
|
|
-- --proj 32629 -H localhost -d obs -U obs -W \
|
|
|
|
-- YOUR_FILE.o5m
|
|
|
|
|
|
|
|
local function contains(table, val)
|
|
|
|
for i=1,#table do
|
|
|
|
if table[i] == val then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
local HIGHWAY_TYPES = {
|
|
|
|
"trunk",
|
|
|
|
"primary",
|
|
|
|
"secondary",
|
|
|
|
"tertiary",
|
|
|
|
"unclassified",
|
|
|
|
"residential",
|
|
|
|
"trunk_link",
|
|
|
|
"primary_link",
|
|
|
|
"secondary_link",
|
|
|
|
"tertiary_link",
|
|
|
|
"living_street",
|
|
|
|
"service",
|
|
|
|
"track",
|
|
|
|
"road",
|
|
|
|
}
|
|
|
|
local ZONE_TYPES = {
|
|
|
|
"urban",
|
|
|
|
"rural",
|
|
|
|
"motorway",
|
|
|
|
}
|
|
|
|
local URBAN_TYPES = {
|
|
|
|
"residential",
|
|
|
|
"living_street",
|
|
|
|
"road",
|
|
|
|
}
|
|
|
|
local MOTORWAY_TYPES = {
|
|
|
|
"motorway",
|
|
|
|
"motorway_link",
|
|
|
|
}
|
|
|
|
|
2021-10-31 19:50:09 +00:00
|
|
|
local ONEWAY_YES = {"yes", "true", "1"}
|
|
|
|
local ONEWAY_REVERSE = {"reverse", "-1"}
|
|
|
|
|
2021-10-10 10:32:28 +00:00
|
|
|
local roads = osm2pgsql.define_way_table('road', {
|
|
|
|
{ column = 'zone', type = 'text', sql_type="zone_type" },
|
2021-10-31 19:50:09 +00:00
|
|
|
{ column = 'directionality', type = 'int' },
|
2021-10-10 10:32:28 +00:00
|
|
|
{ column = 'name', type = 'text' },
|
|
|
|
{ column = 'geometry', type = 'linestring' },
|
2021-11-24 22:07:22 +00:00
|
|
|
{ column = 'oneway', type = 'bool' },
|
2021-10-10 10:32:28 +00:00
|
|
|
})
|
|
|
|
|
2022-06-24 16:51:52 +00:00
|
|
|
local minspeed_rural = 60
|
|
|
|
|
2021-10-10 10:32:28 +00:00
|
|
|
function osm2pgsql.process_way(object)
|
|
|
|
if object.tags.highway and contains(HIGHWAY_TYPES, object.tags.highway) then
|
|
|
|
local tags = object.tags
|
|
|
|
local zone = nil
|
|
|
|
|
|
|
|
if tags["zone:traffic"] then
|
|
|
|
zone = tags["zone:traffic"]
|
|
|
|
|
|
|
|
if zone == "DE:urban" then
|
|
|
|
zone = "urban"
|
|
|
|
elseif zone == "DE:rural" then
|
|
|
|
zone = "rural"
|
|
|
|
elseif zone == "DE:motorway" then
|
|
|
|
zone = "motorway"
|
|
|
|
elseif string.match(zone, "rural") then
|
|
|
|
zone = "rural"
|
|
|
|
elseif string.match(zone, "urban") then
|
|
|
|
zone = "urban"
|
|
|
|
elseif string.match(zone, "motorway") then
|
|
|
|
zone = "motorway"
|
2022-05-21 19:09:54 +00:00
|
|
|
elseif string.match(zone, "30") then
|
|
|
|
zone = "urban"
|
|
|
|
else
|
|
|
|
zone = "urban"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if not tags["zone:traffic"] then
|
|
|
|
if contains(URBAN_TYPES, tags.highway) then
|
2021-10-10 10:32:28 +00:00
|
|
|
zone = "urban"
|
|
|
|
elseif contains(MOTORWAY_TYPES, tags.highway) then
|
|
|
|
zone = "motorway"
|
2022-06-24 16:51:52 +00:00
|
|
|
elseif (tags.maxspeed) and (tonumber(string.match(tags.maxspeed, '[%d]*'))) and tonumber(string.match(tags.maxspeed, '[%d]*')) > minspeed_rural then
|
|
|
|
zone = "rural"
|
|
|
|
elseif (tags["maxspeed:forward"]) and (tonumber(string.match(tags["maxspeed:forward"], '[%d]*'))) and tonumber(string.match(tags["maxspeed:forward"], '[%d]*')) > minspeed_rural then
|
|
|
|
zone = "rural"
|
|
|
|
elseif (tags["maxspeed:backward"]) and (tonumber(string.match(tags["maxspeed:backward"], '[%d]*'))) and tonumber(string.match(tags["maxspeed:backward"], '[%d]*')) > minspeed_rural then
|
2022-05-21 19:09:54 +00:00
|
|
|
zone = "rural"
|
|
|
|
elseif tags['source:maxspeed'] and string.match(tags['source:maxspeed'], "rural") then
|
|
|
|
zone = "rural"
|
|
|
|
elseif tags['source:maxspeed'] and string.match(tags['source:maxspeed'], "urban") then
|
|
|
|
zone = "urban"
|
2021-10-10 10:32:28 +00:00
|
|
|
else
|
|
|
|
-- we can't figure it out
|
2022-05-21 19:09:54 +00:00
|
|
|
zone = "urban"
|
2021-10-10 10:32:28 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-31 19:50:09 +00:00
|
|
|
local directionality = 0
|
2021-11-24 22:07:22 +00:00
|
|
|
local oneway = tags.oneway
|
|
|
|
|
2021-11-13 01:17:29 +00:00
|
|
|
-- See https://wiki.openstreetmap.org/wiki/Key:oneway section "Implied oneway restriction"
|
|
|
|
if contains(ONEWAY_YES, tags.oneway) or tags.junction == "roundabout" or zone == "motorway" then
|
2021-10-31 19:50:09 +00:00
|
|
|
directionality = 1
|
2021-11-24 22:07:22 +00:00
|
|
|
oneway = true
|
2021-11-13 01:17:29 +00:00
|
|
|
elseif contains(ONEWAY_REVERSE, tags.oneway) then
|
2021-10-31 19:50:09 +00:00
|
|
|
directionality = -1
|
2021-11-24 22:07:22 +00:00
|
|
|
oneway = true
|
2021-10-31 19:50:09 +00:00
|
|
|
end
|
|
|
|
|
2021-10-10 10:32:28 +00:00
|
|
|
roads:add_row({
|
2021-10-31 19:50:09 +00:00
|
|
|
geom = { create = 'linear' },
|
2021-10-10 10:32:28 +00:00
|
|
|
name = tags.name,
|
|
|
|
zone = zone,
|
2021-10-31 19:50:09 +00:00
|
|
|
directionality = directionality,
|
2021-11-24 22:07:22 +00:00
|
|
|
oneway = oneway,
|
2021-10-10 10:32:28 +00:00
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|