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

Adds a column for the 2022 ntd ids #3364

Merged
merged 6 commits into from
Jun 4, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,14 @@ models:
description: |
The organization's ID in the National Transit Database / FTA agency ID number.
Data entry processes / sources of truth for this field have changed over time.
As of May 2023, the source is the `raw_ntd_id` field in the Airtable `organizations` table;
As of May 2023, the source is the `raw_ntd_id` field in the Airtable `organizations` table
which is derived from 2021 ntd ids;
for records before May 2023, sources were some combination of the `NTD agency info` table in
Airtable and the `ntd_agency_to_organizations` CSV seed file in this dbt project (now
renamed to `_deprecated__ntd_agency_to_organizations`).
- name: ntd_id_2022
description: |
Just pulls out the 5 digit component of the raw_ntd_id
- name: name
description: Organization name
- name: organization_type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ dim_organizations AS (
WHEN _valid_from >= '2023-05-23' THEN raw_ntd_id
ELSE ntd_to_org.ntd_id
END AS ntd_id,
IF(LENGTH(ntd_id) >= 10,
SUBSTR(ntd_id, -5),
ntd_id) AS ntd_id_2022,
public_currently_operating,
public_currently_operating_fixed_route,

_is_current,
_valid_from,
_valid_to
Expand Down
Loading