Skip to content

Commit 9476020

Browse files
authored
Merge pull request #569 from USACE/develop
Add Great Lakes basin to LRE and swap Lake Winnibago basin from LRE to LRC
2 parents 6c8f298 + 88d5060 commit 9476020

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
--(xmin ymax, xmax ymax, xmax ymin, xmin ymin, xmin ymax)
2+
3+
-- add new watershed LRE Great Lakes Watershed
4+
INSERT INTO watershed (id,
5+
slug,
6+
"name",
7+
geometry,
8+
office_id,
9+
output_srid)
10+
VALUES
11+
('09c53d56-a2b7-4c62-a180-2b78b6834a63',
12+
'great-lakes',
13+
'Great Lakes',
14+
ST_GeomFromText('Polygon ((
15+
147342 3257822,
16+
1833194 3257822,
17+
1833194 1890482,
18+
147342 1890482,
19+
147342 3257822))',
20+
5070),
21+
'586ac79a-083e-4c8c-8438-9585a88a4b3d',
22+
5070);
23+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-- swap LRE for LRC (watershed was reassigned)
2+
UPDATE watershed SET office_id = 'fa9b344c-911c-43e9-966c-b0e1357e385c' WHERE slug = 'lake-winnebago';

0 commit comments

Comments
 (0)