Skip to content

Instantly share code, notes, and snippets.

@afcotroneo
Created December 13, 2021 18:14
Show Gist options
  • Save afcotroneo/bfc0ac865c409393052560acf591a972 to your computer and use it in GitHub Desktop.
Save afcotroneo/bfc0ac865c409393052560acf591a972 to your computer and use it in GitHub Desktop.
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