-
Notifications
You must be signed in to change notification settings - Fork 1
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 #480 from cagov/meta_data-duplicate_issue
Meta data duplicate issue
- Loading branch information
Showing
3 changed files
with
21 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
with station_config as ( | ||
select * from {{ ref('int_vds__station_config') }} | ||
), | ||
|
||
current_stations as ( | ||
select | ||
* exclude (_valid_from, _valid_to), | ||
st_makepoint(longitude, latitude) as geometry | ||
from station_config | ||
where _valid_to is null | ||
), | ||
|
||
current_stationsc as ( | ||
{{ get_county_name('current_stations') }} | ||
) | ||
|
||
select * from current_stationsc |
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