In the notebook 1.1-circles-to-many-noaa-stations-usa-weather-data, circles are dropped that do not have weather data.
Effectively, we go from 4585 unique lat long combinations in the input file to 3500 unique lat lon combinations in the output file.
note: unique lat lons calculated by:
df['lat'].astype(str) + df['lon'].astype(str)
That is a big drop in unique lat lons so i would like to know.
This data can be presented in a notebook or in the comments on this issue.
In the notebook 1.1-circles-to-many-noaa-stations-usa-weather-data, circles are dropped that do not have weather data.
Effectively, we go from 4585 unique lat long combinations in the input file to 3500 unique lat lon combinations in the output file.
note: unique lat lons calculated by:
That is a big drop in unique lat lons so i would like to know.
This data can be presented in a notebook or in the comments on this issue.