Daily
import apccapi
c = apccapi.Client()
c.retrieve(
{
'jobtype': 'NCEP1',
'dataset': 'NCEP1',
'timestep': 'DAILY',
'level': '[Level]',
'variable': '[Parameter]',
'year': '[YYYY]',
},
'[File name to save]'
)
| Level |
Parameter |
| other_gauss |
dswrf.ntat, ulwrf.ntat, uswrf.ntat |
| pressure |
air, hgt, omega, rhum, shum, uwnd, vwnd |
| surface |
pres.sfc, slp |
| surface_gauss |
air.2m, dlwrf.sfc, dswrf.sfc, lhtfl.sfc, prate.sfc, shtfl.sfc, shum.2m, tmax.2m, tmin.2m, ulwrf.sfc, uswrf.sfc, uwnd.10m, vwnd.10m |
import apccapi
c = apccapi.Client()
c.retrieve(
{
'jobtype': 'NCEP1',
'dataset': 'NCEP1',
'timestep': 'DAILY',
'level': 'pressure',
'variable': 'air',
'year': '2022',
},
'air.2022.nc'
)
Monthly
import apccapi
c = apccapi.Client()
c.retrieve(
{
'jobtype': 'NCEP1',
'dataset': 'NCEP1',
'timestep': 'MONTHLY',
'level': '[Level]',
'variable': '[Parameter]',
},
'[File name to save]'
)
| Level |
Parameter |
| other_gauss |
dswrf.ntat, ulwrf.ntat, uswrf.ntat |
| pressure |
air, hgt, omega, rhum, shum, uwnd, vwnd |
| surface |
pres.sfc, slp |
| surface_gauss |
air.2m, dlwrf.sfc, dswrf.sfc, lhtfl.sfc, prate.sfc, shtfl.sfc, shum.2m, tmax.2m, tmin.2m, ulwrf.sfc, uswrf.sfc, uwnd.10m, vwnd.10m |
import apccapi
c = apccapi.Client()
c.retrieve(
{
'jobtype': 'NCEP1',
'dataset': 'NCEP1',
'timestep': 'MONTHLY',
'level': 'pressure',
'variable': 'air',
},
'air.mon.mean.nc'
)