From bfb5e0886d1058b7a6e2d91733d95b6f38bab54f Mon Sep 17 00:00:00 2001 From: Scott McCarty Date: Sun, 31 May 2026 17:30:06 -0400 Subject: [PATCH] feat: add Towpath/Bike & Hike Connector trail with OSM geometry Stitched from three OSM segments: Old Carriage Trail cycleway (way/86988795), Holzhauer Road (way/21431255), to the Bike & Hike Trail crossing (way/528186741). A steep, paved 1.3-mile route through CVNP connecting the Towpath Trail near Red Lock Trailhead to Summit Metro Parks' Bike & Hike Trail at Sagamore Hills. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../079_add_towpath_bikehike_connector.sql | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 backend/migrations/079_add_towpath_bikehike_connector.sql diff --git a/backend/migrations/079_add_towpath_bikehike_connector.sql b/backend/migrations/079_add_towpath_bikehike_connector.sql new file mode 100644 index 00000000..cda5ab40 --- /dev/null +++ b/backend/migrations/079_add_towpath_bikehike_connector.sql @@ -0,0 +1,30 @@ +-- Migration: 079_add_towpath_bikehike_connector.sql +-- Description: Add the Towpath/Bike & Hike Connector trail with OSM geometry. +-- Stitched from three OSM segments: Old Carriage Trail cycleway (way/86988795), +-- Holzhauer Road (way/21431255), to the Bike & Hike Trail crossing (way/528186741). +-- A steep, paved 1.3-mile route through CVNP connecting the Ohio & Erie Canal +-- Towpath Trail near Red Lock Trailhead to Summit Metro Parks' Bike & Hike Trail +-- at Holzhauer Road in Sagamore Hills. + +INSERT INTO pois ( + name, + brief_description, + poi_roles, + latitude, + longitude, + primary_activities, + geometry, + more_info_link +) +SELECT + 'Towpath/Bike & Hike Connector', + 'A steep, paved 1.3-mile connector route through Cuyahoga Valley National Park linking the Ohio & Erie Canal Towpath Trail (near Red Lock Trailhead) to Summit Metro Parks'' Bike & Hike Trail via the Old Carriage Trail and Holzhauer Road in Sagamore Hills.', + ARRAY['trail'], + 41.304, + -81.565, + 'Biking, Hiking', + '{"type":"LineString","coordinates":[[-81.5716252,41.2991796],[-81.571535,41.2991833],[-81.5711161,41.2991858],[-81.5708504,41.2993009],[-81.5708414,41.2993048],[-81.5705229,41.299462],[-81.5699026,41.2995572],[-81.5689519,41.2995885],[-81.5684345,41.2995198],[-81.5681008,41.2994479],[-81.5668583,41.2991453],[-81.5667228,41.2990787],[-81.5665287,41.2988987],[-81.5664256,41.2988232],[-81.5663845,41.2988085],[-81.5663423,41.2988011],[-81.5662976,41.298805],[-81.5662526,41.2988175],[-81.5662229,41.2988378],[-81.5661115,41.2989961],[-81.5659327,41.299231],[-81.5657544,41.2995197],[-81.5657025,41.2995967],[-81.5656425,41.2996404],[-81.565571,41.2996579],[-81.5653877,41.2996778],[-81.5652293,41.2996789],[-81.5651361,41.2996959],[-81.5643722,41.2999799],[-81.5642322,41.3000161],[-81.5638145,41.3000531],[-81.563601,41.300096],[-81.5633546,41.3002017],[-81.5631829,41.3003284],[-81.5630122,41.3004561],[-81.5623438,41.300752],[-81.5620489,41.3008956],[-81.5618426,41.3009577],[-81.5616726,41.3009925],[-81.5615006,41.3009991],[-81.5612549,41.3009422],[-81.5612004,41.3009162],[-81.5611166,41.3008866],[-81.5610349,41.3008724],[-81.5609448,41.3008707],[-81.560771,41.3008953],[-81.5606333,41.3009244],[-81.5599781,41.3011096],[-81.5595247,41.30115],[-81.5593426,41.301181],[-81.5591748,41.3012328],[-81.5591101,41.3012612],[-81.5590548,41.3013009],[-81.5590152,41.301355],[-81.558968,41.3015215],[-81.5589463,41.3015979],[-81.5588515,41.3016719],[-81.558837,41.301767],[-81.5588372,41.3017872],[-81.5588399,41.30205],[-81.558845,41.302553],[-81.5588445,41.3032687],[-81.5588433,41.3034849],[-81.558843,41.3036751],[-81.5588427,41.3038557],[-81.5588425,41.3039421],[-81.558842,41.304256],[-81.558841,41.304792],[-81.5588458,41.3055864],[-81.558847,41.30578],[-81.55886,41.306762],[-81.5588864,41.3085305],[-81.5588947,41.309083]]}'::jsonb, + 'https://www.nps.gov/cuva/planyourvisit/bicycling.htm' +WHERE NOT EXISTS ( + SELECT 1 FROM pois WHERE name = 'Towpath/Bike & Hike Connector' +);