From m.morichetti at pm.univpm.it Fri Mar 3 11:03:06 2023 From: m.morichetti at pm.univpm.it (MORICHETTI MAURO) Date: Fri, 3 Mar 2023 18:03:06 +0000 Subject: [ncl-talk] Monthly average from csv file Message-ID: Hi all, are there any chances to do a monthly average from hourly values csv file? I have different files with the hourly values of temperature, wind-speed and relative humidity. I would like to calculate the monthly values, so I was thinking if there is a function in order to use the date reported in the file as coordinate for the meteorological values. Attached part of the script and one some files as example. If you need more information, ask me thanks. Mauro -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: TEST.zip Type: application/zip Size: 375860 bytes Desc: TEST.zip URL: From shea at ucar.edu Fri Mar 3 19:04:07 2023 From: shea at ucar.edu (Dennis Shea) Date: Fri, 3 Mar 2023 19:04:07 -0700 Subject: [ncl-talk] Monthly average from csv file In-Reply-To: References: Message-ID: ***Untested*** [1] Read the csv file and extract the year, month,day,hour,value into one-dimensional arrays: year(*),...val_units(*),val(*) Since each line in the csv file has integer, text and float values, it is best to read the values as strings and convert. ncol = 6 data = *readAsciiTable* ("....", ncol, "string", 1) yyyy = *toint* (data(:,0)) mm = toint(data(:,1)) : val_unit = data(:,4) ; string values val = *tofloat* (data(:,5)) ; create required minute and second arrays nval = dimsizes(val) mn = *new* (nval,integer) sc = new (nval,integer) mn = 0 sc = 0 [2] Use *cd_inv_calendar* ; time units are arbitrary tunits = "hours since 2000-01-01 00:00:00" ; "seconds/hours/days since ...." time = *cd_inv_calendar*(yyyy,mm,dd,hh,mn,sc,tunits, 0) time!0 = "time" *printVarSummary* (time) ; print(time) val!0= "time" val at units = val_unit(0) ; assign scalar descriptor val&time = time *printVarSummary* (val) ; calculate monthly mean values val_month = *calculate_monthly_values* (val, "avg", 0, False) printVarSummary(val_month) *printMinMax* (val_month, 1) On Fri, Mar 3, 2023 at 11:03?AM MORICHETTI MAURO via ncl-talk < ncl-talk at mailman.ucar.edu> wrote: > Hi all, > > > > are there any chances to do a monthly average from hourly values csv file? > > > > > I have different files with the hourly values of temperature, wind-speed > and relative humidity. I would like to calculate the monthly values, so I > was thinking if there is a function in order to use the date reported in > the file as coordinate for the meteorological values. > > > > Attached part of the script and one some files as example. > > > > If you need more information, ask me thanks. > > > > Mauro > > _______________________________________________ > ncl-talk mailing list > ncl-talk at mailman.ucar.edu > List instructions, subscriber options, unsubscribe: > https://mailman.ucar.edu/mailman/listinfo/ncl-talk > -------------- next part -------------- An HTML attachment was scrubbed... URL: From xi.chang01 at gmail.com Mon Mar 6 02:06:04 2023 From: xi.chang01 at gmail.com (Xi Chang) Date: Mon, 6 Mar 2023 01:06:04 -0800 Subject: [ncl-talk] get first index of each sequence In-Reply-To: References: Message-ID: Thanks a lot Dave. Would you please suggest me hot get the first index of each sequence without any missing values in between. For example, i would like to get the first index of each sequence marked by flags: x= (/1,1,1,5,5,5,5,31,31/) Results will be: 0, 3, and 7 Thank you! Chang, On Mon, Feb 6, 2023 at 17:01 Dave Allured - NOAA Affiliate < dave.allured at noaa.gov> wrote: > When analyzing sequences, it is often useful to compare adjacent elements > by using a vector shifted by one position. Then find an expression that is > true in the positions of interest, and false everywhere else. > > status = .not. ismissing (x) > nx = dimsizes (x) > previous = new (nx, logical) > previous(0) = False ; need this to get correct answer for first > position > previous(1:nx-1) = status(0:nx-2) ; vector shifted one position > to the right > change = status(:) .and. .not. previous(:) ; all places that > changed from missing to not > istarts = ind (change) > > print (istarts+"") > (0) 4 > (1) 12 > (2) 16 > > > On Mon, Feb 6, 2023 at 7:18 PM Xi Chang via ncl-talk < > ncl-talk at mailman.ucar.edu> wrote: > >> Hi NCL community, >> >> Is there anyone who can help me on how to return the first index of each >> sequence in 1D data? >> For example, >> >> x = (/-999,-999,-999,-999,1,1,1,1,1,-999,-999,-999,1,1,1,-999,1,1,1/) >> x at _FillValue=-999 >> >> There are 3 sequences of data in that 1D time series, how could I get the >> first index of each sequence, so that the answer would be: >> >> (0) 4 >> (1) 12 >> (2) 16 >> >> Thanks >> Chang >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dave.allured at noaa.gov Mon Mar 6 08:05:29 2023 From: dave.allured at noaa.gov (Dave Allured - NOAA Affiliate) Date: Mon, 6 Mar 2023 08:05:29 -0700 Subject: [ncl-talk] get first index of each sequence In-Reply-To: References: Message-ID: Chang, use the same general approach. In this case, compare x(n-1) to x(n), and remember the positions where the value changed. The essential logic is in the single line "change =". x = (/1,1,1,5,5,5,5,31,31/) nx = dimsizes (x) previous = new (nx, typeof (x)) previous(0) = x(0) - 1 ; need this to get correct answer for first position previous(1:nx-1) = x(0:nx-2) ; vector shifted one position to the right change = (x(:) .ne. previous(:)) ; all places that changed value istarts = ind (change) print (istarts+"") (0) 0 (1) 3 (2) 7 On Mon, Mar 6, 2023 at 2:06?AM Xi Chang wrote: > Thanks a lot Dave. Would you please suggest me hot get the first index of > each sequence without any missing values in between. For example, i would > like to get the first index of each sequence marked by flags: > > x= (/1,1,1,5,5,5,5,31,31/) > > Results will be: 0, 3, and 7 > > Thank you! > Chang, > > > On Mon, Feb 6, 2023 at 17:01 Dave Allured - NOAA Affiliate < > dave.allured at noaa.gov> wrote: > >> When analyzing sequences, it is often useful to compare adjacent elements >> by using a vector shifted by one position. Then find an expression that is >> true in the positions of interest, and false everywhere else. >> >> status = .not. ismissing (x) >> nx = dimsizes (x) >> previous = new (nx, logical) >> previous(0) = False ; need this to get correct answer for first >> position >> previous(1:nx-1) = status(0:nx-2) ; vector shifted one position >> to the right >> change = status(:) .and. .not. previous(:) ; all places that >> changed from missing to not >> istarts = ind (change) >> >> print (istarts+"") >> (0) 4 >> (1) 12 >> (2) 16 >> >> >> On Mon, Feb 6, 2023 at 7:18 PM Xi Chang via ncl-talk < >> ncl-talk at mailman.ucar.edu> wrote: >> >>> Hi NCL community, >>> >>> Is there anyone who can help me on how to return the first index of each >>> sequence in 1D data? >>> For example, >>> >>> x = (/-999,-999,-999,-999,1,1,1,1,1,-999,-999,-999,1,1,1,-999,1,1,1/) >>> x at _FillValue=-999 >>> >>> There are 3 sequences of data in that 1D time series, how could I get >>> the first index of each sequence, so that the answer would be: >>> >>> (0) 4 >>> (1) 12 >>> (2) 16 >>> >>> Thanks >>> Chang >>> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From debasish.hazra5 at gmail.com Thu Mar 9 09:36:29 2023 From: debasish.hazra5 at gmail.com (Debasish Hazra) Date: Thu, 9 Mar 2023 11:36:29 -0500 Subject: [ncl-talk] Error when plotting rot lat/lon Message-ID: Hi, I am trying to plot a variable from model grib2 output which is rotated grid following this example : https://www.ncl.ucar.edu/Applications/Scripts/rotatedltln_1.ncl Attached is ncl_filedump of the file. Following the example, when I am trying to plot it shows following error : warning:Attempt to reference attribute (Longitude_of_southern_pole) which is undefined warning:Attempt to reference attribute (Latitude_of_southern_pole) which is undefined (0) gsn_csm_map_ce: Fatal: The resources mpMinLatF/mpLeftCornerLatF must be less than the resources mpMaxLatF/mpRightCornerF. (0) Execution halted. For plotting resource using the following : res = True res at gsnDraw = False res at gsnFrame = False res at gsnAddCyclic = False res at cnFillOn = True ; color fill res at cnLinesOn = False ; no contour lines res at cnLineLabelsOn = False ; no contour labels res at cnInfoLabelOn = False ; no contour info label res at gsnStringFontHeightF = 0.018 res at mpDataBaseVersion = "MediumRes" ; better map outlines res at pmTickMarkDisplayMode = "Always" ; turn on tickmarks ; res at tiMainString = "Native Lambert Conformal Grid" res at tiMainFontHeightF = 0.014 ; smaller title res at tiMainOffsetYF = -0.005 ; move title down res at gsnMaximize = True ; enlarge image res at lbLabelBarOn = False res at mpOutlineBoundarySets = "GeophysicalAndUSStates" res at mpOutlineDrawOrder = "PostDraw" res at tfDoNDCOverlay = True res at mpLimitMode = "Corners" ; choose region of map res at mpLeftCornerLatF = lat2d(nlat-1,0) res at mpLeftCornerLonF = lon2d(nlat-1,0) res at mpRightCornerLatF = lat2d(0,nlon-1) res at mpRightCornerLonF = lon2d(0,nlon-1) ;res at mpCenterLonF = lon2d at Longitude_of_southern_pole ;res at mpCenterLatF = lon2d at Latitude_of_southern_pole + 90 Any help on what needs to be done. Thanks Debasish -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- Copyright (C) 1995-2019 - All Rights Reserved University Corporation for Atmospheric Research NCAR Command Language Version 6.6.2 The use of this software is governed by a License Agreement. See http://www.ncl.ucar.edu/ for more details. Variable: f Type: file filename: Testout.t17z.bgdawpf000.tm00 path: ../../Testout.t17z.bgdawpf000.tm00.grib2 file global attributes: dimensions: ygrid_0 = 1059 xgrid_0 = 1799 lv_ISBL0 = 45 lv_AMSL1 = 10 lv_HTGL2 = 5 lv_SIGL3 = 5 lv_HYBL4 = 2 lv_SPDL5 = 6 lv_HTGL6 = 6 lv_HTGL7 = 5 lv_ISBL8 = 2 lv_SPDL9 = 3 lv_ISBL10 = 10 lv_HTGL11 = 4 lv_SPDL12 = 3 lv_HTGL13 = 2 lv_HTGL14 = 2 lv_DBLL15 = 9 lv_HTGL16 = 2 lv_HTGL17 = 2 variables: float TMP_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 0 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TMP_P0_L3_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 0 ) level_type : Level of cloud tops level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TMP_P0_L7_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 0 ) level_type : Tropopause level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TMP_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 0 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TMP_P0_L102_GLC0 ( lv_AMSL1, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 0 ) level_type : Specific altitude above mean sea level (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TMP_P0_L103_GLC0 ( lv_HTGL2, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 0 ) level_type : Specified height level above ground (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TMP_P0_L104_GLC0 ( lv_SIGL3, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 0 ) level_type : Sigma level (sigma value) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TMP_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 0 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TMP_P0_2L108_GLC0 ( lv_SPDL5, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 0 ) level_type : Level at specified pressure difference from ground to level (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float POT_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Potential temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 2 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float POT_P0_L7_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Potential temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 2 ) level_type : Tropopause level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float POT_P0_L103_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Potential temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 2 ) level_type : Specified height level above ground (m) level : 10 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float POT_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Potential temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 2 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float POT_P0_2L108_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Potential temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 2 ) level_type : Level at specified pressure difference from ground to level (Pa) level : ( 3000, 0 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float DPT_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Dew point temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 6 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float DPT_P0_L103_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Dew point temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 6 ) level_type : Specified height level above ground (m) level : 2 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float DPT_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Dew point temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 6 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float DPT_P0_2L108_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Dew point temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 6 ) level_type : Level at specified pressure difference from ground to level (Pa) level : ( 3000, 0 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float LHTFL_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Latent heat net flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 10 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SHTFL_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Sensible heat net flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 11 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VAR_0_0_205_P0_L247_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : unknown variable name units : unknown _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 0, 0, 0, 205 ) level_type : Equilibrium level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SPFH_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Specific humidity units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 0 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SPFH_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Specific humidity units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 0 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SPFH_P0_L102_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Specific humidity units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 0 ) level_type : Specific altitude above mean sea level (m) level : 305 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SPFH_P0_L103_GLC0 ( lv_HTGL6, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Specific humidity units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 0 ) level_type : Specified height level above ground (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SPFH_P0_L105_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Specific humidity units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 0 ) level_type : Hybrid level level : 1 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SPFH_P0_2L108_GLC0 ( lv_SPDL5, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Specific humidity units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 0 ) level_type : Level at specified pressure difference from ground to level (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RH_P0_L4_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Relative humidity units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 1 ) level_type : Level of 0o C isotherm level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RH_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Relative humidity units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 1 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RH_P0_L103_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Relative humidity units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 1 ) level_type : Specified height level above ground (m) level : 2 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RH_P0_L105_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Relative humidity units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 1 ) level_type : Hybrid level level : 1 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RH_P0_2L108_GLC0 ( lv_SPDL5, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Relative humidity units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 1 ) level_type : Level at specified pressure difference from ground to level (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PWAT_P0_2L108_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Precipitable water units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 3 ) level_type : Level at specified pressure difference from ground to level (Pa) level : ( 3000, 0 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PWAT_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Precipitable water units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 3 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRATE_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Precipitation rate units : kg m-2 s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 7 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SNOD_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Snow depth units : m _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 11 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float WEASD_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Water equivalent of accumulated snow depth units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 13 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CLWMR_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Cloud mixing ratio units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 22 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CLWMR_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Cloud mixing ratio units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 22 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ICMR_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Ice water mixing ratio units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 23 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ICMR_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Ice water mixing ratio units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 23 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RWMR_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Rain mixing ratio units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 24 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RWMR_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Rain mixing ratio units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 24 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SNMR_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Snow mixing ratio units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 25 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SNMR_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Snow mixing ratio units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 25 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float GRLE_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Graupel units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 32 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float GRLE_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Graupel units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 32 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCOLG_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total column integrated graupel units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 74 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CRAIN_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Categorical rain (yes=1; no=0) units : non-dim _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 192 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CFRZR_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Categorical freezing rain (yes=1; no=0) units : non-dim _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 193 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CICEP_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Categorical ice pellets (yes=1; no=0) units : non-dim _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 194 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CSNOW_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Categorical snow (yes=1; no=0) units : non-dim _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 195 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SNOWC_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Snow cover units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 201 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RIME_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Rime factor units : non-dim _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 203 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCOLR_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total column integrated rain units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 204 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCOLS_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total column integrated snow units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 205 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCLSW_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total column-integrated supercooled liquid water units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 209 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCOLM_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total column-integrated melting ice units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 0, 0, 1, 210 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float UGRD_P0_L6_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : U-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 2 ) level_type : Maximum wind level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float UGRD_P0_L7_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : U-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 2 ) level_type : Tropopause level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float UGRD_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : U-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 2 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float UGRD_P0_L102_GLC0 ( lv_AMSL1, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : U-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 2 ) level_type : Specific altitude above mean sea level (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float UGRD_P0_L103_GLC0 ( lv_HTGL7, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : U-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 2 ) level_type : Specified height level above ground (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float UGRD_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : U-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 2 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float UGRD_P0_2L108_GLC0 ( lv_SPDL5, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : U-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 2 ) level_type : Level at specified pressure difference from ground to level (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float UGRD_P0_L220_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : U-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 2 ) level_type : Planetary boundary layer level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VGRD_P0_L6_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : V-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 3 ) level_type : Maximum wind level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VGRD_P0_L7_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : V-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 3 ) level_type : Tropopause level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VGRD_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : V-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 3 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VGRD_P0_L102_GLC0 ( lv_AMSL1, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : V-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 3 ) level_type : Specific altitude above mean sea level (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VGRD_P0_L103_GLC0 ( lv_HTGL7, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : V-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 3 ) level_type : Specified height level above ground (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VGRD_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : V-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 3 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VGRD_P0_2L108_GLC0 ( lv_SPDL5, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : V-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 3 ) level_type : Level at specified pressure difference from ground to level (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VGRD_P0_L220_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : V-component of wind units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 3 ) level_type : Planetary boundary layer level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float STRM_P0_L100_GLC0 ( lv_ISBL8, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Stream function units : m2 s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 4 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VVEL_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vertical velocity (pressure) units : Pa s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 8 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VVEL_P0_L105_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vertical velocity (pressure) units : Pa s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 8 ) level_type : Hybrid level level : 1 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VVEL_P0_2L108_GLC0 ( lv_SPDL9, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vertical velocity (pressure) units : Pa s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 8 ) level_type : Level at specified pressure difference from ground to level (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float DZDT_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vertical velocity (geometric) units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 9 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float DZDT_P0_L105_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vertical velocity (geometric) units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 9 ) level_type : Hybrid level level : 1 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ABSV_P0_L100_GLC0 ( lv_ISBL10, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Absolute vorticity units : s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 10 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VUCSH_P0_2L103_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vertical u-component of shear units : s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 15 ) level_type : Specified height level above ground (m) level : ( 0, 6000 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VVCSH_P0_2L103_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vertical v-component of shear units : s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 16 ) level_type : Specified height level above ground (m) level : ( 0, 6000 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float UFLX_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Momentum flux, u-component units : N m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 17 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VFLX_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Momentum flux, v-component units : N m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 18 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float GUST_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Wind speed (gust) units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 22 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VWSH_P0_L7_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vertical speed shear units : s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 192 ) level_type : Tropopause level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float USTM_P0_2L103_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : U-component storm motion units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 194 ) level_type : Specified height level above ground (m) level : ( 6000, 0 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VSTM_P0_2L103_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : V-component storm motion units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 195 ) level_type : Specified height level above ground (m) level : ( 6000, 0 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CD_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Drag coefficient units : non-dim _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 196 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float FRICV_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Frictional velocity units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 197 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VRATE_P0_L220_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Ventilation rate units : m2 s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 0, 0, 2, 224 ) level_type : Planetary boundary layer level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L2_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Cloud base level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L3_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Level of cloud tops level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L5_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Level of adiabatic condensation lifted from the surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L6_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Maximum wind level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L7_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Tropopause level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L8_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Nominal top of the atmosphere level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L103_GLC0 ( lv_HTGL11, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Specified height level above ground (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_2L108_GLC0 ( lv_SPDL5, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Level at specified pressure difference from ground to level (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L206_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Grid scale cloud bottom level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRES_P0_L207_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 0 ) level_type : Grid scale cloud top level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L2_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Cloud base level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L3_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Level of cloud tops level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L4_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Level of 0o C isotherm level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L5_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Level of adiabatic condensation lifted from the surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L6_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Maximum wind level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L7_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Tropopause level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L100_GLC0 ( lv_ISBL0, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Isobaric surface (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L204_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Highest tropospheric freezing level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L215_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Cloud ceiling level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L220_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Planetary boundary layer level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L245_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Lowest level of the wet bulb zero level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L253_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Lowest bottom level of supercooled liquid water layer level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HGT_P0_L254_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Geopotential height units : gpm _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 5 ) level_type : Highest top level of supercooled liquid water layer level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MSLET_P0_L101_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : MSLP (ETA model reduction) units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 192 ) level_type : Mean sea level (Pa) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HPBL_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Planetary boundary layer height units : m _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 196 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PLPL_P0_2L108_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Pressure of level from which parcel was lifted units : Pa _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Mass parameter_template_discipline_category_number : ( 0, 0, 3, 200 ) level_type : Level at specified pressure difference from ground to level (Pa) level : ( 25500, 0 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float BRTMP_P0_L8_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Brightness temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Short wave radiation parameter_template_discipline_category_number : ( 0, 0, 4, 4 ) level_type : Nominal top of the atmosphere level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float DSWRF_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Downward short-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Short wave radiation parameter_template_discipline_category_number : ( 0, 0, 4, 192 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float USWRF_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Upward short-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Short wave radiation parameter_template_discipline_category_number : ( 0, 0, 4, 193 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CSDSF_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Clear sky downward solar flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Short wave radiation parameter_template_discipline_category_number : ( 0, 0, 4, 196 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SWHR_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Solar radiative heating rate units : K s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Short wave radiation parameter_template_discipline_category_number : ( 0, 0, 4, 197 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float DLWRF_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Downward long-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Long wave radiation parameter_template_discipline_category_number : ( 0, 0, 5, 192 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ULWRF_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Upward long-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Long wave radiation parameter_template_discipline_category_number : ( 0, 0, 5, 193 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ULWRF_P0_L8_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Upward long-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Long wave radiation parameter_template_discipline_category_number : ( 0, 0, 5, 193 ) level_type : Nominal top of the atmosphere level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float LWHR_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Long-wave radiative heating rate units : K s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Long wave radiation parameter_template_discipline_category_number : ( 0, 0, 5, 194 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCDC_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total cloud cover units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 1 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCDC_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total cloud cover units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 1 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float LCDC_P0_L214_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Low cloud cover units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 3 ) level_type : Low cloud layer level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MCDC_P0_L224_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Medium cloud cover units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 4 ) level_type : Middle cloud layer level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HCDC_P0_L234_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : High cloud cover units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 5 ) level_type : High cloud layer level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CEIL_P0_L2_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Ceiling units : m _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 13 ) level_type : Cloud base level level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CEIL_P0_L215_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Ceiling units : m _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 13 ) level_type : Cloud ceiling level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCOND_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total condensate units : kg kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 195 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCOLW_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total column-integrated cloud water units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 196 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCOLI_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total column-integrated cloud ice units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 197 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCOLC_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total column-integrated condensate units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 0, 0, 6, 198 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PLI_P0_2L108_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Parcel lifted index (to 500 hpa) units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 0, 0, 7, 0 ) level_type : Level at specified pressure difference from ground to level (Pa) level : ( 3000, 0 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CAPE_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Convective available potential energy units : J kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 0, 0, 7, 6 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CAPE_P0_2L108_GLC0 ( lv_SPDL12, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Convective available potential energy units : J kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 0, 0, 7, 6 ) level_type : Level at specified pressure difference from ground to level (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CIN_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Convective inhibition units : J kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 0, 0, 7, 7 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CIN_P0_2L108_GLC0 ( lv_SPDL12, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Convective inhibition units : J kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 0, 0, 7, 7 ) level_type : Level at specified pressure difference from ground to level (Pa) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HLCY_P0_2L103_GLC0 ( lv_HTGL13, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Storm relative helicity units : m2 s-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 0, 0, 7, 8 ) level_type : Specified height level above ground (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float LFTX_P0_2L100_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Surface lifted index units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 0, 0, 7, 192 ) level_type : Isobaric surface (Pa) level : ( 50000, 100000 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float 4LFTX_P0_2L108_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Best (4 layer) lifted index units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 0, 0, 7, 193 ) level_type : Level at specified pressure difference from ground to level (Pa) level : ( 18000, 0 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float UPHL_P0_2L103_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Updraft helicity units : m2 s-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 0, 0, 7, 197 ) level_type : Specified height level above ground (m) level : ( 5000, 2000 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VIL_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vertically-integrated liquid water units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Radar parameter_template_discipline_category_number : ( 0, 0, 15, 3 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float REFZR_P0_L103_GLC0 ( lv_HTGL14, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Equivalent radar reflectivity factor for rain units : mm6 m-3 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 0, 0, 16, 192 ) level_type : Specified height level above ground (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float REFZR_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Equivalent radar reflectivity factor for rain units : mm6 m-3 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 0, 0, 16, 192 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float REFZI_P0_L103_GLC0 ( lv_HTGL14, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Equivalent radar reflectivity factor for snow units : mm6 m-3 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 0, 0, 16, 193 ) level_type : Specified height level above ground (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float REFZI_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Equivalent radar reflectivity factor for snow units : mm6 m-3 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 0, 0, 16, 193 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float REFD_P0_L20_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Reflectivity units : dB _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 0, 0, 16, 195 ) level_type : Isothermal level (K) level : 263 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float REFD_P0_L103_GLC0 ( lv_HTGL14, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Reflectivity units : dB _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 0, 0, 16, 195 ) level_type : Specified height level above ground (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float REFD_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Reflectivity units : dB _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 0, 0, 16, 195 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float REFC_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Composite reflectivity units : dB _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 0, 0, 16, 196 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RETOP_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Echo top units : m _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 0, 0, 16, 197 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float LTNG_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Lightning units : non-dim _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Electrodynamics parameter_template_discipline_category_number : ( 0, 0, 17, 192 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VIS_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Visibility units : m _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Physical atmospheric properties parameter_template_discipline_category_number : ( 0, 0, 19, 0 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ALBDO_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Albedo units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Physical atmospheric properties parameter_template_discipline_category_number : ( 0, 0, 19, 1 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TKE_P0_L105_GLC0 ( lv_HYBL4, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Turbulent kinetic energy units : J kg-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Physical atmospheric properties parameter_template_discipline_category_number : ( 0, 0, 19, 11 ) level_type : Hybrid level forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PBLREG_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Planetary boundary layer regime units : Code Table 4.209 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Physical atmospheric properties parameter_template_discipline_category_number : ( 0, 0, 19, 12 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VAR_0_19_35_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : unknown variable name units : unknown _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Physical atmospheric properties parameter_template_discipline_category_number : ( 0, 0, 19, 35 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MXSALB_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Maximum snow albedo units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Physical atmospheric properties parameter_template_discipline_category_number : ( 0, 0, 19, 192 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SNFALB_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Snow-free albedo units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Physical atmospheric properties parameter_template_discipline_category_number : ( 0, 0, 19, 193 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float AOTK_P0_L200_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Aerosol optical thickness units : Numeric _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Atmospheric chemical constituents parameter_template_discipline_category_number : ( 0, 0, 20, 102 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float NLAT_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Latitude (-90 to 90) units : deg _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Miscellaneous parameter_template_discipline_category_number : ( 0, 0, 191, 192 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ELON_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : East longitude (0 to 360) units : deg _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Miscellaneous parameter_template_discipline_category_number : ( 0, 0, 191, 193 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CPOFP_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Probability of frozen precipitation units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Hydrological products, Hydrology probabilities parameter_template_discipline_category_number : ( 0, 1, 1, 193 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float LAND_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Land cover (1=land, 0=sea) units : Proportion _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 0 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SFCR_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Surface roughness units : m _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 1 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TSOIL_P0_2L106_GLC0 ( lv_DBLL15, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Soil temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 2 ) level_type : Depth below land surface (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VEG_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vegetation units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 4 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SOILW_P0_2L106_GLC0 ( lv_DBLL15, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Volumetric soil moisture content units : Fraction _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 192 ) level_type : Depth below land surface (m) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float GFLUX_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Ground heat flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 193 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MSTAV_P0_2L106_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Moisture availability units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 194 ) level_type : Depth below land surface (m) level : ( 0, 1 ) forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SFEXC_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Exchange coefficient units : (kg m-3) (m s-1) _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 195 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CNWAT_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Plant canopy surface water units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 196 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float BMIXL_P0_L105_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Blackadar's mixing length scale units : m _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 197 ) level_type : Hybrid level level : 1 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VGTYP_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Vegetation type units : Integer (0-13) _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 0, 2, 0, 198 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SOTYP_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Soil type units : Code Table 4.213 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Soil products parameter_template_discipline_category_number : ( 0, 2, 3, 0 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SMDRY_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Direct evaporation cease (soil moisture) units : Proportion _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Soil products parameter_template_discipline_category_number : ( 0, 2, 3, 196 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float POROS_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Soil porosity units : Proportion _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Soil products parameter_template_discipline_category_number : ( 0, 2, 3, 197 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float HINDEX_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Haines index units : Numeric _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Fire weather products parameter_template_discipline_category_number : ( 0, 2, 4, 2 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float FWINX_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Fire weather index (Canadian Forest Service) units : Numeric _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Fire weather products parameter_template_discipline_category_number : ( 0, 2, 4, 5 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ICEC_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Ice cover units : Proportion _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Oceanographic products, Ice parameter_template_discipline_category_number : ( 0, 10, 2, 0 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float WTMP_P0_L1_GLC0 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Water temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Oceanographic products, Surface properties parameter_template_discipline_category_number : ( 0, 10, 3, 0 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TMAX_P8_L103_GLC0_max ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Maximum temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 8, 0, 0, 4 ) level_type : Specified height level above ground (m) level : 2 type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TMIN_P8_L103_GLC0_min ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Minimum temperature units : K _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 8, 0, 0, 5 ) level_type : Specified height level above ground (m) level : 2 type_of_statistical_processing : Minimum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float LHTFL_P8_L1_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Latent heat net flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 8, 0, 0, 10 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SHTFL_P8_L1_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Sensible heat net flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 8, 0, 0, 11 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SNOHF_P8_L1_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Snow phase change heat flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 8, 0, 0, 192 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float LRGHR_P8_L200_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Large scale condensate heating rate units : K s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Temperature parameter_template_discipline_category_number : ( 8, 0, 0, 195 ) level_type : Entire atmosphere (considered as a single layer) level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float EVP_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Evaporation units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 6 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PRATE_P8_L1_GLC0_max1h ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Precipitation rate units : kg m-2 s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 7 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Maximum statistical_process_duration : 1 hours (ending at forecast time) forecast_time : -2147483646 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float APCP_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total precipitation units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 8 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float NCPCP_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Large-scale precipitation (non-convective) units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 9 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float WEASD_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Water equivalent of accumulated snow depth units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 13 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SNOM_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Snow melt units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 16 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MAXRH_P8_L103_GLC0_max ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Maximum relative humidity units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 27 ) level_type : Specified height level above ground (m) level : 2 type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ASNOW_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total snowfall units : m _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 29 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TSNOWP_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total snow precipitation units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 50 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MINRH_P8_L103_GLC0_min ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Minimum relative humidity units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 198 ) level_type : Specified height level above ground (m) level : 2 type_of_statistical_processing : Minimum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float PEVAP_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Potential evaporation units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 199 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float FRZR_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Freezing rain units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 225 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float FROZR_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Frozen rain units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Moisture parameter_template_discipline_category_number : ( 8, 0, 1, 227 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float WIND_P8_L103_GLC0_max ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Wind speed units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 8, 0, 2, 1 ) level_type : Specified height level above ground (m) level : 10 type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RELV_P8_2L103_GLC0_max ( lv_HTGL16, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Relative vorticity units : s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 8, 0, 2, 12 ) level_type : Specified height level above ground (m) type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float RELV_P8_L105_GLC0_max ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Relative vorticity units : s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 8, 0, 2, 12 ) level_type : Hybrid level level : 1 type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MAXUVV_P8_2L100_GLC0_max ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Hourly maximum of upward vertical velocity in the lowest 400hPa units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 8, 0, 2, 220 ) level_type : Isobaric surface (Pa) level : ( 10000, 100000 ) type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MAXDVV_P8_2L100_GLC0_max ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Hourly maximum of downward vertical velocity in the lowest 400hPa units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 8, 0, 2, 221 ) level_type : Isobaric surface (Pa) level : ( 10000, 100000 ) type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MAXUW_P8_L103_GLC0_max ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : U component of hourly maximum 10m wind speed units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 8, 0, 2, 222 ) level_type : Specified height level above ground (m) level : 10 type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MAXVW_P8_L103_GLC0_max ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : V component of hourly maximum 10m wind speed units : m s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Momentum parameter_template_discipline_category_number : ( 8, 0, 2, 223 ) level_type : Specified height level above ground (m) level : 10 type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float DSWRF_P8_L1_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Downward short-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Short wave radiation parameter_template_discipline_category_number : ( 8, 0, 4, 192 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float USWRF_P8_L1_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Upward short-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Short wave radiation parameter_template_discipline_category_number : ( 8, 0, 4, 193 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float USWRF_P8_L8_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Upward short-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Short wave radiation parameter_template_discipline_category_number : ( 8, 0, 4, 193 ) level_type : Nominal top of the atmosphere level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float DLWRF_P8_L1_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Downward long-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Long wave radiation parameter_template_discipline_category_number : ( 8, 0, 5, 192 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ULWRF_P8_L1_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Upward long-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Long wave radiation parameter_template_discipline_category_number : ( 8, 0, 5, 193 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float ULWRF_P8_L8_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Upward long-wave radiation flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Long wave radiation parameter_template_discipline_category_number : ( 8, 0, 5, 193 ) level_type : Nominal top of the atmosphere level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float TCDC_P8_L200_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Total cloud cover units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 8, 0, 6, 1 ) level_type : Entire atmosphere (considered as a single layer) level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float CDLYR_P8_L200_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Non-convective cloud cover units : % _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Cloud parameter_template_discipline_category_number : ( 8, 0, 6, 192 ) level_type : Entire atmosphere (considered as a single layer) level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MXUPHL_P8_2L103_GLC0_max ( lv_HTGL17, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Hourly maximum of updraft helicity over layer 2km to 5 km AGL units : m2 s-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 8, 0, 7, 199 ) level_type : Specified height level above ground (m) type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float VAR_0_7_200_P8_2L103_GLC0_min ( lv_HTGL17, ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : unknown variable name units : unknown _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Thermodynamic stability indices parameter_template_discipline_category_number : ( 8, 0, 7, 200 ) level_type : Specified height level above ground (m) type_of_statistical_processing : Minimum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MAXREF_P8_L20_GLC0_max ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Hourly maximum of simulated reflectivity at 1 km AGL units : dB _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 8, 0, 16, 198 ) level_type : Isothermal level (K) level : 263 type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MAXREF_P8_L103_GLC0_max ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Hourly maximum of simulated reflectivity at 1 km AGL units : dB _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Forecast radar imagery parameter_template_discipline_category_number : ( 8, 0, 16, 198 ) level_type : Specified height level above ground (m) level : 1000 type_of_statistical_processing : Maximum statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float FFLDRO_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Flash flood runoff (encoded as an accumulation over a floating subinterval of time) units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Hydrological products, Hydrology basic products parameter_template_discipline_category_number : ( 8, 1, 0, 1 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float GWLOWS_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Group Water Lower Storage units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Hydrological products, Hydrology basic products parameter_template_discipline_category_number : ( 8, 1, 0, 9 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float BGRUN_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Baseflow-groundwater runoff units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Hydrological products, Hydrology basic products parameter_template_discipline_category_number : ( 8, 1, 0, 192 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float SSRUN_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Storm surface runoff units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Hydrological products, Hydrology basic products parameter_template_discipline_category_number : ( 8, 1, 0, 193 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float WATR_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Water runoff units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 8, 2, 0, 5 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float GFLUX_P8_L1_GLC0_avg ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Ground heat flux units : W m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Vegetation/biomass parameter_template_discipline_category_number : ( 8, 2, 0, 193 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Average statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float LSPA_P8_L1_GLC0_acc ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Land surface precipitation accumulation units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Land surface products, Soil products parameter_template_discipline_category_number : ( 8, 2, 3, 199 ) level_type : Ground or water surface level : 0 type_of_statistical_processing : Accumulation statistical_process_duration : initial time to forecast time forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) float MASSDEN_P48_L103_GLC0_A62001 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Mass density (concentration) units : kg m-3 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Atmospheric chemical constituents parameter_template_discipline_category_number : ( 48, 0, 20, 0 ) level_type : Specified height level above ground (m) level : 8 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) aerosol_size : < 2.5e-06 aerosol_type : Dust Dry float MASSDEN_P48_L103_GLC0_A62001_1 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Mass density (concentration) units : kg m-3 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Atmospheric chemical constituents parameter_template_discipline_category_number : ( 48, 0, 20, 0 ) level_type : Specified height level above ground (m) level : 8 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) aerosol_size : >= 2.5e-06 and < 1e-05 aerosol_type : Dust Dry float COLMD_P48_L200_GLC0_A62001 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Column-integrated mass density units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Atmospheric chemical constituents parameter_template_discipline_category_number : ( 48, 0, 20, 1 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) aerosol_size : < 2.5e-06 aerosol_type : Dust Dry float COLMD_P48_L200_GLC0_A62001_1 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Column-integrated mass density units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Atmospheric chemical constituents parameter_template_discipline_category_number : ( 48, 0, 20, 1 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) aerosol_size : >= 2.5e-06 and < 1e-05 aerosol_type : Dust Dry float MASSDEN_P48_L103_GLC0_A62010 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Mass density (concentration) units : kg m-3 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Atmospheric chemical constituents parameter_template_discipline_category_number : ( 48, 0, 20, 0 ) level_type : Specified height level above ground (m) level : 8 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) aerosol_size : < 2.5e-06 aerosol_type : Particulate Organic Matter Dry float COLMD_P48_L200_GLC0_A62010 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Column-integrated mass density units : kg m-2 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Atmospheric chemical constituents parameter_template_discipline_category_number : ( 48, 0, 20, 1 ) level_type : Entire atmosphere (considered as a single layer) level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) aerosol_size : < 2.5e-06 aerosol_type : Particulate Organic Matter Dry float AEMFLX_P48_L1_GLC0_A62010 ( ygrid_0, xgrid_0 ) center : US National Weather Service - NCEP (WMC) production_status : Operational products long_name : Atmosphere emission mass flux units : kg m-2 s-1 _FillValue : 1e+20 coordinates : gridlat_0 gridlon_0 grid_type : Lambert Conformal can be secant or tangent, conical or bipolar parameter_discipline_and_category : Meteorological products, Atmospheric chemical constituents parameter_template_discipline_category_number : ( 48, 0, 20, 3 ) level_type : Ground or water surface level : 0 forecast_time : 0 forecast_time_units : hours initial_time : 03/08/2023 (17:00) aerosol_type : Particulate Organic Matter Dry float lv_HTGL17_l1 ( lv_HTGL17 ) long_name : Specified height level above ground units : m float lv_HTGL17_l0 ( lv_HTGL17 ) long_name : Specified height level above ground units : m float lv_HTGL16_l1 ( lv_HTGL16 ) long_name : Specified height level above ground units : m float lv_HTGL16_l0 ( lv_HTGL16 ) long_name : Specified height level above ground units : m float lv_DBLL15_l1 ( lv_DBLL15 ) long_name : Depth below land surface units : m float lv_DBLL15_l0 ( lv_DBLL15 ) long_name : Depth below land surface units : m float lv_HTGL14 ( lv_HTGL14 ) long_name : Specified height level above ground units : m float lv_HTGL13_l1 ( lv_HTGL13 ) long_name : Specified height level above ground units : m float lv_HTGL13_l0 ( lv_HTGL13 ) long_name : Specified height level above ground units : m float lv_SPDL12_l1 ( lv_SPDL12 ) long_name : Level at specified pressure difference from ground to level units : Pa float lv_SPDL12_l0 ( lv_SPDL12 ) long_name : Level at specified pressure difference from ground to level units : Pa float lv_HTGL11 ( lv_HTGL11 ) long_name : Specified height level above ground units : m float lv_ISBL10 ( lv_ISBL10 ) long_name : Isobaric surface units : Pa float lv_SPDL9_l1 ( lv_SPDL9 ) long_name : Level at specified pressure difference from ground to level units : Pa float lv_SPDL9_l0 ( lv_SPDL9 ) long_name : Level at specified pressure difference from ground to level units : Pa float lv_ISBL8 ( lv_ISBL8 ) long_name : Isobaric surface units : Pa float lv_HTGL7 ( lv_HTGL7 ) long_name : Specified height level above ground units : m float lv_HTGL6 ( lv_HTGL6 ) long_name : Specified height level above ground units : m float lv_SPDL5_l1 ( lv_SPDL5 ) long_name : Level at specified pressure difference from ground to level units : Pa float lv_SPDL5_l0 ( lv_SPDL5 ) long_name : Level at specified pressure difference from ground to level units : Pa float lv_HYBL4 ( lv_HYBL4 ) long_name : Hybrid level units : none float lv_SIGL3 ( lv_SIGL3 ) long_name : Sigma level (sigma value) units : none float lv_HTGL2 ( lv_HTGL2 ) long_name : Specified height level above ground units : m float lv_AMSL1 ( lv_AMSL1 ) long_name : Specific altitude above mean sea level units : m float lv_ISBL0 ( lv_ISBL0 ) long_name : Isobaric surface units : Pa float gridrot_0 ( ygrid_0, xgrid_0 ) long_name : vector rotation angle GridType : Lambert Conformal (secant, tangent, conical or bipolar) units : radians formula_u : Ugrid = cos(rot)*Uearth - sin(rot)*Vearth formula_v : Vgrid = sin(rot)*Uearth + cos(rot)*Vearth note1 : u and v components of vector quantities are resolved relative to earth note2 : apply formulas to derive u and v components relative to grid float gridlat_0 ( ygrid_0, xgrid_0 ) corners : ( 21.13812, 21.14055, 47.84219, 47.83862 ) long_name : latitude grid_type : Lambert Conformal (secant, tangent, conical or bipolar) units : degrees_north Latin2 : 38.5 Latin1 : 38.5 Dy : 3 Dx : 3 Lov : 262.5 Lo1 : 237.2805 La1 : 21.13812 float gridlon_0 ( ygrid_0, xgrid_0 ) corners : ( -122.7195, -72.28972, -60.91719, -134.0955 ) long_name : longitude grid_type : Lambert Conformal (secant, tangent, conical or bipolar) units : degrees_east Latin2 : 38.5 Latin1 : 38.5 Dy : 3 Dx : 3 Lov : 262.5 Lo1 : 237.2805 La1 : 21.13812 From ajaybankar123 at gmail.com Wed Mar 15 07:30:17 2023 From: ajaybankar123 at gmail.com (Ajay Bankar) Date: Wed, 15 Mar 2023 19:00:17 +0530 Subject: [ncl-talk] How to shorten the distance between tickmark and their labels Message-ID: Hello NCL community, Is there a way to shorten the distance between major tickmarks of axis and their labels? Thanks & Regards, Ajay -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ncl_plot.png Type: image/png Size: 23553 bytes Desc: not available URL: From dave.allured at noaa.gov Wed Mar 15 07:45:19 2023 From: dave.allured at noaa.gov (Dave Allured - NOAA Affiliate) Date: Wed, 15 Mar 2023 07:45:19 -0600 Subject: [ncl-talk] How to shorten the distance between tickmark and their labels In-Reply-To: References: Message-ID: Try resources tmXBLabelDeltaF, tmYLLabelDeltaF, etc. On Wed, Mar 15, 2023 at 7:33?AM Ajay Bankar via ncl-talk < ncl-talk at mailman.ucar.edu> wrote: > Hello NCL community, > > Is there a way to shorten the distance between major tickmarks of axis and > their labels? > > Thanks & Regards, > Ajay > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tabishumaransari at gmail.com Thu Mar 16 10:55:01 2023 From: tabishumaransari at gmail.com (Tabish Ansari) Date: Thu, 16 Mar 2023 17:55:01 +0100 Subject: [ncl-talk] ESMF Conservative Regridding of population and population density Message-ID: Hi I need to understand a fundamental feature of the ESMF "conserve" regridding: does it conserve fluxes or absolute values? I've got a *population count* and *population density* data on a native 1deg x 1deg grid. Ultimately, I need a population count on a 1.9deg x 2.5deg grid. I tried to achieve this in two ways: 1. Regridding the population count directly: This gives me a grid sum of 1.67 billion instead of 7.96 billion (world population in 2020) as obtained from the native grid sum. Strangely enough, if I multiply 1.67 billion with 1.9*2.5, the result gets pretty close to 7.96 billion but I'm unable to interpret why that might be the case. 2. Regridding population density data and multiplying by a matrix of gridpoint areas (I have obtained this separately) to get total population. In this case, the grid sum turns out to be 13.5 billion which is significantly higher than the actual world population of 7.96 billion again. So, my first question is, which is the right way to regrid population when using conservative remapping? And further, are there any obvious issues in my approach? Here's my code to generate weights file: *load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"load "$NCARG_ROOT/lib/ncarg/nclscripts/esmf/ESMF_regridding.ncl"begin sfile = addfile("/work/users/tan/gpw-v4-population-density-rev11_totpop_1_deg_nc/gpw_v4_population_density_rev11_1_deg.nc ","r") dfile = addfile("/data/sync/modelinput/CAMS-Emissions-tbu/HTAP_transient_1.9x2.5_emis_NO_20201217.nc ","r") varname = "Population Density, v4.11 (2000, 2005, 2010, 2015, 2020): 1 degree" ; A TERRIBLE VARIABLE NAME! pop = sfile->$varname$ pop2020 = pop(4,:,:) ; EXTRACTING 2D POPULATION DATA FOR THE YEAR 2020 nox_cams = dfile->glseas(0,:,:) poplat = pop2020&latitude poplon = pop2020&longitude camslat = nox_cams&lat camslon = nox_cams&lon Opt = True Opt at ForceOverwrite = True Opt at InterpMethod = "conserve" Opt at SrcGridLon = poplon Opt at SrcGridLat = poplat Opt at DstGridLon = camslon Opt at DstGridLat = camslat pop_regrid = ESMF_regrid(pop2020,Opt) printVarSummary(pop_regrid)end* Here's the code to generate the regridded data using the newly created weights file: *beginsfile = addfile("/work/users/tan/gpw-v4-population-density-rev11_totpop_1_deg_nc/gpw_v4_population_density_rev11_1_deg.nc ","r")dfile = addfile("/work/users/tan/gpw-v4-population-density-rev11_totpop_1_deg_nc/popdensity2020_regridded.nc ","c")varname = "Population Density, v4.11 (2000, 2005, 2010, 2015, 2020): 1 degree" pop = sfile->$varname$pop2020 = pop(4,:,:)WF = "/work/users/tan/nclscripts/pop-regridfiles/weights_file.nc "pop2020_regrid = ESMF_regrid_with_weights(pop2020,WF,False) ;REGRIDDINGdfile->popdensity2020 = pop2020_regrid ;STORINGprint("Regridded!")* *end* Thanks a lot. best regards, Tabish ------------------------------- Dr Tabish Ansari Research Associate Air Quality Modelling Group IASS-Potsdam Germany -------------- next part -------------- An HTML attachment was scrubbed... URL: From Anieklal at cas.iitd.ac.in Tue Mar 21 07:41:32 2023 From: Anieklal at cas.iitd.ac.in (Anie K Lal) Date: Tue, 21 Mar 2023 19:11:32 +0530 Subject: [ncl-talk] Data values out of range of levels set by EXPLICITLEVELS mode Message-ID: <68166be9f8d72b1998fc3feaf496b7a0@cas.iitd.ac.in> Hi all Kindly find my ncl script attached. Figure 1 shows the plot that I get with Automatic cnLevelSelectionMode. While when I provide explicit levels (/0,10,20,30,40,50,60,70,80,90,100/), the result is in Figure 2 with the below warning: "warning:ContourPlotSetValues: Data values out of range of levels set by EXPLICITLEVELS mode" I tried things as per the following discussions, but couldn't solve it: https://www.ncl.ucar.edu/Support/talk_archives/2012/3652.html https://www.ncl.ucar.edu/Support/talk_archives/2012/0204.html I want to define levels explicitly for the contours. Kindly help me solve this issue. Looking forward to any kind of help. Thank you Anie -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: test.ncl URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Figure1.png Type: image/png Size: 77637 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Figure2.png Type: image/png Size: 74006 bytes Desc: not available URL: From barry.h.lynn at gmail.com Tue Mar 21 08:06:32 2023 From: barry.h.lynn at gmail.com (Barry Lynn) Date: Tue, 21 Mar 2023 15:06:32 +0100 Subject: [ncl-talk] Data values out of range of levels set by EXPLICITLEVELS mode In-Reply-To: <68166be9f8d72b1998fc3feaf496b7a0@cas.iitd.ac.in> References: <68166be9f8d72b1998fc3feaf496b7a0@cas.iitd.ac.in> Message-ID: Hi: First thing to do is to printMinmax(X,False) to be sure that your data is within the contours. You can also use the where statement to limit the display of data to within a range of values, setting all else to X@ _Fillvalue. Barry On Tue, Mar 21, 2023 at 2:41?PM Anie K Lal via ncl-talk < ncl-talk at mailman.ucar.edu> wrote: > Hi all > > Kindly find my ncl script attached. Figure 1 shows the plot that I get > with Automatic cnLevelSelectionMode. While when I provide explicit > levels (/0,10,20,30,40,50,60,70,80,90,100/), the result is in Figure 2 > with the below warning: > "warning:ContourPlotSetValues: Data values out of > range of levels set by EXPLICITLEVELS mode" > > I tried things as per the following discussions, but couldn't solve it: > https://www.ncl.ucar.edu/Support/talk_archives/2012/3652.html > https://www.ncl.ucar.edu/Support/talk_archives/2012/0204.html > > I want to define levels explicitly for the contours. > > Kindly help me solve this issue. > > Looking forward to any kind of help. > > Thank you > Anie_______________________________________________ > ncl-talk mailing list > ncl-talk at mailman.ucar.edu > List instructions, subscriber options, unsubscribe: > https://mailman.ucar.edu/mailman/listinfo/ncl-talk > -- Barry H. Lynn, Ph.D Senior Scientist, Lecturer, The Institute of Earth Sciences, The Hebrew University of Jerusalem, Givat Ram, Jerusalem 91904, Israel Tel: 972 547 231 170 Fax: (972)-25662581 Weather It Is, LTD Weather and Climate Focus https://weather-it-is.com Jerusalem, Israel Local: 02 930 9525 Cell: 054 7 231 170 Int-IS: x972 2 930 9525 -------------- next part -------------- An HTML attachment was scrubbed... URL: From tao.zhang at colorado.edu Sat Mar 25 15:00:14 2023 From: tao.zhang at colorado.edu (Tao Zhang) Date: Sat, 25 Mar 2023 15:00:14 -0600 Subject: [ncl-talk] taylor_diagram question Message-ID: Hi, ?I can reproduce the taylor_4 figure using the sample script in https://www.ncl.ucar.edu/Applications/Images/taylor_4_1_lg.png https://www.ncl.ucar.edu/Applications/Scripts/taylor_4.ncl But I want? Figure 1 in https://en.wikipedia.org/wiki/Taylor_diagram#:~:text=Taylor%20diagrams%20are%20mathematical%20diagrams,comparative%20assessment%20of%20different%20models Which shows the standard deviation (0~4 mm/day), not the standardized deviations (normalized) (0-1.5). 1) May I only change the taylor_4.ncl for my purpose, but keep the loaded "taylor_diagram.ncl" unchanged? 2) How to add "observed value" in the Taylor diagram as shown in Figure 1 in above link? 3) How to change the color in 3 lines of standard deviation, correlation, and RMS? Thanks Tao