You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project use a web crawler to gather the data from https://eau.ec.gc.ca/.
Even the syntax is quite simple :
From the doc
The main interface is HydrometricDataInterface located in HydrometricData.py
fromHydrometricDataimportHydrometricDataInterfacewebStation=HydrometricDataInterface()
# getting station for the Quebec ProvincewebStation.getStationsForProvince('Quebec')
stationName="01BF004"# getting station infoprint(webStation.getStationInfo(stationName))
# getting station coordinates print(webStation.getStationCoordinates(stationName))
# getting station datawebStation.getHistoricalStation(stationName).getData()
print(webStation.getHistoricalStation(stationName).data)
No description provided.
The text was updated successfully, but these errors were encountered: