Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update vaccination_access table columns to facility_country_region_code #80

Merged
merged 2 commits into from Jun 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -20,7 +20,7 @@ resource "google_bigquery_table" "facility_boundary_us_all" {
dataset_id = "covid19_vaccination_access"
table_id = "facility_boundary_us_all"


description = "This table is formed by combining the data from the individual US tables of drive, transit and walk. It represents the boundaries of areas surrounding vaccination facilities from which people can reach the facility within certain duration. It is computed for 3 travel modes of drive, transit and walk and for predetermined time periods."

depends_on = [
google_bigquery_dataset.covid19_vaccination_access
Expand All @@ -40,7 +40,7 @@ resource "google_bigquery_table" "facility_boundary_us_drive" {
dataset_id = "covid19_vaccination_access"
table_id = "facility_boundary_us_drive"


description = "This table represents the boundaries of areas surrounding vaccination facilities from which people can reach the facility by driving within predetermined time periods."

depends_on = [
google_bigquery_dataset.covid19_vaccination_access
Expand All @@ -60,7 +60,7 @@ resource "google_bigquery_table" "facility_boundary_us_transit" {
dataset_id = "covid19_vaccination_access"
table_id = "facility_boundary_us_transit"


description = "This table represents the boundaries of areas surrounding vaccination facilities from which people can reach the facility by public transit within predetermined time periods."

depends_on = [
google_bigquery_dataset.covid19_vaccination_access
Expand All @@ -80,7 +80,7 @@ resource "google_bigquery_table" "facility_boundary_us_walk" {
dataset_id = "covid19_vaccination_access"
table_id = "facility_boundary_us_walk"


description = "This table represents the boundaries of areas surrounding vaccination facilities from which people can reach the facility by walking within predetermined time periods."

depends_on = [
google_bigquery_dataset.covid19_vaccination_access
Expand Down
Expand Up @@ -75,7 +75,7 @@ dag:
type: "STRING"
mode: "NULLABLE"
description: "The name of the country or region in English. For example, United States."
- name: "facility_country_code"
- name: "facility_country_region_code"
type: "STRING"
mode: "NULLABLE"
description: "The ISO 3166-1 code for the country or region. For example, US."
Expand Down Expand Up @@ -147,7 +147,7 @@ dag:
type: "STRING"
mode: "NULLABLE"
description: "The name of the country or region in English. For example, United States."
- name: "facility_country_code"
- name: "facility_country_region_code"
type: "STRING"
mode: "NULLABLE"
description: "The ISO 3166-1 code for the country or region. For example, US."
Expand Down Expand Up @@ -219,7 +219,7 @@ dag:
type: "STRING"
mode: "NULLABLE"
description: "The name of the country or region in English. For example, United States."
- name: "facility_country_code"
- name: "facility_country_region_code"
type: "STRING"
mode: "NULLABLE"
description: "The ISO 3166-1 code for the country or region. For example, US."
Expand Down Expand Up @@ -292,7 +292,7 @@ dag:
type: "STRING"
mode: "NULLABLE"
description: "The name of the country or region in English. For example, United States."
- name: "facility_country_code"
- name: "facility_country_region_code"
type: "STRING"
mode: "NULLABLE"
description: "The ISO 3166-1 code for the country or region. For example, US."
Expand Down
Expand Up @@ -81,7 +81,7 @@
"description": "The name of the country or region in English. For example, United States.",
},
{
"name": "facility_country_code",
"name": "facility_country_region_code",
"type": "STRING",
"mode": "NULLABLE",
"description": "The ISO 3166-1 code for the country or region. For example, US.",
Expand Down Expand Up @@ -186,7 +186,7 @@
"description": "The name of the country or region in English. For example, United States.",
},
{
"name": "facility_country_code",
"name": "facility_country_region_code",
"type": "STRING",
"mode": "NULLABLE",
"description": "The ISO 3166-1 code for the country or region. For example, US.",
Expand Down Expand Up @@ -291,7 +291,7 @@
"description": "The name of the country or region in English. For example, United States.",
},
{
"name": "facility_country_code",
"name": "facility_country_region_code",
"type": "STRING",
"mode": "NULLABLE",
"description": "The ISO 3166-1 code for the country or region. For example, US.",
Expand Down Expand Up @@ -396,7 +396,7 @@
"description": "The name of the country or region in English. For example, United States.",
},
{
"name": "facility_country_code",
"name": "facility_country_region_code",
"type": "STRING",
"mode": "NULLABLE",
"description": "The ISO 3166-1 code for the country or region. For example, US.",
Expand Down