From 1a56613d4d4f0780c5b34636f627b6cc0222cd91 Mon Sep 17 00:00:00 2001 From: msweier Date: Thu, 23 Oct 2025 08:28:05 -0500 Subject: [PATCH 1/2] add new watershed LRE Great Lakes Watershed --- sql/common/V2.53.3__add_LRE_watershed.sql | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 sql/common/V2.53.3__add_LRE_watershed.sql diff --git a/sql/common/V2.53.3__add_LRE_watershed.sql b/sql/common/V2.53.3__add_LRE_watershed.sql new file mode 100644 index 00000000..9e253ed3 --- /dev/null +++ b/sql/common/V2.53.3__add_LRE_watershed.sql @@ -0,0 +1,23 @@ +--(xmin ymax, xmax ymax, xmax ymin, xmin ymin, xmin ymax) + +-- add new watershed LRE Great Lakes Watershed +INSERT INTO watershed (id, + slug, + "name", + geometry, + office_id, + output_srid) +VALUES + ('09c53d56-a2b7-4c62-a180-2b78b6834a63', + 'great-lakes', + 'Great Lakes', + ST_GeomFromText('Polygon (( + 147342 3257822, + 1833194 3257822, + 1833194 1890482, + 147342 1890482, + 147342 3257822))', + 5070), + '586ac79a-083e-4c8c-8438-9585a88a4b3d', + 5070); + From 06ec11641d0447207143aae41da0b2f1cda48480 Mon Sep 17 00:00:00 2001 From: msweier Date: Thu, 23 Oct 2025 08:28:14 -0500 Subject: [PATCH 2/2] swap LRE for LRC (watershed was reassigned) --- sql/common/V2.53.4__swap_winni_watershed_from_LRE_to_LRC.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sql/common/V2.53.4__swap_winni_watershed_from_LRE_to_LRC.sql diff --git a/sql/common/V2.53.4__swap_winni_watershed_from_LRE_to_LRC.sql b/sql/common/V2.53.4__swap_winni_watershed_from_LRE_to_LRC.sql new file mode 100644 index 00000000..a4832814 --- /dev/null +++ b/sql/common/V2.53.4__swap_winni_watershed_from_LRE_to_LRC.sql @@ -0,0 +1,2 @@ +-- swap LRE for LRC (watershed was reassigned) +UPDATE watershed SET office_id = 'fa9b344c-911c-43e9-966c-b0e1357e385c' WHERE slug = 'lake-winnebago';