Skip to content

Instantly share code, notes, and snippets.

@gvangelatos
Created November 23, 2020 08:15
Show Gist options
  • Save gvangelatos/740b4a65434776ebc7a16aba410e191b to your computer and use it in GitHub Desktop.
Save gvangelatos/740b4a65434776ebc7a16aba410e191b to your computer and use it in GitHub Desktop.
!pip install meteostat
import tensorflow as tf
import seaborn as sns
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from meteostat import Stations, Hourly, Daily
stations = Stations(lat = 37.983810,lon = 23.727539) #here is there error thrown
station = stations.fetch(1)
data = Hourly(station, start = datetime(2020, 1, 22), end = datetime(2020, 11, 12))
data = data.fetch()
data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment