Closes #1082 This PR moves the aerodrome/aerodrome_type consolidation (via template) into the lower-level `osm_aerodrome_label_point` table, and creates a partial index on class `international` for airports with an `iata` code. The presence of an `iata` code is more significant than an `icao` code which exists at many smaller, general aviation airport. Therefore, `international` + `iata` should be a sufficient filter. Zoom 8 international airports in the NYC area (blue dots):  Zoom 10 in the same area: 
63 lines
2.0 KiB
PL/PgSQL
63 lines
2.0 KiB
PL/PgSQL
|
|
-- etldoc: layer_aerodrome_label[shape=record fillcolor=lightpink, style="rounded,filled", label="layer_aerodrome_label | <z10_> z10+" ] ;
|
|
|
|
CREATE OR REPLACE FUNCTION layer_aerodrome_label(bbox geometry,
|
|
zoom_level integer)
|
|
RETURNS TABLE
|
|
(
|
|
id bigint,
|
|
geometry geometry,
|
|
name text,
|
|
name_en text,
|
|
name_de text,
|
|
tags hstore,
|
|
class text,
|
|
iata text,
|
|
icao text,
|
|
ele int,
|
|
ele_ft int
|
|
)
|
|
AS
|
|
$$
|
|
SELECT
|
|
-- etldoc: osm_aerodrome_label_point -> layer_aerodrome_label:z8
|
|
-- etldoc: osm_aerodrome_label_point -> layer_aerodrome_label:z9
|
|
ABS(osm_id) AS id, -- mvt feature IDs can't be negative
|
|
geometry,
|
|
name,
|
|
COALESCE(NULLIF(name_en, ''), name) AS name_en,
|
|
COALESCE(NULLIF(name_de, ''), name, name_en) AS name_de,
|
|
tags,
|
|
aerodrome_type AS class,
|
|
NULLIF(iata, '') AS iata,
|
|
NULLIF(icao, '') AS icao,
|
|
substring(ele FROM E'^(-?\\d+)(\\D|$)')::int AS ele,
|
|
round(substring(ele FROM E'^(-?\\d+)(\\D|$)')::int * 3.2808399)::int AS ele_ft
|
|
FROM osm_aerodrome_label_point
|
|
WHERE geometry && bbox
|
|
AND aerodrome_type = 'international'
|
|
AND iata <> ''
|
|
AND zoom_level BETWEEN 8 AND 9
|
|
|
|
UNION ALL
|
|
|
|
SELECT
|
|
-- etldoc: osm_aerodrome_label_point -> layer_aerodrome_label:z10_
|
|
ABS(osm_id) AS id, -- mvt feature IDs can't be negative
|
|
geometry,
|
|
name,
|
|
COALESCE(NULLIF(name_en, ''), name) AS name_en,
|
|
COALESCE(NULLIF(name_de, ''), name, name_en) AS name_de,
|
|
tags,
|
|
aerodrome_type AS class,
|
|
NULLIF(iata, '') AS iata,
|
|
NULLIF(icao, '') AS icao,
|
|
substring(ele FROM E'^(-?\\d+)(\\D|$)')::int AS ele,
|
|
round(substring(ele FROM E'^(-?\\d+)(\\D|$)')::int * 3.2808399)::int AS ele_ft
|
|
FROM osm_aerodrome_label_point
|
|
WHERE geometry && bbox
|
|
AND zoom_level >= 10;
|
|
$$ LANGUAGE SQL STABLE
|
|
-- STRICT
|
|
PARALLEL SAFE;
|