To get my feet wet here, I tried this one (as described here, I'm unable to comment there). The pasted code produced a local zip file, but the contained data files (csv) are all empty, except for their headers.
Example (surface-land_daily_2019-07-01_2019-07-01_global_csv-obs_32305738_r2.csv):
--- snip ---
observation_id,data_policy_licence,date_time,date_time_meaning,observation_duration,longitude,latitude,report_type,height_above_surface,observed_variable,units,observation_value,value_significance,platform_type,station_type,primary_station_id,station_name,quality_flag,source_id
--- snap ---
No content here. This also applies to other attempted selections of years, time periods, etc.. What am I doing wrong here?
Relevant Code (generated as described above) was:
c.retrieve(
'insitu-observations-surface-land',
{
'format': 'zip',
'time_aggregation': 'daily',
'variable': [
'accumulated_precipitation', 'air_temperature', 'fresh_snow',
'snow_depth', 'snow_water_equivalent', 'wind_from_direction',
'wind_speed',
],
'usage_restrictions': [
'restricted', 'unrestricted',
],
'data_quality': 'passed',
'month': '07',
'day': [
'01', '02', '03',
'04', '05', '06',
'07', '08', '09',
'10', '11', '12',
'13', '14', '15',
'16', '17', '18',
'19', '20', '21',
'22', '23', '24',
'25', '26', '27',
'28', '29', '30',
'31',
],
'year': '2019',
},
'../data/copernicus/download_2019.zip')