From 5c12e1c5d5ce7b2b64ce712a738d35d57ee78ab0 Mon Sep 17 00:00:00 2001 From: Ryan Lambert Date: Sun, 17 Sep 2023 09:21:42 -0600 Subject: [PATCH] Fix hint of where to look for address_only_building logic --- flex-config/sql/building.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flex-config/sql/building.sql b/flex-config/sql/building.sql index d799987..ce7441b 100644 --- a/flex-config/sql/building.sql +++ b/flex-config/sql/building.sql @@ -48,8 +48,8 @@ COMMENT ON COLUMN osm.building_point.address IS 'Address combined from address p COMMENT ON COLUMN osm.building_polygon.address IS 'Address combined from address parts in helpers.get_address().'; -COMMENT ON COLUMN osm.building_point.osm_type IS 'Values: building, building_part, office or address. All but address described in osm_subtype. Value is address if addr:* tags exist with no other major keys to group it in a more specific layer. See address_only_building() in building.lua'; -COMMENT ON COLUMN osm.building_polygon.osm_type IS 'Values: building, building_part, office or address. All but address described in osm_subtype. Value is address if addr:* tags exist with no other major keys to group it in a more specific layer. See address_only_building() in building.lua'; +COMMENT ON COLUMN osm.building_point.osm_type IS 'Values: building, building_part, office or address. All but address described in osm_subtype. Value is address if addr:* tags exist with no other major keys to group it in a more specific layer. See address_only_building() in building_helpers.lua'; +COMMENT ON COLUMN osm.building_polygon.osm_type IS 'Values: building, building_part, office or address. All but address described in osm_subtype. Value is address if addr:* tags exist with no other major keys to group it in a more specific layer. See address_only_building() in building_helpers.lua'; COMMENT ON COLUMN osm.building_point.osm_subtype IS 'Further describes osm_type for building, building_part, and office.'; COMMENT ON COLUMN osm.building_polygon.osm_subtype IS 'Further describes osm_type for building, building_part, and office.';