mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-03-11 21:34:06 +00:00
add step column to tiger data table
This replaces the interpolationtype column.
This commit is contained in:
@@ -80,9 +80,9 @@ CREATE TABLE location_property_tiger (
|
|||||||
parent_place_id BIGINT,
|
parent_place_id BIGINT,
|
||||||
startnumber INTEGER,
|
startnumber INTEGER,
|
||||||
endnumber INTEGER,
|
endnumber INTEGER,
|
||||||
|
step SMALLINT,
|
||||||
partition SMALLINT,
|
partition SMALLINT,
|
||||||
linegeo GEOMETRY,
|
linegeo GEOMETRY,
|
||||||
interpolationtype TEXT,
|
|
||||||
postcode TEXT);
|
postcode TEXT);
|
||||||
GRANT SELECT ON location_property_tiger TO "{{config.DATABASE_WEBUSER}}";
|
GRANT SELECT ON location_property_tiger TO "{{config.DATABASE_WEBUSER}}";
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
CREATE INDEX IF NOT EXISTS idx_location_property_tiger_parent_place_id_imp
|
CREATE INDEX IF NOT EXISTS idx_location_property_tiger_parent_place_id_imp
|
||||||
ON location_property_tiger_import (parent_place_id)
|
ON location_property_tiger_import (parent_place_id)
|
||||||
{% if postgres.has_index_non_key_column %}
|
{% if postgres.has_index_non_key_column %}
|
||||||
INCLUDE (startnumber, endnumber)
|
INCLUDE (startnumber, endnumber, step)
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{db.tablespace.aux_index}};
|
{{db.tablespace.aux_index}};
|
||||||
CREATE UNIQUE INDEX IF NOT EXISTS idx_location_property_tiger_place_id_imp
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_location_property_tiger_place_id_imp
|
||||||
|
|||||||
@@ -24,11 +24,12 @@ DECLARE
|
|||||||
BEGIN
|
BEGIN
|
||||||
|
|
||||||
IF in_endnumber > in_startnumber THEN
|
IF in_endnumber > in_startnumber THEN
|
||||||
startnumber = in_startnumber;
|
startnumber := in_startnumber;
|
||||||
endnumber = in_endnumber;
|
endnumber := in_endnumber;
|
||||||
ELSE
|
ELSE
|
||||||
startnumber = in_endnumber;
|
startnumber := in_endnumber;
|
||||||
endnumber = in_startnumber;
|
endnumber := in_startnumber;
|
||||||
|
linegeo := ST_Reverse(linegeo);
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
IF startnumber < 0 THEN
|
IF startnumber < 0 THEN
|
||||||
@@ -50,8 +51,10 @@ BEGIN
|
|||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
-- Filter out really broken tiger data
|
-- Filter out really broken tiger data
|
||||||
IF numberrange > 0 AND (numberrange::float/stepsize::float > 500)
|
IF numberrange > 0
|
||||||
AND ST_length(linegeo)/(numberrange::float/stepsize::float) < 0.000001 THEN
|
and numberrange::float/stepsize::float > 500
|
||||||
|
and ST_length(linegeo)/(numberrange::float/stepsize::float) < 0.000001
|
||||||
|
THEN
|
||||||
RAISE WARNING 'Road too short for number range % to % (%)',startnumber,endnumber,
|
RAISE WARNING 'Road too short for number range % to % (%)',startnumber,endnumber,
|
||||||
ST_length(linegeo)/(numberrange::float/stepsize::float);
|
ST_length(linegeo)/(numberrange::float/stepsize::float);
|
||||||
RETURN 0;
|
RETURN 0;
|
||||||
@@ -74,8 +77,12 @@ BEGIN
|
|||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
--insert street(line) into import table
|
--insert street(line) into import table
|
||||||
insert into location_property_tiger_import (linegeo, place_id, partition, parent_place_id, startnumber, endnumber, interpolationtype, postcode)
|
insert into location_property_tiger_import (linegeo, place_id, partition,
|
||||||
values (linegeo, nextval('seq_place'), out_partition, out_parent_place_id, startnumber, endnumber, interpolationtype, in_postcode);
|
parent_place_id, startnumber, endnumber,
|
||||||
|
step, postcode)
|
||||||
|
values (linegeo, nextval('seq_place'), out_partition,
|
||||||
|
out_parent_place_id, startnumber, endnumber,
|
||||||
|
stepsize, in_postcode);
|
||||||
|
|
||||||
RETURN 1;
|
RETURN 1;
|
||||||
END;
|
END;
|
||||||
|
|||||||
Reference in New Issue
Block a user