0

I am wondering if it is possible to specify the time range for past data in GFS, NAM, RAP, HRRR, and the NDFD forecasting models! the current option is recalling data for the present daya as stated here

`start = pd.Timestamp(datetime.date.today(), tz=tz)`
    end = start + pd.Timedelta(days=7) 
Naj_m_Om
  • 33
  • 6

1 Answers1

0

The source code for the model.get_data() function indicates yes. The only stipulation is that the start and end arguments must be datetime or timestamp datatypes to be compatible with the netcdf2pandas library

gavin
  • 31
  • 4