-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #473 from USACE/feature/APRFC_projection
Feature/aprfc projection
- Loading branch information
Showing
5 changed files
with
48 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
-- add output_srid column to watershed table. this column will define what output | ||
-- projection the grids should be in. default as SHG EPSG 5070. | ||
ALTER TABLE watershed ADD COLUMN output_srid INTEGER DEFAULT 5070; | ||
|
||
--update alaska watersheds to output as EPSG 26906. | ||
UPDATE watershed | ||
SET output_srid = 26906 | ||
WHERE id = 'ba17efef-1edc-4c1e-8b70-8c2d27861ee1'; | ||
|
||
--update alaska watersheds to output as EPSG 26906. | ||
UPDATE watershed | ||
SET output_srid = 26906 | ||
WHERE id = 'afec9c31-60ee-4a8c-bc2b-d4427d037b45'; |