Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
print("filename = {}".format(filename_grads))
except Exception as e:
print("Failed, the exception is {}".format(e))
print("\ngrads timeseries:")
try:
api.query_grads_timeseries(prefixpath_grads_ts, startdate_grads_ts, enddate_grads_ts, interval_grads_ts,
parameters_grads_ts, lat_N, lon_W, lat_S, lon_E, res_lat, res_lon, username,
password, model=model_grads_ts, area=area_grads_ts)
print("prefix = {}".format(prefixpath_grads_ts))
except Exception as e:
print("Failed, the exception is {}".format(e))
print("\nfind stations:")
try:
met = api.query_station_list(username, password, startdate=startdate_station_ts, enddate=enddate_station_ts,
parameters=parameters_station_ts)
print(met.head())
except Exception as e:
print("Failed, the exception is {}".format(e))
print("\nstation coordinates timeseries:")
try:
df_sd_coord = api.query_station_timeseries(startdate_station_ts, enddate_station_ts, interval_station_ts,
parameters_station_ts, username, password,
model=model_station_ts,
latlon_tuple_list=coordinates_station_ts,
on_invalid='fill_with_invalid', request_type="POST",
temporal_interpolation='none')
print(df_sd_coord.head())
except Exception as e:
print("Failed, the exception is {}".format(e))