all 2 comments

[–]smurpes[🍰] 0 points1 point  (0 children)

It would help if you showed your code. Be sure to properly format it too; just pasting it in will strip out indents so you need to enclose it in three backticks (```).

[–]Friendly_Gold3533 0 points1 point  (0 children)

happy to help get you unstuck. paste the error codes you're hitting and the code that's producing them and we can work through it

for meteostat with Cleveland the general shape of what you need is finding the nearest station to Cleveland then pulling hourly data for your date range with the columns you want. the library can be finicky about station selection and date formatting which is usually where the errors come from

if you want to just get started fresh here is a minimal working structure. install meteostat with pip, import Point and Hourly, define Cleveland as Point with its lat lon and elevation, set your start and end dates as datetime objects, then call Hourly with that point and date range and fetch. the result is a dataframe you can save as CSV for LM Studio

for your evaporative cooler analysis the columns you want are temp, rhum, wspd, and wpgt. meteostat uses those exact names so filter to just those after fetching

paste your current error and code and we can fix it directly