Created
December 13, 2021 18:14
-
-
Save afcotroneo/bfc0ac865c409393052560acf591a972 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
CREATE TABLE df_snow_geo as ( | |
SELECT | |
a.id, | |
a.dt, | |
a.element_, | |
a.value_, | |
b.latitude, | |
b.longitude, | |
b.elevation, | |
b.NAME | |
FROM | |
df_snow a | |
JOIN ghcnd_stations b | |
ON a.id = b.id | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment