-
Notifications
You must be signed in to change notification settings - Fork 4
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 #1601 from cityofaustin/19633-jc-eaz-layer
Create equity action zones layer
- Loading branch information
Showing
6 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
database/metadata/databases/default/tables/geo_equity_action_zones.yaml
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,3 @@ | ||
table: | ||
name: equity_action_zones | ||
schema: geo |
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
1 change: 1 addition & 0 deletions
1
database/migrations/default/1731432466891_create_equity_action_zones_layer/down.sql
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 @@ | ||
drop table "geo"."equity_action_zones"; |
13 changes: 13 additions & 0 deletions
13
database/migrations/default/1731432466891_create_equity_action_zones_layer/up.sql
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 @@ | ||
create table "geo"."equity_action_zones" ( | ||
geoid text primary key, | ||
indxd_v numeric, | ||
eaz_type text, | ||
geometry public.geometry (multipolygon, 4326) not null, | ||
created_at timestamptz default now() not null | ||
); | ||
|
||
create index on "geo"."equity_action_zones" using gist (geometry); | ||
|
||
comment on column geo.equity_action_zones.geoid is 'The US census geoid of the census tract that matches this feature'; | ||
comment on column geo.equity_action_zones.indxd_v is 'Vulnerability index on a scale of 0-100'; | ||
comment on column geo.equity_action_zones.eaz_type is 'Description of the level of vulnerability'; |
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