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",
|
2022-04-03 17:40:09 +00:00
|
|
|
-- "trunk_link",
|
|
|
|
-- "primary_link",
|
|
|
|
-- "secondary_link",
|
|
|
|
-- "tertiary_link",
|
2021-10-10 10:32:28 +00:00
|
|
|
"living_street",
|
|
|
|
"service",
|
|
|
|
"track",
|
|
|
|
"road",
|
|
|
|
}
|
|
|
|
local ZONE_TYPES = {
|
|
|
|
"urban",
|
|
|
|
"rural",
|
|
|
|
"motorway",
|
|
|
|
}
|
|
|
|
local URBAN_TYPES = {
|
|
|
|
"residential",
|
|
|
|
"living_street",
|
|
|
|
"road",
|
|
|
|
}
|
|
|
|
local MOTORWAY_TYPES = {
|
|
|
|
"motorway",
|
2022-04-03 17:40:09 +00:00
|
|
|
-- "motorway_link",
|
2021-10-10 10:32:28 +00:00
|
|
|
}
|
|
|
|
|
2022-04-03 14:06:34 +00:00
|
|
|
local ADMIN_LEVEL_MIN = 2
|
|
|
|
local ADMIN_LEVEL_MAX = 8
|
|
|
|
|
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-04-03 14:06:34 +00:00
|
|
|
local regions = osm2pgsql.define_relation_table('region', {
|
|
|
|
{ column = 'name', type = 'text' },
|
|
|
|
{ column = 'geometry', type = 'geometry' },
|
|
|
|
{ column = 'admin_level', type = 'int' },
|
|
|
|
{ column = 'tags', type = 'hstore' },
|
|
|
|
})
|
|
|
|
|
|
|
|
|
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"
|
|
|
|
elseif contains(URBAN_TYPES, tags.highway) then
|
|
|
|
zone = "urban"
|
|
|
|
elseif contains(MOTORWAY_TYPES, tags.highway) then
|
|
|
|
zone = "motorway"
|
|
|
|
else
|
|
|
|
-- we can't figure it out
|
|
|
|
zone = nil
|
|
|
|
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
|
2022-04-03 14:06:34 +00:00
|
|
|
|
|
|
|
function osm2pgsql.process_relation(object)
|
|
|
|
local admin_level = tonumber(object.tags.admin_level)
|
|
|
|
if object.tags.boundary == "administrative" and admin_level and admin_level >= ADMIN_LEVEL_MIN and admin_level <= ADMIN_LEVEL_MAX then
|
|
|
|
regions:add_row({
|
|
|
|
geometry = { create = 'area' },
|
|
|
|
name = object.tags.name,
|
|
|
|
admin_level = admin_level,
|
|
|
|
tags = object.tags,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function osm2pgsql.select_relation_members(relation)
|
|
|
|
if relation.tags.type == 'route' then
|
|
|
|
return { ways = osm2pgsql.way_member_ids(relation) }
|
|
|
|
end
|
|
|
|
end
|