diff --git a/_sources/examples/generated/GOES_CIRA_Product_Writer.rst.txt b/_sources/examples/generated/GOES_CIRA_Product_Writer.rst.txt
index 87176a6..19e8cb5 100644
--- a/_sources/examples/generated/GOES_CIRA_Product_Writer.rst.txt
+++ b/_sources/examples/generated/GOES_CIRA_Product_Writer.rst.txt
@@ -223,13 +223,10 @@ pick which images we’re wanting to print out. We’re specifying
(for the new CIRA products) and the **three channels** for the RBG
composites.
-.. container:: alert-info
-
- | Tip:
- | More information could be gathered by looking at all the available
- location names (sectors), identifiers (entities), and parameters
- (channels). To see those run the following lines of code after the
- dataType has been set to satellite on the request object:
+ **Tip**: More information could be gathered by looking at all the
+ available location names (sectors), identifiers (entities), and
+ parameters (channels). To see those run the following lines of code
+ after the dataType has been set to satellite on the request object:
::
@@ -263,11 +260,8 @@ Here we define a folder for where the satellite images will be written
to. The default directory is a new folder called ‘output’ that lives
whereever this notebook lives.
-.. container:: alert-info
-
- | Tip:
- | If you specify the fully qualified path, it will no longer depend
- on where this notebook is located. For example (for a Mac):
+ **Tip**: If you specify the fully qualified path, it will no longer
+ depend on where this notebook is located. For example (for a Mac):
::
diff --git a/_sources/examples/generated/Grid_Levels_and_Parameters.rst.txt b/_sources/examples/generated/Grid_Levels_and_Parameters.rst.txt
index 55a9e7e..a0c2177 100644
--- a/_sources/examples/generated/Grid_Levels_and_Parameters.rst.txt
+++ b/_sources/examples/generated/Grid_Levels_and_Parameters.rst.txt
@@ -562,11 +562,9 @@ Set a parameter, from the output above and take a look at what “levels”
are available for the data set you’re looking at using
`DataAccessLayer.getAvailableLevels(request) the_geom
for each data type, which can be Point, MultiPolygon, or MultiLineString.
+ **Tip**: Note the geometry definition of ``the_geom`` for each data
+ type, which can be **Point**, **MultiPolygon**, or
+ **MultiLineString**.
Here we’ll be using Boulder (BOU) as our example for plotting the County
Warning Area (CWA). We’ll query our EDEX server to get all counties in
@@ -283,11 +283,8 @@ request interstate geometries which fall inside the buffered boundary.
Request the city table based using the **envelope** attribute and filter
by population and progressive disclosure level.
-.. container:: alert-warning
-
- ::
-
- Warning: the prog_disc
field is not entirely understood and values appear to change significantly depending on WFO site.
+ **Warning**: The ``prog_disc`` field is not entirely understood and
+ values appear to change significantly depending on WFO site.
.. code:: ipython3
@@ -507,8 +504,9 @@ to download and render for large (CONUS) maps.
request.setLocationNames('BOU')
request.addIdentifier('cwa', 'BOU')
-See the Maps Database Reference Page for available database tables,
-column names, and types.
+See the `Maps Database Reference
+Page
+Tip: More information could be gathered by looking at all the +available location names (sectors), identifiers (entities), and +parameters (channels). To see those run the following lines of code +after the dataType has been set to satellite on the request object:
+
## Print Available Location Names
print((DataAccessLayer.getAvailableLocationNames(request))
@@ -432,13 +429,10 @@ dataType has been set to satellite on the request object:
Here we define a folder for where the satellite images will be written to. The default directory is a new folder called ‘output’ that lives whereever this notebook lives.
-
+Tip: If you specify the fully qualified path, it will no longer
+depend on where this notebook is located. For example (for a Mac):
+
outputDir = '/Users/scarter/test_dir/output/'
Set a parameter, from the output above and take a look at what “levels” are available for the data set you’re looking at using DataAccessLayer.getAvailableLevels(request).
-Warning: Not all datasets support levels. If you are trying this with -another dataset and run into an exception (error), it’s most likely -because levels are not supported for that data type.
-
+Warning: Not all datasets support levels. If you are trying this
+with another dataset and run into an exception (error), it’s most
+likely because levels are not supported for that data type.
+
# For grid data we'll use the temperature parameter ("T")
grid_request.setParameters("T")
grid_levels = DataAccessLayer.getAvailableLevels(grid_request)
@@ -1086,10 +1086,10 @@ data we’re working with, we’ll either use
DataAccessLayer.getGridData()
or
DataAccessLayer.getGeometryData()
-
-Note: We have more, detailed notebooks about how analyze and
+
+Note: We have more, detailed notebooks about how analyze and
visualize the data once you have what you want.
-
+
## Grid Data
grid_response = DataAccessLayer.getGridData(grid_request, [grid_fcstRun[-1]])
for grid in grid_response:
diff --git a/examples/generated/Grids_and_Cartopy.html b/examples/generated/Grids_and_Cartopy.html
index 9d3cf29..a954218 100644
--- a/examples/generated/Grids_and_Cartopy.html
+++ b/examples/generated/Grids_and_Cartopy.html
@@ -283,10 +283,10 @@ in meters), respectively.
3 Limit Results Based on Time¶
Models produce many different time variants during their runs, so let’s
limit the data to the most recent time and forecast run.
-
-Note: You can play around with different times and forecast runs to
-see the differences.
-
+
+Note: You can play around with different times and forecast runs
+to see the differences.
+
cycles = DataAccessLayer.getAvailableTimes(request, True)
times = DataAccessLayer.getAvailableTimes(request)
fcstRun = DataAccessLayer.getForecastRun(cycles[-1], times)
@@ -353,10 +353,10 @@ understandable.
to create a colorized plot. We use our make_map function to create a
subplot and then we create a color scale (cs) and colorbar (cbar) with a
label for our plot.
-
-Note: You may see a warning appear with a red background, this is
+
+Note: You may see a warning appear with a red background, this is
okay, and will go away with subsequent runs of the cell.
-
+
cmap = plt.get_cmap('rainbow')
fig, ax = make_map(bbox=bbox)
cs = ax.pcolormesh(lons, lats, data, cmap=cmap)
diff --git a/examples/generated/Map_Resources_and_Topography.html b/examples/generated/Map_Resources_and_Topography.html
index bb7cc4a..8b91068 100644
--- a/examples/generated/Map_Resources_and_Topography.html
+++ b/examples/generated/Map_Resources_and_Topography.html
@@ -312,11 +312,11 @@ Shapely geometries and can be easily plotted by many Python packages.
which can be used to spatially select map resources for any column of
type geometry.
-
-<b>Tip:</b> Note the geometry definition of <code>the_geom</code> for each data type, which can be <b>Point</b>, <b>MultiPolygon</b>, or <b>MultiLineString</b>.
-
-
-
+
+Tip: Note the geometry definition of the_geom
for each data
+type, which can be Point, MultiPolygon, or
+MultiLineString.
+
Here we’ll be using Boulder (BOU) as our example for plotting the County
Warning Area (CWA). We’ll query our EDEX server to get all counties in
the CWA for BOU, and then plot those counties along withe the state
@@ -432,11 +432,10 @@ request interstate geometries which fall inside the buffered boundary.
7 Draw Nearby Cities¶
Request the city table based using the envelope attribute and filter
by population and progressive disclosure level.
-
-<b>Warning:</b> the <code>prog_disc</code> field is not entirely understood and values appear to change significantly depending on WFO site.
-
-
-
+
+Warning: The prog_disc
field is not entirely understood and
+values appear to change significantly depending on WFO site.
+
# Define the request for the city query
request = DataAccessLayer.newDataRequest('maps', envelope=envelope)
request.addIdentifier('table', 'mapdata.city')
@@ -603,8 +602,9 @@ watch area (CWA)
-See the Maps Database Reference Page for available database tables,
-column names, and types.
+See the Maps Database Reference
+Page
+for available database tables, column names, and types.
diff --git a/searchindex.js b/searchindex.js
index 6685b2d..1609be3 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["about","api/CombinedTimeQuery","api/DataAccessLayer","api/DateTimeConverter","api/IDataRequest","api/IFPClient","api/ModelSounding","api/PyData","api/PyGeometryData","api/PyGridData","api/RadarCommon","api/ThriftClient","api/ThriftClientRouter","api/TimeUtil","api/index","datatypes","dev","examples/generated/Colored_Surface_Temperature_Plot","examples/generated/Forecast_Model_Vertical_Sounding","examples/generated/GOES_CIRA_Product_Writer","examples/generated/GOES_Geostationary_Lightning_Mapper","examples/generated/Grid_Levels_and_Parameters","examples/generated/Grids_and_Cartopy","examples/generated/METAR_Station_Plot_with_MetPy","examples/generated/Map_Resources_and_Topography","examples/generated/Model_Sounding_Data","examples/generated/NEXRAD_Level3_Radar","examples/generated/Precip_Accumulation-Region_Of_Interest","examples/generated/Regional_Surface_Obs_Plot","examples/generated/Satellite_Imagery","examples/generated/Upper_Air_BUFR_Soundings","examples/generated/Watch_and_Warning_Polygons","examples/index","gridparms","index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,sphinx:56},filenames:["about.rst","api/CombinedTimeQuery.rst","api/DataAccessLayer.rst","api/DateTimeConverter.rst","api/IDataRequest.rst","api/IFPClient.rst","api/ModelSounding.rst","api/PyData.rst","api/PyGeometryData.rst","api/PyGridData.rst","api/RadarCommon.rst","api/ThriftClient.rst","api/ThriftClientRouter.rst","api/TimeUtil.rst","api/index.rst","datatypes.rst","dev.rst","examples/generated/Colored_Surface_Temperature_Plot.rst","examples/generated/Forecast_Model_Vertical_Sounding.rst","examples/generated/GOES_CIRA_Product_Writer.rst","examples/generated/GOES_Geostationary_Lightning_Mapper.rst","examples/generated/Grid_Levels_and_Parameters.rst","examples/generated/Grids_and_Cartopy.rst","examples/generated/METAR_Station_Plot_with_MetPy.rst","examples/generated/Map_Resources_and_Topography.rst","examples/generated/Model_Sounding_Data.rst","examples/generated/NEXRAD_Level3_Radar.rst","examples/generated/Precip_Accumulation-Region_Of_Interest.rst","examples/generated/Regional_Surface_Obs_Plot.rst","examples/generated/Satellite_Imagery.rst","examples/generated/Upper_Air_BUFR_Soundings.rst","examples/generated/Watch_and_Warning_Polygons.rst","examples/index.rst","gridparms.rst","index.rst"],objects:{"awips.DateTimeConverter":{constructTimeRange:[3,1,1,""],convertToDateTime:[3,1,1,""]},"awips.RadarCommon":{encode_dep_vals:[10,1,1,""],encode_radial:[10,1,1,""],encode_thresh_vals:[10,1,1,""],get_data_type:[10,1,1,""],get_datetime_str:[10,1,1,""],get_hdf5_data:[10,1,1,""],get_header:[10,1,1,""]},"awips.ThriftClient":{ThriftClient:[11,2,1,""],ThriftRequestException:[11,4,1,""]},"awips.ThriftClient.ThriftClient":{sendRequest:[11,3,1,""]},"awips.TimeUtil":{determineDrtOffset:[13,1,1,""],makeTime:[13,1,1,""]},"awips.dataaccess":{CombinedTimeQuery:[1,0,0,"-"],DataAccessLayer:[2,0,0,"-"],IDataRequest:[4,2,1,""],ModelSounding:[6,0,0,"-"],PyData:[7,0,0,"-"],PyGeometryData:[8,0,0,"-"],PyGridData:[9,0,0,"-"],ThriftClientRouter:[12,0,0,"-"]},"awips.dataaccess.CombinedTimeQuery":{getAvailableTimes:[1,1,1,""]},"awips.dataaccess.DataAccessLayer":{changeEDEXHost:[2,1,1,""],getAvailableLevels:[2,1,1,""],getAvailableLocationNames:[2,1,1,""],getAvailableParameters:[2,1,1,""],getAvailableTimes:[2,1,1,""],getForecastRun:[2,1,1,""],getGeometryData:[2,1,1,""],getGridData:[2,1,1,""],getIdentifierValues:[2,1,1,""],getMetarObs:[2,1,1,""],getOptionalIdentifiers:[2,1,1,""],getRadarProductIDs:[2,1,1,""],getRadarProductNames:[2,1,1,""],getRequiredIdentifiers:[2,1,1,""],getSupportedDatatypes:[2,1,1,""],getSynopticObs:[2,1,1,""],newDataRequest:[2,1,1,""],setLazyLoadGridLatLon:[2,1,1,""]},"awips.dataaccess.IDataRequest":{__weakref__:[4,5,1,""],addIdentifier:[4,3,1,""],getDatatype:[4,3,1,""],getEnvelope:[4,3,1,""],getIdentifiers:[4,3,1,""],getLevels:[4,3,1,""],getLocationNames:[4,3,1,""],setDatatype:[4,3,1,""],setEnvelope:[4,3,1,""],setLevels:[4,3,1,""],setLocationNames:[4,3,1,""],setParameters:[4,3,1,""]},"awips.dataaccess.ModelSounding":{changeEDEXHost:[6,1,1,""],getSounding:[6,1,1,""]},"awips.dataaccess.PyData":{PyData:[7,2,1,""]},"awips.dataaccess.PyData.PyData":{getAttribute:[7,3,1,""],getAttributes:[7,3,1,""],getDataTime:[7,3,1,""],getLevel:[7,3,1,""],getLocationName:[7,3,1,""]},"awips.dataaccess.PyGeometryData":{PyGeometryData:[8,2,1,""]},"awips.dataaccess.PyGeometryData.PyGeometryData":{getGeometry:[8,3,1,""],getNumber:[8,3,1,""],getParameters:[8,3,1,""],getString:[8,3,1,""],getType:[8,3,1,""],getUnit:[8,3,1,""]},"awips.dataaccess.PyGridData":{PyGridData:[9,2,1,""]},"awips.dataaccess.PyGridData.PyGridData":{getLatLonCoords:[9,3,1,""],getParameter:[9,3,1,""],getRawData:[9,3,1,""],getUnit:[9,3,1,""]},"awips.dataaccess.ThriftClientRouter":{LazyGridLatLon:[12,2,1,""],ThriftClientRouter:[12,2,1,""]},"awips.dataaccess.ThriftClientRouter.ThriftClientRouter":{getAvailableLevels:[12,3,1,""],getAvailableLocationNames:[12,3,1,""],getAvailableParameters:[12,3,1,""],getAvailableTimes:[12,3,1,""],getGeometryData:[12,3,1,""],getGridData:[12,3,1,""],getIdentifierValues:[12,3,1,""],getNotificationFilter:[12,3,1,""],getOptionalIdentifiers:[12,3,1,""],getRequiredIdentifiers:[12,3,1,""],getSupportedDatatypes:[12,3,1,""],newDataRequest:[12,3,1,""],setLazyLoadGridLatLon:[12,3,1,""]},"awips.gfe":{IFPClient:[5,0,0,"-"]},"awips.gfe.IFPClient":{IFPClient:[5,2,1,""]},"awips.gfe.IFPClient.IFPClient":{commitGrid:[5,3,1,""],getGridInventory:[5,3,1,""],getParmList:[5,3,1,""],getSelectTR:[5,3,1,""],getSiteID:[5,3,1,""]},awips:{DateTimeConverter:[3,0,0,"-"],RadarCommon:[10,0,0,"-"],ThriftClient:[11,0,0,"-"],TimeUtil:[13,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","class","Python class"],"3":["py","method","Python method"],"4":["py","exception","Python exception"],"5":["py","attribute","Python attribute"]},objtypes:{"0":"py:module","1":"py:function","2":"py:class","3":"py:method","4":"py:exception","5":"py:attribute"},terms:{"0":[17,18,19,20,21,22,23,24,25,26,27,28,29,30,33],"00":[18,21,23,25],"000":21,"000000":28,"000508":26,"001012802000048":28,"0027720002":26,"005":18,"008382":26,"00hpa":29,"01":[19,21,29,33],"0127":26,"017472787":26,"019499999":26,"02":[19,29],"021388888888888888hr":29,"0290003":27,"02905":28,"02hpa":29,"03":[19,29],"03199876199994":28,"033959802":26,"0393701":27,"03hpa":29,"04":[25,29],"04hpa":29,"05":[19,26,29],"051":27,"0555557e":26,"06":[19,21,29],"07":[20,29],"071":27,"07hpa":29,"08":[26,29],"08255":26,"082804":26,"088392":26,"0891":28,"08hpa":29,"09":[25,26,29],"092348410":15,"0_100":21,"0_1000":21,"0_10000":21,"0_115_360_359":26,"0_116_116":26,"0_116_360_0":26,"0_120":21,"0_12000":21,"0_13_13":26,"0_150":21,"0_1500":21,"0_180":21,"0_200":21,"0_2000":21,"0_230_360_0":26,"0_250":21,"0_2500":21,"0_260":21,"0_265":21,"0_270":21,"0_275":21,"0_280":21,"0_285":21,"0_290":21,"0_295":21,"0_30":21,"0_300":21,"0_3000":21,"0_305":21,"0_310":21,"0_315":21,"0_320":21,"0_325":21,"0_330":21,"0_335":21,"0_340":21,"0_345":21,"0_346_360_0":26,"0_350":21,"0_3500":21,"0_359":26,"0_400":21,"0_4000":21,"0_40000":21,"0_450":21,"0_4500":21,"0_460_360_0":26,"0_464_464":26,"0_500":21,"0_5000":21,"0_550":21,"0_5500":21,"0_60":21,"0_600":21,"0_6000":21,"0_609":21,"0_610":21,"0_650":21,"0_700":21,"0_7000":21,"0_750":21,"0_800":21,"0_8000":21,"0_850":21,"0_90":21,"0_900":21,"0_9000":21,"0_920_360_0":26,"0_950":21,"0bl":21,"0c":[18,33],"0co":23,"0deg":33,"0f":[23,28],"0fhag":[15,18,21,22],"0k":21,"0ke":21,"0lyrmb":21,"0m":29,"0mb":[18,21],"0pv":21,"0sfc":[21,27],"0tilt":21,"0trop":21,"0x11127bfd0":22,"0x11568f6d0":24,"0x115a20370":24,"0x11b971da0":27,"0x11dcfedd8":28,"1":[0,15,17,18,20,23,25,26,27,28,29,30,31,33],"10":[15,17,18,19,23,26,27,28,29,30,33],"100":[18,21,25,30,33],"1000":[18,21,23,25,30,33],"10000":21,"1013":29,"103":29,"104":[18,29],"1042":29,"1058":24,"1070":29,"10800":21,"108000":21,"109":31,"10c":33,"10hpa":29,"10m":33,"11":[26,27,29,33],"110":29,"1100":29,"112":25,"115":26,"1152x1008":29,"116":26,"116167":29,"117":29,"118":23,"118800":21,"11hpa":29,"12":[17,18,21,24,25,27,28,29,30,31,33],"120":[17,21,27,33],"1205":24,"12192":26,"125":[27,29],"1250":21,"127":[27,31],"129600":21,"12h":33,"12hpa":29,"13":[26,27,29,33],"131":33,"133":29,"134":26,"135":26,"137":33,"138":26,"1382263":19,"139":27,"13hpa":29,"14":[17,18,19,21,25,26,27,29,33],"140":27,"1400":24,"140400":21,"141":26,"142":29,"1440":33,"14hpa":29,"15":[17,18,20,25,27,29,30,33],"150":21,"1500":21,"151":29,"151200":21,"152":28,"1524":21,"1583666":19,"159":26,"1598":22,"15c":33,"15hpa":29,"16":[15,17,20,21,22,25,26,27,28,33],"160":29,"161":26,"162000":21,"163":26,"165":26,"166":26,"1688":24,"169":26,"1693":24,"1694":24,"17":[25,26,27,29,33],"170":[26,29],"1701":24,"1703":24,"1706":24,"171":26,"1716":24,"172":26,"172800":21,"173":26,"1730":24,"174":26,"1741":24,"1746":24,"175":26,"1753":24,"176":26,"1767":24,"177":26,"1781":24,"1790004":27,"17hpa":29,"18":[18,20,26,27,28,29,33],"180":[19,29],"1828":21,"183600":21,"1875":27,"1890006":27,"18hpa":29,"19":[18,21,26,29],"190":[26,29],"194400":21,"19hpa":29,"19um":29,"1f":[18,23,28],"1h":33,"1mb":18,"1st":33,"1v4":25,"1x1":33,"2":[0,15,17,18,23,25,26,27,28,29,30,33],"20":[18,23,25,26,27,29,30,31,33],"200":[21,29,33],"2000":21,"2000m":33,"201":33,"2016":16,"2018":[18,26,29],"202":33,"2020":25,"2021":[19,21],"203":33,"204":33,"205":33,"205200":21,"206":33,"207":33,"207see":33,"208":[24,33],"209":33,"20b2aa":24,"20c":33,"20km":21,"20um":29,"21":27,"210":33,"211":33,"212":[29,33],"215":33,"216":33,"21600":21,"216000":21,"217":33,"218":33,"219":33,"22":[18,20,24,27],"222":33,"223":[29,33],"224":33,"225":24,"226800":21,"22hpa":29,"23":[23,26,29],"230":26,"235":29,"237600":21,"23hpa":29,"24":[27,28,31,33],"240":33,"243":25,"247":29,"24799":29,"248400":21,"24h":33,"24hpa":29,"25":[17,21,27,33],"250":[21,33],"2500":21,"252":33,"253":33,"254":33,"255":[21,23],"257":21,"259":29,"259200":21,"25um":29,"26":29,"260":[21,28],"263":25,"265":21,"26c":33,"26hpa":29,"27":[26,27],"270":21,"270000":21,"272":29,"273":[18,25,30],"2743":21,"274543999":15,"275":21,"27hpa":29,"28":[19,27,28,29],"280":21,"280511999":15,"280800":21,"285":21,"285491999":15,"286":29,"29":[25,29],"290":21,"291600":21,"295":[21,27],"2960005":27,"2fhag":[16,21],"2h":33,"2km":33,"2m":33,"2nd":33,"2pi":33,"2s":33,"3":[6,17,18,25,26,27,28,29,30,33],"30":[21,27,29,30,33],"300":[21,27,29,33],"3000":[19,21],"302400":21,"3048":21,"305":21,"3071667e":26,"30hpa":29,"30m":33,"30um":29,"31":[26,28,29],"310":21,"3125":27,"314":29,"315":21,"31hpa":29,"32":[17,18,26,27,28,29],"320":21,"32400":21,"324000":21,"325":21,"328":29,"32hpa":29,"33":[27,28,33],"330":21,"334":27,"335":21,"339":27,"340":21,"343":29,"345":21,"345600":21,"346":26,"3468":28,"34hpa":29,"34um":29,"35":[17,21,23,28,29],"350":21,"3500":21,"35785830":19,"358":29,"35hpa":29,"35um":29,"36":27,"360":[26,33],"3600":[27,29],"3626751":19,"3657":21,"367200":21,"369":21,"36shrmi":21,"37":26,"374":29,"375":27,"37hpa":29,"388800":21,"38hpa":29,"38um":29,"39":[18,27,29],"390":29,"3h":33,"3j2":25,"3rd":33,"3tilt":21,"4":[18,23,25,27,28,29,33],"40":[18,21,25,33],"400":21,"4000":21,"400hpa":33,"407":29,"40km":18,"41":26,"410400":21,"41999816894531":25,"41hpa":29,"42":[26,27,29],"422266":29,"424":29,"43":[25,29],"43200":21,"432000":21,"4328":24,"432x288":19,"43hpa":29,"441":29,"4420482":27,"44848":28,"44hpa":29,"45":[17,18,21,27,29],"450":21,"4500":21,"45227":29,"453600":21,"4572":21,"4588674":19,"459":29,"45hpa":29,"46":15,"460":26,"464":26,"46hpa":29,"47":29,"47462":29,"475200":21,"477":29,"47hpa":29,"47um":[19,29],"48":[27,33],"49":31,"496":29,"496800":21,"4bl":25,"4bq":25,"4hv":25,"4lftx":33,"4mb":18,"4om":25,"4th":33,"4tilt":21,"5":[0,20,25,26,27,28,29,33],"50":[15,18,21,23,24,26,27,31,33],"500":[21,29,33],"5000":[19,21,24],"5000x4000":19,"50934":28,"50dbzz":21,"50hpa":29,"50m":[17,19,20,22,24,26,27,29,31],"50um":29,"51":[19,26,27,29],"515":29,"518400":21,"51hpa":29,"52":27,"521051616000022":28,"525":21,"5290003":27,"52hpa":29,"535":29,"5364203":27,"5399999e":26,"53hpa":29,"54":27,"54000":21,"540000":21,"54hpa":29,"55":[17,21],"550":21,"5500":21,"555":29,"56":[19,26,29],"561600":21,"5625":27,"57":[26,27],"575":[21,29],"5775646e":26,"57hpa":29,"58":[24,26,29],"583200":21,"58hpa":29,"59":23,"596":29,"59hpa":29,"5af":25,"5ag":25,"5c":33,"5pv":21,"5sz":25,"5tilt":21,"5wava":33,"5wavh":33,"6":[18,23,25,27,28,29,33],"60":[21,25,27,28,29,30,33],"600":21,"6000":21,"604800":21,"609":21,"6096":21,"610":21,"61595":29,"617":29,"61um":29,"623":24,"625":[21,27],"626":27,"626400":21,"628002":27,"62hpa":29,"63":27,"63429260299995":28,"6356752":19,"6378137":19,"639":29,"63hpa":29,"64":[25,31],"64800":21,"648000":21,"64um":[19,29],"65":[15,17,25,27],"650":21,"65000152587891":25,"65155":28,"652773000":15,"65293884277344":15,"656933000":15,"657455":29,"65hpa":29,"66":[27,29],"660741000":15,"661":29,"66553":28,"669600":21,"67":[18,25],"670002":27,"67402":28,"675":21,"67hpa":29,"683":29,"6875":27,"68hpa":29,"69":27,"690":26,"691200":21,"69hpa":29,"6fhag":21,"6h":33,"6km":33,"6mb":18,"6ro":25,"7":[18,19,22,25,26,27,29,33],"70":[17,33],"700":21,"7000":21,"706":29,"70851":29,"70hpa":29,"71":29,"712800":21,"718":27,"71hpa":29,"72":[27,33],"725":21,"72562":30,"729":29,"72hpa":29,"73":23,"734400":21,"74":[22,27],"75":[17,19,27],"750":21,"75201":28,"753":29,"75600":21,"756000":21,"757":24,"758":24,"759":24,"760":24,"761":24,"762":24,"7620":21,"765":24,"766":24,"768":24,"769":24,"77":[27,29],"775":[21,24],"777":29,"777600":21,"778":24,"78":[26,27,28],"782322971":15,"78hpa":29,"79":27,"79354":28,"797777777777778hr":29,"799200":21,"79hpa":29,"7mb":18,"7tilt":21,"8":[17,22,23,25,27,28,29,33],"80":[22,24,26,28,29,33],"800":21,"8000":21,"802":29,"81":[26,27],"812":27,"82":[27,28],"820800":21,"825":21,"82676":28,"8269997":27,"827":29,"83":[28,29],"834518":26,"836":18,"837":18,"84":27,"842400":21,"848":18,"85":[17,27],"850":21,"852":29,"853":27,"85hpa":29,"86":28,"86400":21,"864000":21,"86989b":24,"87":[18,27,28,29],"875":[21,27],"878":29,"87hpa":29,"87um":[19,29],"88hpa":29,"89":[27,28,29],"89899":28,"89hpa":29,"8fhag":21,"8tilt":21,"8v7":25,"9":[22,25,27,29,33],"90":[15,20,21,33],"900":21,"9000":21,"904":29,"90um":29,"911":17,"9144":21,"92":[15,28,29],"920":26,"921":17,"925":21,"92hpa":29,"931":29,"93574":28,"94":[25,26],"94384":25,"948581075":15,"94915580749512":15,"95":23,"950":21,"958":29,"9581":11,"95hpa":29,"95um":29,"96":29,"96hpa":29,"97200":21,"975":21,"97hpa":29,"98":29,"986":29,"98hpa":29,"99":26,"992865960":15,"9999":[17,23,27,28,30],"99hpa":29,"9b6":25,"9tilt":21,"\u03c9":33,"\u03c9\u03c9":33,"\u03c9q":33,"\u03c9t":33,"abstract":[4,16],"boolean":[2,10],"break":16,"byte":33,"case":[16,19,21,22,24,25,30],"class":[4,5,7,8,9,11,12,16,18,21,23,26],"default":[0,6,16,19,31],"do":[0,16,21,31],"enum":16,"export":0,"final":[6,19,22,33],"float":[3,8,16,17,18,19,23,28,33],"function":[0,16,21,23,28,31,33],"import":[16,17,18,20,23,25,26,27,28,29,30,31],"int":[3,8,16,17,23,24,27,28,33],"long":[3,8,16,33],"new":[2,17,19,22,24,25,27,28,34],"null":16,"public":[0,16,19,24],"return":[2,3,4,6,7,8,9,10,15,16,18,19,21,22,23,24,25,26,27,28,29,30,31,33],"short":[19,33],"super":33,"switch":18,"throw":[2,16],"transient":33,"true":[2,15,18,21,22,23,24,25,26,27,28,29,31,33],"try":[21,23,25,28],"void":16,"while":[16,28,30],A:[0,2,3,4,6,16,18,25,27,33],As:[0,16],At:[0,33],By:[16,19,33],For:[0,16,19,21,24,30],IS:18,If:[4,6,16,18,19,21,22,23,34],In:[0,16,22,24,33,34],Into:21,It:[2,16],Near:33,No:[16,25,26],Not:[4,16,21],Of:[32,33],One:26,The:[0,16,18,19,20,21,22,24,25,30,33,34],Then:19,There:[16,18],These:[0,2],To:[16,19,33],With:[19,24,33],_:18,__weakref__:4,_datadict:18,_pcolorarg:22,_soundingcub:6,abbrevi:[4,8,9,33],abi:33,abl:[16,25],about:[16,21],abov:[16,18,21,22,24,33],abq:23,absd:33,absfrq:33,absh:33,absolut:33,absorpt:33,absrb:33,abstractdatapluginfactori:16,abstractgeometrydatabasefactori:16,abstractgeometrytimeagnosticdatabasefactori:16,abstractgriddatapluginfactori:16,absv:33,ac137:33,acar:[16,21],acceler:33,access:[0,2,6,16,21,22,24],account:28,accum:[26,33],accumul:[32,33],acond:33,acpcp:33,acpcpn:33,act:6,action:16,activ:[33,34],actp:29,actual:[2,16,19],acv:23,acwvh:33,ad:[16,22,28,33],adcl:33,add:[4,16,17,19,23,30],add_barb:[23,28],add_featur:[19,23,24,28,29,31],add_geometri:27,add_grid:[18,25,30],add_subplot:23,add_valu:[23,28],addidentifi:[4,15,16,19,20,24,25,28,29],addit:[0,16],addition:19,adiabat:33,adm:25,admin_0_boundary_lines_land:[24,31],admin_1_states_provinces_lin:[24,29,31],adp:29,aerodynam:33,aerosol:33,aetyp:33,afa:25,affect:2,after:[0,16,19],ag:33,again:24,ageow:21,ageowm:21,agl:33,agnost:[2,16],ago:29,agr:25,ah:33,ahn:25,ai131:33,aia:25,aid:20,aih:25,air:[0,21,32,33],air_pressure_at_sea_level:[23,28],air_temperatur:[23,28],airep:[16,21],airmet:16,airport:16,ajo:25,akh:33,akm:33,al:28,alabama:28,alarm:0,albdo:33,albedo:33,alert:[0,16],algorithm:26,all:[0,2,4,6,16,17,18,19,21,24,30,33,34],allow:[0,2,16,18,19,24],along:[21,22,24],alpha:[24,33],alr:21,alreadi:[23,34],alrrc:33,also:[0,3,15,16],alter:16,although:21,altimet:33,altitud:33,altmsl:33,alwai:16,america:[17,23],amixl:33,amount:[16,29,33],amsl:33,amsr:33,amsre10:33,amsre11:33,amsre12:33,amsre9:33,an:[0,2,4,7,16,17,19,20,21,22,24,25,29,30,33,34],analysi:[0,34],analyz:21,anc:33,ancconvectiveoutlook:33,ancfinalforecast:33,angl:[16,33],ani:[0,2,16,18,24],anisotropi:33,anj:25,annot:[19,24],anomali:33,anoth:[16,19,21,24],antarct:29,anyth:16,aod:29,aohflx:33,aosgso:33,apach:0,apcp:33,apcpn:33,api:16,app:16,appar:33,appear:[22,24],append:[18,20,23,24,25,28,30,31],appli:[0,16,19],applic:[0,24],approach:0,appropri:[0,31],approv:33,appt:21,aptmp:33,apx:25,aqq:25,aqua:33,ar:[0,2,4,16,18,19,20,21,22,24,25,28,29,30,33,34],aradp:33,arain:33,arang:19,arbitrari:33,arbtxt:33,architectur:16,arctic:29,area:[24,27,29,33],arg:[2,3,4,6,7,8,10,16,22],argsort:30,argument:3,ari12h1000yr:33,ari12h100yr:33,ari12h10yr:33,ari12h1yr:33,ari12h200yr:33,ari12h25yr:33,ari12h2yr:33,ari12h500yr:33,ari12h50yr:33,ari12h5yr:33,ari1h1000yr:33,ari1h100yr:33,ari1h10yr:33,ari1h1yr:33,ari1h200yr:33,ari1h25yr:33,ari1h2yr:33,ari1h500yr:33,ari1h50yr:33,ari1h5yr:33,ari24h1000yr:33,ari24h100yr:33,ari24h10yr:33,ari24h1yr:33,ari24h200yr:33,ari24h25yr:33,ari24h2yr:33,ari24h500yr:33,ari24h50yr:33,ari24h5yr:33,ari2h1000yr:33,ari2h100yr:33,ari2h10yr:33,ari2h1yr:33,ari2h200yr:33,ari2h25yr:33,ari2h2yr:33,ari2h500yr:33,ari2h50yr:33,ari2h5yr:33,ari30m1000yr:33,ari30m100yr:33,ari30m10yr:33,ari30m1yr:33,ari30m200yr:33,ari30m25yr:33,ari30m2yr:33,ari30m500yr:33,ari30m50yr:33,ari30m5yr:33,ari3h1000yr:33,ari3h100yr:33,ari3h10yr:33,ari3h1yr:33,ari3h200yr:33,ari3h25yr:33,ari3h2yr:33,ari3h500yr:33,ari3h50yr:33,ari3h5yr:33,ari6h1000yr:33,ari6h100yr:33,ari6h10yr:33,ari6h1yr:33,ari6h200yr:33,ari6h25yr:33,ari6h2yr:33,ari6h500yr:33,ari6h50yr:33,ari6h5yr:33,around:[16,22],arrai:[2,9,15,16,17,18,21,22,23,24,25,26,28,30,31],asd:33,aset:33,asgso:33,ash:33,ashfl:33,asid:24,asnow:33,assign:30,assimil:33,assist:0,associ:[0,7,9,16,33],assum:25,asymptot:33,ath:25,atl1:25,atl2:25,atl3:25,atl4:25,atl:23,atlh:25,atmdiv:33,atmo:33,atmospher:[21,33],attach:[16,23,28],attempt:16,attent:18,attribut:[7,16,20,24],automat:16,autosp:21,av:21,avail:[0,2,6,16,18,19,20,22,24,31,33],avail_param:23,available_loc:26,availablelevel:[15,18,26],availableloc:30,availableparm:[2,20,26],availableproduct:[15,23,28,29],availablesector:[15,29],averag:33,avg:33,aviat:33,avoid:16,avsft:33,awai:22,awh:25,awip:[1,2,3,4,5,6,7,8,9,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],awips2:[0,25],awr:25,awvh:33,ax2:22,ax:[17,18,19,20,22,23,24,25,26,27,28,29,30,31],ax_hod:[18,25,30],ax_synop:28,axes_grid1:[18,25,30],axi:22,axvlin:[18,25,30],azdat:10,azimuth:33,azval:10,b:[19,21,24,25,33],ba:33,bab:25,back:16,backend:0,background:22,backscatt:33,band:[19,33],bare:33,baret:33,barotrop:33,base:[0,6,16,19,24,25,26,29,33],baseflow:33,baselin:16,basi:6,basin:16,basr:33,basrv:33,bassw:33,bbox:[17,18,22,24,26,27,28,29,31],bbox_inch:19,bcbl:33,bcly:33,bctl:33,bcy:33,bde:23,bdept06:21,bdg:[23,25],bdp:25,beam:33,bean:16,becaus:[16,19,21,24,25,28,30],becom:[16,24],been:[16,19],befor:[16,21],begin:23,beginrang:[17,23,28],behavior:16,being:[0,4,16],below:[16,19,21,24,33,34],beninx:33,best:[16,33],better:2,between:[0,16,18,19,22,33],bfl:25,bgrun:33,bgtl:25,bh1:25,bh2:25,bh3:25,bh4:25,bh5:25,bhk:25,bi:23,bia:33,bid:25,bil:23,bin:16,binlightn:[16,20,21],binoffset:16,bir:25,bit:21,bkeng:33,bkn:[23,28],bl:[21,25],black:[24,27,30,31,33],blackadar:33,blank:31,bld:33,bli:[21,33],blkmag:21,blkshr:21,blob:25,block:24,blow:33,blst:33,blu:25,blue:[23,24,28],blysp:33,bmixl:33,bmx:25,bna:25,bo:23,board:20,bod:25,boi:23,border:23,both:[16,20,22,24,26],bottom:[19,33],bou:24,boulder:24,bound:[16,17,22,23,24,28,31],boundari:[19,21,22,28,33],box:[16,17,22,27],bq:33,bra:25,bright:33,brightbandbottomheight:33,brightbandtopheight:33,brn:21,brnehii:21,brnmag:21,brnshr:21,brnvec:21,bro:23,broken:0,browser:34,brtmp:33,btl:25,btot:33,buffer:[19,24,28],bufr:[21,25,32],bufrmosavn:21,bufrmoseta:21,bufrmosgf:21,bufrmoshpc:21,bufrmoslamp:21,bufrmosmrf:21,bufrua:[16,21,30],bui:23,build:[3,16,30],bulb:33,bundl:16,burnt:24,bvec1:33,bvec2:33,bvec3:33,bvr:25,bytebufferwrapp:16,c01:25,c02:25,c03:25,c04:25,c06:25,c07:25,c08:25,c09:25,c10:25,c11:25,c12:25,c13:25,c14:25,c17:25,c18:25,c19:25,c20:25,c21:25,c22:25,c23:25,c24:25,c25:25,c27:25,c28:25,c30:25,c31:25,c32:25,c33:25,c34:25,c35:25,c36:25,c7h:25,c:[17,18,22,25,30,33,34],caesium:33,cai:25,caii:33,caiirad:33,calc:[23,25,28,30],calcul:[16,22,27,30],call:[0,16,19,22,24,34],caller:16,camt:33,can:[0,3,16,19,21,22,24,25,28,29,34],canopi:33,capabl:16,capac:33,cape:[21,29,33],capestk:21,capetolvl:21,car:23,carolina:28,cartopi:[17,19,20,21,23,24,26,27,28,29,31,32],cascaded_union:24,cat:33,categor:33,categori:[17,23,24,25,26,28,29,31,33],cave:[16,17,34],cb:33,cbar2:22,cbar:[22,24,26,27,29],cbase:33,cbe:25,cbhe:33,cbl:33,cbn:25,cc5000:24,ccape:21,ccbl:33,cceil:33,ccfp:16,ccin:21,ccittia5:33,ccly:33,ccond:33,ccr:[17,19,20,22,23,24,26,27,28,29,31],cctl:33,ccy:33,cd:[33,34],cdcimr:33,cdcon:33,cdlyr:33,cduvb:33,cdww:33,ceas:33,ceil:33,cell:[16,22,24],cent:33,center:[0,22,33,34],cento:0,central_latitud:[23,28],central_longitud:[19,20,23,28],certain:[2,16],cfeat:[19,20,29],cfeatur:[23,28,31],cfnlf:33,cfnsf:33,cfrzr3hr:21,cfrzr6hr:21,cfrzr:[21,33],cg:33,ch1:19,ch2:19,ch3:19,ch:[19,23,29],chang:[2,6,16,23,24,33],changeedexhost:[2,6,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],channel:[19,33],characterist:24,chart:30,che:25,check:19,chill:33,choos:16,cice:33,cicel:33,cicep3hr:21,cicep6hr:21,cicep:[21,33],ciflt:33,cin:[21,33],cira:32,cisoilw:33,citylist:24,citynam:24,civi:33,ckn:25,cld:25,cldcvr:25,cldsnow:19,cle:[23,25],clean:[16,18],clear:33,clg:33,clgtn:33,click:0,client:[0,2,12],climat:21,clip:19,clip_on:[23,28],cln:25,clone:34,cloud:[15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,33],cloud_coverag:[23,28],cloudcov:33,cloudm:33,clt:23,clwmr:33,cm:33,cmap:[19,22,24,26,27,29],cmc:[18,21],cngwdu:33,cngwdv:33,cnvdemf:33,cnvdmf:33,cnvhr:33,cnvmr:33,cnvu:33,cnvumf:33,cnvv:33,cnwat:33,coars:33,coastlin:[17,19,20,22,23,24,26,27,29,31],code:[0,16,19,21,23,24,26,28,33],coe:23,coeff:26,coeffici:33,col1:25,col2:25,col3:25,col4:25,col:33,collect:20,color:[18,19,21,22,23,24,25,28,30,31,32],colorado:24,colorbar:[22,24,26,27,29],column:[24,29,33],com:[0,16,17,22,23,25,28,34],combin:[2,16,19,24,33],combinedtimequeri:14,come:[16,19,24],command:0,commerci:0,commitgrid:5,common:[0,16,17,22,23,24,28],common_obs_spati:21,commun:[0,2,6],compar:22,compat:[0,16],complet:16,compon:[0,18,23,25,28,33],component_rang:[18,25,30],compos:0,composit:[0,19,26,29,33],compositereflectivitymaxhourli:33,compris:0,concaten:[25,30],concentr:33,concept:16,cond:33,condens:33,condit:[2,33],condp:33,conduct:[0,33],conf:0,confid:33,configur:0,confus:19,connect:[2,6],consid:[0,16,33],consider:2,consist:[0,16,24],constant:[22,25,30],constrain:4,construct:25,constructor:16,constructtimerang:3,cont:33,contain:[0,16],contb:33,content:[16,33],contet:33,context:24,conti:33,continent:22,continu:[16,26,29,30],contourf:24,contrail:33,control:0,contrust:[15,29],contt:33,conu:[17,19,24,27,29,33],conus_envelop:27,conusmergedreflect:33,conusplusmergedreflect:33,convect:33,conveni:[2,16],converg:33,convers:3,convert:[3,16,17,18,19,22,23,28],convert_temperatur:22,converttodatetim:3,convp:33,coolwarm:29,coord:19,coordin:[0,9,16,22,33],copi:17,corf:21,corff:21,corffm:21,corfm:21,coronagraph:33,correct:[23,28,33],correl:[16,26],correspond:16,cosd:16,cosmic:33,cot:[0,25],could:[2,16,19],count:[26,33],counti:[16,24,28],covari:33,cover:[21,25,33],coverag:33,covmm:33,covmz:33,covpsp:33,covqm:33,covqq:33,covqvv:33,covqz:33,covtm:33,covtt:33,covtvv:33,covtw:33,covtz:33,covvvvv:33,covzz:33,cp3hr:21,cp6hr:21,cp:21,cpofp:33,cpozp:33,cppaf:33,cpr:[21,23],cprat:33,cprd:21,cqv:25,cr:[17,19,20,22,23,24,26,27,28,29,31],crain3hr:21,crain6hr:21,crain:[21,33],creat:[0,2,16,17,18,19,20,22,23,25,27,28,30,31,34],creatingent:[15,19,29],crest:33,crestmaxstreamflow:33,crestmaxustreamflow:33,crestsoilmoistur:33,critic:33,critt1:21,crl:25,cross:33,crr:25,crswkt:12,crtfrq:33,crw:23,cs2:22,cs:[22,24,26,27,29],csdlf:33,csdsf:33,csm:29,csnow3hr:21,csnow6hr:21,csnow:[21,33],csrate:33,csrwe:33,csulf:33,csusf:33,ct:33,cth:29,ctl:33,ctop:33,ctophqi:33,ctot:21,ctp:33,ctstm:33,ctt:29,cty:25,ctyp:33,cuefi:33,cultur:[24,29,31],cumnrm:21,cumshr:21,cumulonimbu:33,current:[16,33],curu:21,custom:16,custom_layout:[23,28],cv:25,cvm:25,cwat:33,cwdi:33,cweu:25,cwfn:25,cwkx:25,cwlb:25,cwlo:25,cwlt:25,cwlw:25,cwmw:25,cwo:25,cwork:33,cwp:33,cwph:25,cwqg:25,cwr:33,cwsa:25,cwse:25,cwzb:25,cwzc:25,cwzv:25,cyah:25,cyan:19,cyaw:25,cybk:25,cybu:25,cycb:25,cycg:25,cycl:[2,15,18,19,21,22,25,26,27],cyclon:33,cycx:25,cyda:25,cyeg:25,cyev:25,cyf:25,cyfb:25,cyfo:25,cygq:25,cyhm:25,cyhz:25,cyjt:25,cylh:25,cylj:25,cymd:25,cymo:25,cymt:25,cymx:25,cyoc:25,cyow:25,cypa:25,cype:25,cypl:25,cypq:25,cyqa:25,cyqd:25,cyqg:25,cyqh:25,cyqi:25,cyqk:25,cyqq:25,cyqr:25,cyqt:25,cyqx:25,cyrb:25,cysi:25,cysm:25,cyt:25,cyth:25,cytl:25,cyul:25,cyux:25,cyvo:25,cyvp:25,cyvq:25,cyvr:25,cyvv:25,cywa:25,cywg:25,cywo:25,cyx:25,cyxc:25,cyxh:25,cyxi:25,cyxu:25,cyxx:25,cyxz:25,cyy:25,cyyb:25,cyyc:25,cyyj:25,cyyq:25,cyyr:25,cyyt:25,cyyz:25,cyz:25,cyzf:25,cyzt:25,cyzv:25,d2d:0,d2dgriddata:16,d:[0,15,16,17,18,23,25,28,29,33],daemon:0,dai:[20,29,33],daili:33,dal:2,dalt:33,darkgreen:[17,23,28],darkr:[23,28],data:[0,2,4,6,7,8,9,10,20,23,24,26,27,28,29,30,31,33],data_arr:23,dataaccess:[1,2,4,6,7,8,9,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],dataaccesslay:[4,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],dataaccessregistri:16,databas:[0,16,24,28],datadestin:16,datafactoryregistri:16,dataplugin:[16,22],datarecord:7,dataset:[0,21,24,34],datasetid:[6,16],datastorag:16,datatim:[2,6,16,19,21,30],datatyp:[2,4,12,17,19,20,21,22,23,24,28,29],datauri:29,date:3,datetim:[3,10,17,18,19,20,23,25,28,29,31],datetimeconvert:14,db:[16,33],dbll:33,dbm:0,dbrdust:19,dbsl:33,dbss:33,dbz:[26,33],dcape:21,dcbl:33,dccbl:33,dcctl:33,dctl:33,dd:21,debra:19,decod:[0,16],decreas:22,deep:33,def:[19,22,23,24,26,27,28,29,31],defaultdatarequest:[16,22],defaultgeometryrequest:16,defaultgridrequest:16,deficit:33,defin:[4,21,24,29,31,33],definit:[16,24],defv:21,deg2rad:30,deg:[25,33],degc:[18,23,25,28,30],degf:[17,23,28,30],degre:[22,23,28,33],del2gh:21,deleg:16,delta:33,den:[25,33],densiti:33,depend:[2,16,19,21,24,33],depmn:33,deposit:33,depr:33,depress:33,depth:33,depval:10,deriv:[0,16,26,29,33],describ:[0,19],descript:[10,33],design:[0,19],desir:[16,19],desktop:0,destin:16,destunit:22,detail:[16,21],detect:[20,33],determin:[0,16,18,27],determinedrtoffset:13,detrain:33,dev:33,develop:[0,20,34],deviat:33,devmsl:33,dew:33,dew_point_temperatur:[23,28],dewpoint:[18,23,28,30],df:21,dfw:23,dhr:29,diagnost:33,dice:33,dict:[17,20,22,23,24,26,27,28,29,31],dictionari:[2,4,6,23,28],difeflux:33,diff:26,differ:[0,16,21,22,24,33],differenti:33,diffus:33,dififlux:33,difpflux:33,digit:[15,26],dim:33,dimens:19,dimension:0,dir:25,dirc:33,dirdegtru:33,direc:[30,33],direct:[23,28,33],directli:[0,19,24],directori:19,dirpw:33,dirsw:33,dirwww:33,discharg:20,disclosur:24,disk:[19,33],dispers:33,displai:[0,16,34],display:0,dissip:33,dist:33,distinct:16,distirubt:25,distribut:0,diverg:33,divers:16,divf:21,divfn:21,divid:33,dlh:23,dlwrf:33,dm:33,dman:30,dobson:33,document:[16,21],doe:[16,25],domain:[0,24],don:[16,19],done:[16,19],dot:[18,30],doubl:8,dov:25,down:17,downdraft:33,download:[0,24],downward:33,dp:[21,33],dpblw:33,dpd:21,dpg:25,dpi:[19,23],dpmsl:33,dpt:[18,21,28,33],drag:33,draw:[17,19,25,27,30],draw_label:[22,24,26,28,29,31],dream:16,drift:33,drop:33,droplet:33,drt:23,dry:33,dry_laps:[25,30],dsc:25,dsd:25,dskdai:33,dskint:33,dskngt:33,dsm:23,dstack:19,dstype:[17,22,23,28],dswrf:33,dt:[21,33],dtrf:33,dtx:25,dtype:[17,18,23,28,31],due:33,durat:33,dure:[2,22],dust:19,duvb:33,dvadv:21,dvl:29,dvn:25,dwpc:25,dwuvr:33,dwww:33,dy:25,dynamicseri:[3,17,22,23,28],dz:21,dzdt:33,e28:25,e74:25,e7e7e7:28,e:[0,16,23,25,28,29,33],ea:33,each:[2,16,19,24,25,28,31],eas:16,easier:16,easiest:22,easili:24,east:[19,29,33],east_6km:21,east_pr_6km:21,eastward_wind:[23,28],eat:25,eatm:33,eax:25,echo:[26,33],echotop18:33,echotop30:33,echotop50:33,echotop60:33,ecmwf:33,econu:[19,29],eddi:33,edex:[2,6,15,16,17,18,20,22,23,25,26,27,28,29,30,31,34],edex_camel:0,edex_ldm:0,edex_postgr:0,edex_url:21,edexserv:[17,20,23,28],edg:22,edgecolor:[19,24,27,28,31],editor:0,edu:[0,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,34],edw:25,eet:29,ef25m:33,ef50m:33,efd:29,effect:[16,33],effici:33,effict:34,efl:25,ehelx:33,ehi01:21,ehi:21,ehii:21,ehlt:33,either:[0,16,21,31,34],elcden:33,electmp:33,electr:33,electron:33,element:[6,9,21,23],elev:[24,30,33],eli:23,elif:[17,18,19,23,28],ellips:19,elon:33,elonn:33,elp:23,els:[17,18,19,21,23,26,27,28,31],elsct:33,elyr:33,email:34,embed:33,emeso:29,emiss:33,emit:20,emnp:33,emp:25,emploi:0,empti:18,emsp:21,enabl:[16,24],encod:33,encode_dep_v:10,encode_radi:10,encode_thresh_v:10,encourag:0,end:[0,17,19,23,24,25,28],endrang:[17,23,28],energi:33,engeri:33,engin:33,enhanc:[0,26],enl:25,ensur:0,entir:[0,24,33],entiti:[0,15,19],entitl:0,enumer:[24,27,29],env:[4,16,22,34],envelop:[2,4,12,16,17,18,22,24,27,28],environ:[0,2,34],environment:[0,20],eocn:33,eph:23,epot:33,epsr:33,ept:21,epta:21,eptc:21,eptgrd:21,eptgrdm:21,epv:21,epvg:21,epvt1:21,epvt2:21,equilibrium:33,equival:33,error:[0,16,21,33],esp2:21,esp:21,essenti:16,establish:[19,24],estc:25,estim:33,estof:21,estpc:33,estuwind:33,estvwind:33,eta:[25,33],etal:33,etc:[0,16,18],etcwl:33,etot:33,etsrg:33,etss:21,euv:33,euvirr:33,euvrad:33,ev:33,evapor:33,evapotranspir:33,evapt:33,evb:33,evcw:33,evec1:33,evec2:33,evec3:33,event:20,everi:16,everyth:16,evp:33,ewatr:33,exact:19,exactli:19,exampl:[0,2,15,16,19,21,22,24,25,26,29,30,31],exceed:33,except:[11,16,21,23,25,28],excess:33,exchang:[0,33],execut:0,exercis:[17,23,28],exist:[2,16,17,19,24],exit:25,exp:25,expand:16,expect:16,experienc:34,explicit:22,exten:33,extend:[16,24,26,30],extent:[19,20,24,29],extra:33,extrem:33,f107:33,f10:33,f1:33,f2:33,f:[17,21,22,25,30,33,34],facecolor:[20,24,27,28,29,31],facilit:0,factor:33,factori:4,factorymethod:16,fall:[24,29],fals:[1,2,19,22,24,26,28,29,31],familiar:16,far:23,farenheit:22,faster:16,fat:23,fc:25,fcst:[21,27],fcsthour:25,fcsthr:27,fcstrun:[15,18,21,22,25,27],fdc:29,fdr:25,featur:[19,20,23,24,28,29,31],feature_artist:[24,27,28],featureartist:[24,27,28],feed:0,feel:[19,34],felt:16,few:[16,19,21,23,28],ff:21,ffc:25,ffg01:33,ffg03:33,ffg06:33,ffg12:33,ffg24:33,ffg:[21,33],ffmp:16,ffr01:33,ffr03:33,ffr06:33,ffr12:33,ffr24:33,ffrun:33,fgen:21,fhag:18,fhu:25,fice:33,field:[16,24,33],fig2:22,fig:[17,19,20,22,23,24,26,27,28,29,31],fig_synop:28,figh:19,figsiz:[17,18,20,22,23,24,25,26,27,28,29,30,31],figur:[18,19,22,23,25,29,30],figw:19,file:[0,10,16,19],filter:[2,21,28],filterwarn:[17,23,25,26,28],find:[2,21],fine:[16,33],finish:0,fire:[20,33],firedi:33,fireodt:33,fireolk:33,first:[9,16,19,20,24,29,31,33],fix:[21,22],fl:28,flag:30,flash:[20,33],flat:26,flatten:26,fldcp:33,flg:[23,25],flght:33,flight:33,float64:31,floatarraywrapp:16,flood:[20,33],florida:28,flow:0,flown:20,flp:25,flux:33,fmt:[23,28],fnd:21,fnmoc:21,fnvec:21,fog:29,folder:[16,19],follow:[0,16,19,25,30],fontsiz:[17,23,28],footnot:19,footnotestr:19,forc:[33,34],forcast:21,forecast:[0,2,6,20,21,22,29,32,33,34],forecasthr:2,forecastmodel:25,forg:34,form:0,format:[0,20,21,23],foss:0,foss_cots_licens:0,found:[16,17,18,21,26,28],fpk:25,fprate:33,fractil:33,fraction:[19,23,28,33],frain:33,framework:[2,6],free:[0,16,19,33,34],freez:33,freq:33,frequenc:[20,33],frequent:16,fri:25,friction:33,fricv:33,frime:33,from:[0,2,3,16,17,18,19,20,21,22,23,26,27,28,29,30,31,33,34],fromtimestamp:23,front:0,frozen:33,frozr:33,frzr:33,fsd:[21,23],fsi:25,fsvec:21,ftr:25,full:[2,15,16,21,24,29,30],fulli:19,fundament:0,further:0,furthermor:16,futur:16,fvec:21,fwd:25,fwr:21,fzra1:21,fzra2:21,g001:25,g003:25,g004:25,g005:25,g007:25,g009:25,g:[16,18,19,25,30,33],ga:28,gage:16,gamma:21,gather:19,gaug:33,gaugecorrqpe01h:33,gaugecorrqpe03h:33,gaugecorrqpe06h:33,gaugecorrqpe12h:33,gaugecorrqpe24h:33,gaugecorrqpe48h:33,gaugecorrqpe72h:33,gaugeinfindex01h:33,gaugeinfindex03h:33,gaugeinfindex06h:33,gaugeinfindex12h:33,gaugeinfindex24h:33,gaugeinfindex48h:33,gaugeinfindex72h:33,gaugeonlyqpe01h:33,gaugeonlyqpe03h:33,gaugeonlyqpe06h:33,gaugeonlyqpe12h:33,gaugeonlyqpe24h:33,gaugeonlyqpe48h:33,gaugeonlyqpe72h:33,gc137:33,gca:19,gcbl:33,gctl:33,gdp:25,gdv:25,gempak:[17,25],gener:[2,16,27],geoax:22,geocolor:19,geocolr:19,geodatarecord:8,geograph:[21,24,34],geoid:33,geom:[15,25,28,31],geom_count:31,geom_typ:31,geometr:33,geometri:[2,4,8,16,17,18,24,27,28,31],geomfield:[24,28],geopotenti:33,georgia:28,geospati:16,geostationari:[19,32],geovort:21,geow:21,geowm:21,get:[2,4,7,8,9,10,16,17,18,22,23,24,28,29,30,31],get_cloud_cov:[23,28],get_cmap:[22,24,26,27],get_data_typ:10,get_datetime_str:10,get_dpi:19,get_hdf5_data:[10,15],get_head:10,getattribut:[7,16,20],getavailablelevel:[2,12,15,18,21,26],getavailablelocationnam:[2,12,15,16,19,21,25,26,29,30],getavailableparamet:[2,12,15,20,21,23,26,28,29],getavailabletim:[1,2,12,15,16,18,19,20,21,22,25,26,27,29,30,31],getdata:16,getdatatim:[7,15,16,17,19,20,21,22,23,25,26,27,28,29,30,31],getdatatyp:[4,16],getenvelop:[4,16],getfcsttim:[21,25,27],getforecastrun:[2,15,18,21,22,25,27],getgeometri:[2,8,15,16,20,24,25,28,31],getgeometrydata:[2,12,15,16,17,20,21,23,24,25,28,30,31],getgriddata:[2,12,15,16,19,21,22,24,26,27,29],getgridgeometri:16,getgridinventori:5,getidentifi:[4,16],getidentifiervalu:[2,12,15,19,20,29],getlatcoord:16,getlatloncoord:[9,15,21,22,24,26,27,29],getlevel:[4,7,16,22,26],getlocationnam:[4,7,15,16,21,22,25,26,27,31],getloncoord:16,getmetarob:[2,17,28],getnotificationfilt:12,getnumb:[8,16,23,24,25,28,30],getoptionalidentifi:[2,12,19,29],getparamet:[8,9,16,21,22,23,25,26,29,30,31],getparmlist:5,getradarproductid:[2,26],getradarproductnam:[2,26],getrawdata:[9,15,16,19,21,22,24,26,27,29],getreftim:[15,18,19,20,21,22,25,26,27,29,30,31],getrequiredidentifi:[2,12],getselecttr:5,getsiteid:5,getsound:[6,18],getstoragerequest:16,getstr:[8,16,23,24,28,30,31],getsupporteddatatyp:[2,12,21],getsynopticob:[2,28],gettyp:[8,16],getunit:[8,9,16,21,26,30],getvalidperiod:[15,25,31],gf:[21,25],gfe:[0,4,5,16,21],gfeeditarea:21,gfegriddata:16,gflux:33,gfs1p0:21,gfs20:[18,21],gfs40:16,gh:[21,33],ght:33,ghxsm2:21,ghxsm:21,gi131:33,gi:24,git:34,github:[0,25,34],given:[3,6,21,33],gjt:23,gl:[22,24,26,28,29,31],gld:23,glm:15,glm_point:20,glmev:20,glmfl:20,glmgr:[15,20],global:[21,33],globe:19,glry:25,gm:29,gmt:[20,25],gmx1:25,gnb:25,gnc:25,go:[16,21,22],goal:16,goe:[32,33],goes16:19,good:24,gov:25,gp:33,gpa:33,gpm:33,grab:[19,23,28],grad:33,gradient:33,gradp:33,grai:19,graphic:0,graup:33,graupel:33,graupl:33,graviti:33,grb:23,greatest:27,green:17,grf:25,grib:[0,16,22,33],grid:[0,2,4,6,9,16,18,19,24,26,27,28,29,32],grid_cycl:21,grid_data:21,grid_fcstrun:21,grid_level:21,grid_loc:21,grid_param:21,grid_request:21,grid_respons:21,grid_tim:21,griddata:24,griddatafactori:16,griddatarecord:9,gridgeometry2d:16,gridlin:[19,20,22,24,26,27,28,29,31],grle:33,ground:[20,21,22,33],groundwat:33,group:[20,24],growth:33,gscbl:33,gsctl:33,gsgso:33,gtb:25,gtp:25,guarante:2,guid:19,guidanc:33,gust:33,gv:25,gvl:25,gvv:21,gwd:33,gwdu:33,gwdv:33,gwrec:33,gyx:25,h02:25,h50above0c:33,h50abovem20c:33,h60above0c:33,h60abovem20c:33,h:[17,18,19,23,25,28,29,30,33],ha:[0,16,19,24],hag:21,hai:25,hail:33,hailprob:33,hailstorm:20,hain:33,hall:33,hand:[23,28],handl:[0,16,24],handler:[16,25],harad:33,hasn:19,hat:0,have:[16,21,23,28,31,34],havni:33,hazard:16,hcbb:33,hcbl:33,hcbt:33,hcdc:33,hcl:33,hcly:33,hctl:33,hdfgroup:0,hdln:31,header:0,headerformat:10,heat:33,heavi:33,hecbb:33,hecbt:33,height:[16,19,20,21,22,24,29,30,33],heightcompositereflect:33,heightcthgt:33,heightllcompositereflect:33,helcor:33,heli:21,helic:[21,33],heliospher:33,help:21,helper:16,hemispher:29,here:[19,21,22,23,24,25,28],hf:33,hflux:33,hfr:21,hgr:25,hgt:33,hgtag:33,hgtn:33,hh:21,hhc:29,hi1:21,hi3:21,hi4:21,hi:21,hidden:0,hide:16,hidx:21,hierarch:0,hierarchi:16,high:[0,20,33],highest:33,highlayercompositereflect:33,highli:0,hindex:33,hint:2,hlcy:33,hln:23,hmc:33,hmn:25,hodograph:[18,30],hom:25,hoo:25,hook:16,horizont:[22,24,26,27,29,33],host:[2,5,6,11,12,30],hot:23,hou:23,hour:[6,23,26,29,33],hourdiff:29,hourli:33,how:[21,22,34],howev:16,hpbl:33,hpcguid:21,hpcqpfndfd:21,hprimf:33,hr:[27,29,33],hrcono:33,hrrr:[21,27],hsclw:33,hsi:25,hstdv:33,hsv:23,htfl:33,htgl:33,htman:30,htsgw:33,htslw:33,http:[0,25,34],htx:33,huge:16,humid:33,humidi:33,hurrican:20,hy:25,hybl:33,hybrid:[15,26,33],hydro:16,hydrometeor:26,hyr:25,hz:33,i:[0,16,21,24,27,28,29],ic:33,icaht:33,icao:[16,33],icc:25,icec:33,iceg:33,icetk:33,ici:33,icib:33,icip:33,icit:33,icmr:33,icon:0,icprb:33,icsev:33,ict:23,icwat:33,id:[16,19,23,24,29,30],ida:23,idata:16,idatafactori:16,idatarequest:[2,14,16,19],idatastor:16,idd:0,ideal:16,identifi:[2,4,16,19,22,23,24,29],identifierkei:[2,12],idetifi:2,idra:[10,15],idrl:33,ierl:33,if1rl:33,if2rl:33,ifpclient:14,igeometrydata:[2,16],igeometrydatafactori:16,igeometryfactori:16,igeometryrequest:16,igm:25,ignor:[2,16,17,23,25,26,28],igriddata:[2,16],igriddatafactori:16,igridfactori:16,igridrequest:16,ihf:16,ii:27,iintegr:33,il:25,iliqw:33,iln:25,ilw:33,ilx:25,imag:[0,15,22,24,29],imageri:[0,19,21,27,32,33],imftsw:33,imfww:33,immedi:2,impact:20,implement:[0,2],implent:16,improv:16,imshow:19,imt:25,imwf:33,inc:[18,27],inch:[19,23,27,28,33],includ:[0,3,16,20,25,34],inclus:30,incompatiblerequestexcept:16,incorrectli:22,increas:22,increment:[16,18,25,30],ind:23,independ:0,index:[14,29,33],indic:[2,16,33],individu:[16,19,33],influenc:33,info:16,inform:[0,2,19,20,21,24],infrar:33,ingest:[0,16],ingestgrib:0,inhibit:33,init:0,initi:[2,30,33],ink:25,inlin:[17,18,20,23,25,26,27,28,29,30,31],inloc:[24,28],input:22,ins:16,inset_ax:[18,25,30],inset_loc:[18,25,30],insid:[16,24],inst:26,instal:0,instanc:[2,6,19,21],instantan:33,instanti:16,instead:16,instrr:33,instruct:34,instrument:20,inteflux:33,integ:[23,26,28,33],integr:33,intens:[15,20,33],inter:0,interact:16,interest:[21,32,33,34],interfac:[0,33],intern:2,internet:0,interpol:30,interpret:[16,22],intersect:31,interv:33,intfd:33,intiflux:33,intpflux:33,inv:21,invers:33,investig:21,invok:0,iodin:33,ion:33,ionden:33,ionospher:33,iontmp:33,iplay:21,iprat:33,ipx:25,ipython3:26,ir:[29,33],irband4:33,irradi:33,isbl:33,isentrop:33,iserverrequest:16,isobar:[18,33],isol:0,isotherm:[18,25,30,33],issu:[31,34],item:[17,30],its:[0,16,21],itself:[0,16],izon:33,j:[25,27,33],jack:25,jan:23,java:[0,25],javadoc:16,jax:23,jdn:25,jep:16,jj:27,join:18,jupyt:34,just:[21,34],jvm:16,k0co:23,k40b:25,k9v9:25,k:[21,22,23,25,30,33],kabe:25,kabi:25,kabq:[23,25],kabr:25,kaci:25,kack:25,kact:25,kacv:[23,25],kag:25,kagc:25,kahn:25,kai:25,kak:25,kal:25,kalb:25,kali:25,kalo:25,kalw:25,kama:25,kan:25,kanb:25,kand:25,kaoo:25,kapa:25,kapn:25,kart:25,kase:25,kast:25,kati:25,katl:[23,25],kau:25,kaug:25,kauw:25,kavl:25,kavp:25,kaxn:25,kazo:25,kbaf:25,kbce:25,kbde:[23,25],kbdg:23,kbdl:25,kbdr:25,kbed:25,kbfd:25,kbff:25,kbfi:25,kbfl:25,kbgm:25,kbgr:25,kbhb:25,kbhm:25,kbi:[23,25],kbih:25,kbil:[23,25],kbjc:25,kbji:25,kbke:25,kbkw:25,kblf:25,kblh:25,kbli:25,kbml:25,kbna:25,kbno:25,kbnv:25,kbo:[23,25],kboi:[23,25],kbpt:25,kbqk:25,kbrd:25,kbrl:25,kbro:[23,25],kbtl:25,kbtm:25,kbtr:25,kbtv:25,kbuf:25,kbui:23,kbur:25,kbvi:25,kbvx:25,kbvy:25,kbwg:25,kbwi:25,kbyi:25,kbzn:25,kcae:25,kcak:25,kcar:[23,25],kcd:25,kcdc:25,kcdr:25,kcec:25,kcef:25,kcgi:25,kcgx:25,kch:[23,25],kcha:25,kchh:25,kcho:25,kcid:25,kciu:25,kckb:25,kckl:25,kcle:[23,25],kcll:25,kclm:25,kclt:[23,25],kcmh:25,kcmi:25,kcmx:25,kcnm:25,kcnu:25,kco:25,kcod:25,kcoe:[23,25],kcon:25,kcou:25,kcpr:[23,25],kcre:25,kcrp:25,kcrq:25,kcrw:[23,25],kcsg:25,kcsv:25,kctb:25,kcvg:25,kcwa:25,kcy:25,kdab:25,kdag:25,kdai:25,kdal:25,kdan:25,kdbq:25,kdca:25,kddc:25,kdec:25,kden:25,kdet:25,kdfw:[23,25],kdhn:25,kdht:25,kdik:25,kdl:25,kdlh:[23,25],kdmn:25,kdpa:25,kdra:25,kdro:25,kdrt:[23,25],kdsm:[23,25],kdtw:25,kdug:25,kduj:25,keat:25,keau:25,kecg:25,keed:25,keep:[19,24],kege:25,kei:[4,6,7,16],kekn:25,keko:25,kel:25,keld:25,keli:[23,25],kelm:25,kelo:25,kelp:[23,25],kelvin:[18,22,28],keng:33,kenv:25,keph:[23,25],kepo:25,kepz:25,keri:25,kesf:25,keug:25,kevv:25,kewb:25,kewn:25,kewr:25,keyw:25,kfai:25,kfam:25,kfar:[23,25],kfat:[23,25],kfca:25,kfdy:25,kfkl:25,kflg:[23,25],kfll:25,kflo:25,kfmn:25,kfmy:25,kfnt:25,kfoe:25,kfpr:25,kfrm:25,kfsd:[23,25],kfsm:25,kft:33,kftw:25,kfty:25,kfve:25,kfvx:25,kfwa:25,kfxe:25,kfyv:25,kg:[25,26,33],kgag:25,kgcc:25,kgck:25,kgcn:25,kgeg:25,kgfk:25,kgfl:25,kggg:25,kggw:25,kgjt:[23,25],kgl:25,kgld:[23,25],kglh:25,kgmu:25,kgnr:25,kgnv:25,kgon:25,kgpt:25,kgrb:[23,25],kgri:25,kgrr:25,kgso:25,kgsp:25,kgtf:25,kguc:25,kgup:25,kgwo:25,kgyi:25,kgzh:25,khat:25,khbr:25,khdn:25,khib:25,khio:25,khky:25,khlg:25,khln:[23,25],khob:25,khon:25,khot:[23,25],khou:[23,25],khpn:25,khqm:25,khrl:25,khro:25,khsv:[23,25],kht:25,khth:25,khuf:25,khul:25,khut:25,khvn:25,khvr:25,khya:25,ki:[21,29],kiad:25,kiag:25,kiah:25,kict:[23,25],kida:[23,25],kil:25,kilg:25,kilm:25,kind:[21,23,25,33],kinect:33,kinet:33,kink:25,kinl:25,kint:25,kinw:25,kipl:25,kipt:25,kisn:25,kisp:25,kith:25,kiwd:25,kjac:25,kjan:[23,25],kjax:[23,25],kjbr:25,kjfk:25,kjhw:25,kjkl:25,kjln:25,kjm:25,kjst:25,kjxn:25,kkl:25,kla:25,klaf:25,klan:25,klar:25,klax:[23,25],klbb:[23,25],klbe:25,klbf:[23,25,30],klcb:25,klch:25,kleb:25,klex:[23,25],klfk:25,klft:25,klga:25,klgb:25,klgu:25,klit:25,klmt:[23,25],klnd:25,klnk:[23,25],klol:25,kloz:25,klrd:25,klse:25,klsv:23,kluk:25,klv:25,klw:25,klwb:25,klwm:25,klwt:25,klyh:25,klzk:25,km:33,kmaf:25,kmb:25,kmcb:25,kmce:25,kmci:25,kmcn:25,kmco:25,kmcw:25,kmdn:25,kmdt:25,kmdw:25,kmei:25,kmem:[23,25],kmfd:25,kmfe:25,kmfr:25,kmgm:25,kmgw:25,kmhe:25,kmhk:25,kmht:25,kmhx:[15,25,26],kmhx_0:26,kmia:[23,25],kmiv:25,kmkc:25,kmke:25,kmkg:25,kmkl:25,kml:25,kmlb:25,kmlc:25,kmlf:23,kmli:25,kmlp:23,kmlt:25,kmlu:25,kmmu:25,kmob:[23,25],kmot:25,kmpv:25,kmqt:25,kmrb:25,kmry:25,kmsl:25,kmsn:25,kmso:[23,25],kmsp:[23,25],kmss:25,kmsy:[23,25],kmtj:25,kmtn:25,kmwh:25,kmyr:25,kna:25,knes1:33,knew:25,knl:25,knot:[18,23,25,28,30],know:[16,19,22],known:[0,19,34],knsi:25,knyc:23,knyl:23,ko:[30,33],koak:25,kofk:25,kogd:25,kokc:[23,25],kolf:23,koli:23,kolm:25,koma:25,kont:25,kopf:25,koqu:25,kord:[23,25],korf:25,korh:25,kosh:25,koth:[23,25],kotm:25,kox:33,kp11:25,kp38:25,kpa:33,kpae:25,kpah:25,kpbf:25,kpbi:25,kpdk:25,kpdt:[23,25],kpdx:[23,25],kpfn:25,kpga:25,kphf:25,kphl:[23,25],kphn:25,kphx:[23,25],kpia:25,kpib:25,kpie:25,kpih:[23,25],kpir:25,kpit:[23,25],kpkb:25,kpln:25,kpmd:25,kpn:25,kpnc:25,kpne:25,kpou:25,kpqi:25,kprb:25,kprc:25,kpsc:25,kpsm:[23,25],kpsp:25,kptk:25,kpub:25,kpuw:23,kpvd:25,kpvu:25,kpwm:25,krad:25,krap:[23,25],krbl:25,krdd:25,krdg:25,krdm:[23,25],krdu:25,krf:21,krfd:25,kric:[23,25],kriw:25,krk:25,krkd:25,krno:[23,25],krnt:25,kroa:25,kroc:25,krow:25,krsl:25,krst:25,krsw:25,krum:25,krut:23,krwf:25,krwi:25,krwl:25,ksac:25,ksaf:25,ksan:25,ksat:[23,25],ksav:25,ksba:25,ksbn:25,ksbp:25,ksby:25,ksch:25,ksck:25,ksdf:25,ksdm:25,ksdy:25,ksea:[23,25],ksep:25,ksff:25,ksfo:[23,25],ksgf:25,ksgu:25,kshr:25,kshv:[23,25],ksjc:25,ksjt:25,kslc:[23,25],ksle:25,kslk:25,ksln:25,ksmf:25,ksmx:25,ksn:25,ksna:25,ksp:25,kspi:25,ksrq:25,kssi:25,kst:25,kstj:25,kstl:25,kstp:25,ksu:25,ksun:25,ksux:25,ksve:25,kswf:25,ksyr:[23,25],ktc:25,ktcc:25,ktcl:25,kteb:25,ktiw:25,ktlh:[23,25],ktmb:25,ktol:25,ktop:25,ktpa:[23,25],ktph:25,ktri:25,ktrk:25,ktrm:25,kttd:25,kttf:23,kttn:25,ktu:25,ktul:25,ktup:25,ktvc:25,ktvl:25,ktwf:25,ktxk:25,kty:25,ktyr:25,kuca:25,kuil:23,kuin:25,kuki:25,kunv:[23,25],kurtosi:33,kvct:25,kvel:25,kvih:23,kvld:25,kvny:25,kvrb:25,kwarg:[2,12],kwjf:25,kwmc:[23,25],kwrl:25,kwy:25,kx:33,ky22:25,ky26:25,kykm:25,kykn:25,kyng:25,kyum:25,kzzv:25,l1783:25,l:[18,19,21,25,29,30,33],la:28,laa:25,label:22,lai:33,lake:23,lambda:33,lambertconform:[17,23,28],lamp2p5:21,land:[23,31,33],landn:33,landu:33,languag:16,lap:25,lapp:33,lapr:33,laps:33,larg:[24,33],last:[17,21,23,31],lasthourdatetim:[17,23,28],lat:[2,6,9,15,16,17,18,19,21,22,24,26,27,28,29],latent:33,later:[23,28,31],latest:[2,18,29],latitud:[16,17,18,22,23,24,28,33],latitude_formatt:[20,22,24,26,27,28,29,31],latlondeleg:9,latlongrid:9,lauv:33,lavni:33,lavv:33,lax:23,layer:[16,21,26,33],layth:33,lazi:2,lazygridlatlon:12,lazyloadgridlatlon:[2,12],lbb:23,lbf:23,lbslw:33,lbthl:33,lby:25,lcbl:33,lcdc:33,lcl:[25,30],lcl_pressur:30,lcl_temperatur:30,lcly:33,lctl:33,lcy:33,ldadmesonet:16,ldl:25,ldmd:0,lead:22,leaf:33,left:[19,30],leftov:2,legendr:33,len:[17,18,22,24,26,28,29,31],length:[31,33],less:[16,18],let:[16,19,22],level3:32,level:[0,2,4,6,7,12,16,18,22,24,25,26,30,32,33],levelreq:18,lex:23,lftx:33,lhtfl:33,lhx:25,li:[21,29],lib:22,librari:22,lic:25,lift:[29,33],light:[20,33],lightn:[32,33],lightningdensity15min:33,lightningdensity1min:33,lightningdensity30min:33,lightningdensity5min:33,lightningprobabilitynext30min:33,like:[3,16,21],limb:33,limit:[2,16,19,28],line:[16,18,19,24,25,30],linestyl:[18,19,24,25,28,29,30],linewidth:[18,19,23,24,25,27,28,30],linux:0,lipmf:33,liq:26,liquid:33,liqvsm:33,lisfc2x:21,list:[2,4,6,7,8,16,18,20,25,26,29],live:19,ll:[21,22,24,34],llcompositereflect:33,llsm:33,lltw:33,lm5:21,lm6:21,lmbint:33,lmbsr:33,lmh:33,lmt:23,lmv:33,ln:33,lnk:23,lo:33,load:2,loam:33,loc:[18,25,30],local:[0,16,19],localhost:12,locap:21,locat:[2,4,7,16,17,20,22,24,30],locationfield:[24,28],locationnam:[2,4,12,16,22],log10:33,log:[0,25,30,33],logger:0,logic:[22,24],logp:30,lon:[2,6,9,15,16,17,18,19,21,22,24,26,27,28,29],longer:19,longitud:[16,17,18,22,23,24,28,33],longitude_formatt:[20,22,24,26,27,28,29,31],look:[16,19,21,22,24],lookup:16,loop:[19,31],lopp:33,lor:25,louisiana:28,louv:33,lovv:33,low:[29,33],lower:[29,33],lowest:33,lowlayercompositereflect:33,lp:33,lpmtf:33,lrghr:33,lrgmr:33,lrr:25,lsclw:33,lsf:25,lsoil:33,lspa:33,lsprate:33,lssrate:33,lssrwe:33,lst:29,lsv:23,lswp:33,ltng:33,lu:25,lvl:[18,21],lvm:25,lw1:25,lwavr:33,lwbz:33,lwhr:33,lwrad:33,m2:33,m2spw:33,m6:33,m:[17,18,23,25,26,28,29,30,33],ma:24,mac:[0,19,25],macat:33,mactp:33,made:[16,19,24],madv:21,magenta:19,magnet:33,magnitud:[18,33],mai:[0,16,19,22,28,34],main:[0,16,33],maintain:16,maip:33,majorriv:24,make:[16,22,28],make_map:[26,27,28,29,31],makedir:19,maketim:13,man_param:30,manag:[0,16,34],mandatori:30,mangeo:30,mani:[22,24,28],manifest:16,manipul:[0,16,19,22,24],manner:16,manual:25,map:[16,21,23,27,28,29,32,33],mapdata:[24,28],mapgeometryfactori:16,mapper:[32,33],marker:[20,24,27],markerfacecolor:30,mask:[17,28,33],masked_invalid:24,mass:33,match:[2,16],math:[18,25,30],mathemat:16,matplotlib:[17,18,19,20,22,23,24,25,26,27,28,29,30,31],matplotplib:24,matter:33,max:[17,18,22,24,25,26,27,29,30,33],maxah:33,maxdvv:33,maxept:21,maximum:[24,27,33],maxref:33,maxrh:33,maxuvv:33,maxuw:33,maxvw:33,maxw:33,maxwh:33,maz:25,mb:[18,21,30,33],mbar:[23,25,28,30],mcbl:33,mcdc:33,mcida:29,mcly:33,mcon2:21,mcon:21,mconv:33,mctl:33,mcy:33,mdpc:25,mdpp:25,mdsd:25,mdst:25,mean:[16,33],measur:20,mecat:33,mectp:33,medium:33,mei:33,melbrn:33,melt:[26,33],mem:23,memori:16,merg:33,merged_counti:24,mergedazshear02kmagl:33,mergedazshear36kmagl:33,mergedbasereflect:33,mergedbasereflectivityqc:33,mergedreflectivityatlowestaltitud:33,mergedreflectivitycomposit:33,mergedreflectivityqccomposit:33,mergedreflectivityqcomposit:33,mergesound:25,meridion:33,mesh:33,meshtrack120min:33,meshtrack1440min:33,meshtrack240min:33,meshtrack30min:33,meshtrack360min:33,meshtrack60min:33,mesocyclon:26,messag:[0,16],met:[2,16],metadata:0,metar:[2,16,17,32],meteorolog:[0,34],meteosat:29,meter:[21,22,24],method:[2,16,19,21],metpi:[17,18,27,28,30,32],metr:33,mf:16,mflux:33,mflx:33,mg:33,mgfl:25,mggt:25,mght:25,mgpb:25,mgsj:25,mham:25,mhca:25,mhch:25,mhlc:25,mhle:25,mhlm:25,mhnj:25,mhpl:25,mhro:25,mhsr:25,mhte:25,mhtg:25,mhyr:25,mia:23,mib:25,microburst:20,micron:[29,33],mid:33,middl:33,mie:25,might:[2,21,34],min:[17,18,22,24,26,27,29,33],mind:16,minept:21,miniconda3:22,minim:33,minimum:[24,33],minrh:33,minut:[17,28,29],miscellan:29,miss:[28,30],missing200:33,mississippi:28,mix1:21,mix2:21,mix:[25,33],mixht:33,mixl:33,mixli:33,mixr:33,mixrat:21,mkj:25,mkjp:25,mld:25,mlf:23,mllcl:21,mlp:23,mlyno:33,mm:[21,33],mma:25,mmaa:25,mmag:21,mmbt:25,mmc:25,mmce:25,mmcl:25,mmcn:25,mmcu:25,mmcv:25,mmcz:25,mmdo:25,mmgl:25,mmgm:25,mmho:25,mmlp:25,mmma:25,mmmd:25,mmml:25,mmmm:25,mmmt:25,mmmx:25,mmmy:25,mmmz:25,mmnl:25,mmp:21,mmpr:25,mmrx:25,mmsd:25,mmsp:25,mmtc:25,mmtj:25,mmtm:25,mmto:25,mmtp:25,mmun:25,mmvr:25,mmzc:25,mmzh:25,mmzo:25,mnmg:25,mnpc:25,mnt3hr:21,mnt6hr:21,mntsf:33,mob:23,moddelsound:16,model:[6,21,22,29,32,33],modelheight0c:33,modelnam:[6,16,18],modelsound:[14,18,21,25],modelsurfacetemperatur:33,modelwetbulbtemperatur:33,moder:33,modern:0,modifi:[0,16,19],moisten:33,moistur:33,moisutr:25,momentum:33,monoton:22,montgomeri:33,mor:25,more:[16,19,21,22],mosaic:33,most:[0,16,21,22,30,33],motion:33,mountain:33,mountainmapperqpe01h:33,mountainmapperqpe03h:33,mountainmapperqpe06h:33,mountainmapperqpe12h:33,mountainmapperqpe24h:33,mountainmapperqpe48h:33,mountainmapperqpe72h:33,move:16,mpbo:25,mpch:25,mpda:25,mpl:[20,22,24,26,27,28,29,31],mpl_toolkit:[18,25,30],mpmg:25,mpsa:25,mpto:25,mpv:21,mpx:25,mr:25,mrch:25,mrcono:33,mrf:[23,25],mrlb:25,mrlm:25,mrm:21,mrms_0500:21,mrms_1000:21,mrmsvil:33,mrmsvildens:33,mroc:25,mrpv:25,ms:28,msac:25,msfdi:21,msfi:21,msfmi:21,msg:21,msgtype:20,msl:[21,33],mslet:33,mslp:[25,33],mslpm:33,mso:23,msp:23,msr:21,msss:25,mstav:33,msy:23,mtch:25,mtha:33,mthd:33,mthe:33,mtht:33,mtl:25,mtpp:25,mtri:[25,30],mtv:[21,25],mty:25,muba:25,mubi:25,muca:25,mucap:21,mucl:25,mucm:25,mucu:25,mugm:25,mugt:25,muha:25,multi:2,multi_value_param:[23,28],multilinestr:24,multipl:[0,16,19,21,24,28],multipolygon:[15,24,28,31],mumo:25,mumz:25,mung:25,must:[2,3,16,19,25],muvr:25,muvt:25,mwcr:25,mwsl:33,mwsper:33,mxsalb:33,mxt3hr:21,mxt6hr:21,mxuphl:33,myb:25,myeg:25,mygf:25,mygw:25,myl:25,mynn:25,mzbz:25,mzptsw:33,mzpww:33,mzt:25,mzwper:33,n0r:29,n1p:29,n:[24,25,30,33],nam12:21,nam40:[18,21,27],nam:[18,25],name:[0,2,4,5,7,8,16,18,19,24,26,28,29,30,31],nan:[17,23,26,28,29,30],nanmax:26,nanmin:26,nation:[0,34],nativ:[2,3,16,19],natur:33,naturalearthfeatur:[24,29,31],navgem0p5:21,nbdsf:33,nbe:21,nbsalb:33,ncep:25,ncip:33,nck:25,ncoda:21,ncp:0,ncpcp:33,ndarrai:26,nddsf:33,ndvi:33,nearest:33,neatli:24,necessari:[16,24],need:[2,16,19,21,22,24,34],neighbor:33,neither:33,nesdi:29,net:33,netcdf:[0,19],neutral:33,neutron:33,newdatarequest:[2,12,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],newhostnam:2,nexrad3:2,nexrad:32,nexrad_data:26,nexrcomp:29,next:[19,23,28,31,33],ngx:25,nh:29,nhk:25,nice:24,nid:25,night:[20,33],nkx:25,nlat:33,nlatn:33,nlgsp:33,nlwr:33,nlwrc:33,nlwrf:33,nlwrt:33,noa:25,noaa:25,noaaport:25,nohrsc:21,nomin:[21,33],non:[33,34],none:[2,5,6,7,9,12,19,22,23,24,27,28,29,31,33],normal:[29,33],normalis:33,north:[17,23],northern:29,northward_wind:[23,28],note:[16,18,19,21,22,24,33],notebook:[17,18,20,23,24,25,26,27,28,29,30,31,34],notif:0,now:[21,24,27,28,31],np:[17,18,19,20,23,25,26,27,28,29,30,31],npixu:33,npoess:29,nru:25,nsharp:25,nsof:29,nst1:21,nst2:21,nst:21,nswr:33,nswrf:33,nswrfc:33,nswrt:33,ntat:[21,33],ntd:25,ntmp:25,ntp:29,ntrnflux:33,nuc:33,number:[0,8,16,22,24,31,33],numer:[2,33],nummand:30,nummwnd:30,numpi:[9,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31],numsigt:30,numsigw:30,numtrop:30,nw:[21,23,25,28],nwsalb:33,nwstr:33,nx:[9,12],ny:[9,12],nyc:23,nyl:23,o3mr:33,o:25,ob:[2,4,15,16,17,20,21,24,25,30,31,32],obil:33,object:[2,3,4,6,16,30],obml:33,observ:[0,17,23],observs:28,obsgeometryfactori:16,ocean:[23,33],oct:20,off:[0,19,22],offer:21,offset:[16,19,24],offsetstr:29,often:16,ohc:33,oitl:33,okai:22,okc:23,olf:23,oli:23,olyr:33,om:25,omega:[25,33],omgalf:33,oml:33,omlu:33,omlv:33,onc:[16,21],one:[16,19,21,22,24],onli:[0,2,4,21,24,33],onlin:21,onset:33,onto:19,op:24,open:[0,16,33,34],oper:[0,20,34],opt:22,option:[2,6,16,21,29],orang:[17,24],orbit:20,ord:23,order:[18,22,24,33,34],org:0,orient:[22,24,26,27,29],origin:19,orn:21,orographi:33,orthograph:20,os:[0,19],osd:33,oseq:33,oth:23,other:[0,16,19,21,24,29],otherwis:2,our:[18,19,21,22,24,27,28,29,31,34],ourselv:25,out:[2,16,21,23,28,34],outlook:33,output:21,outputdir:19,outsid:16,ovc:[23,28],over:[25,33],overal:33,overhead:2,own:[0,16],ozcat:33,ozcon:33,ozmax1:33,ozmax8:33,ozon:[29,33],p2omlt:33,p3hr:21,p6hr:21,p:[21,25,29,30,33],pa:[25,33],pacakg:34,packag:[0,16,21,22,24],pad:19,pad_inch:19,padv:21,page:24,pai:18,pair:[3,6,17],palt:33,parallel:33,param1:21,param2:21,param3:21,param:[4,8,16,17,21,23,28],paramet:[2,4,6,8,9,12,16,18,22,28,30,31,32],parameter:33,parameterin:33,paramt:25,parcal:33,parcali:33,parcel:[30,33],parcel_profil:[25,30],parm:[18,21,25,31],parm_arrai:30,parmid:5,part:[0,16],particl:33,particul:33,particular:[2,16],pass:[3,16,19,28],past:33,path:[0,19],pbe:21,pblr:33,pblreg:33,pcbb:33,pcbt:33,pcolormesh:[26,27,29],pcp:33,pcpn:33,pctp1:33,pctp2:33,pctp3:33,pctp4:33,pd:[15,31],pdf:0,pdly:33,pdmax1:33,pdmax24:33,pdt:23,pdx:23,peak:33,peaked:33,pec:21,pecbb:33,pecbt:33,pecif:16,pedersen:33,pellet:33,per:33,percent:[29,33],perform:[2,3,6,16,18],period:[25,31,33],perpendicular:33,perpw:33,person:0,perspect:0,persw:33,pertin:16,pevap:33,pevpr:33,pfrezprec:33,pfrnt:21,pfrozprec:33,pgrd1:21,pgrd:21,pgrdm:21,phase:[26,33],phenomena:20,phensig:[15,31],phensigstr:31,phl:23,photar:33,photospher:33,photosynthet:33,phx:23,physic:33,physicalel:29,pick:[19,21],pid:5,piec:[0,16],pih:23,pirep:[16,21],pit:23,piva:21,pixel:[19,33],pixst:33,plai:22,plain:33,plan:16,planetari:33,plant:33,platecarre:[17,20,22,23,24,26,27,28,29,31],plbl:33,pleas:[22,34],pli:33,plot:[18,19,20,21,24,25,26,30,31],plot_barb:[18,25,30],plot_colormap:[18,25,30],plot_dry_adiabat:18,plot_mixing_lin:18,plot_moist_adiabat:18,plot_paramet:17,plot_text:23,plpl:33,plsmden:33,plt:[17,18,19,20,22,23,24,25,26,27,28,29,30,31],plu:33,plug:16,plugin:[25,30],plugindataobject:16,pluginnam:16,pm:33,pmaxwh:33,pmtc:33,pmtf:33,png:19,poe:29,point:[15,16,17,18,19,20,21,24,25,27,33],pointdata:16,poli:[15,31],polit:24,political_boundari:[24,31],pollut:33,polygon:[15,16,17,18,24,27,28,32],pop:[24,33],popul:[16,21,24],populatedata:16,poro:33,poros:33,port:[5,11],posh:33,post:0,postgr:[0,24],pot:[21,33],pota:21,potenti:33,power:[16,29],poz:33,pozo:33,pozt:33,ppan:33,ppb:33,ppbn:33,ppbv:33,ppert:33,pperww:33,ppffg:33,ppnn:33,ppsub:33,pr:[21,25,33],practicewarn:21,prate:33,pratmp:33,prcp:33,pre:33,preced:16,precip:[26,32,33],precipit:[23,26,27,28,29,33],precipr:33,preciptyp:33,predomin:33,prepar:[16,23],prepend:23,pres_weath:[23,28],presa:33,presd:33,presdev:33,present:0,present_weath:[23,28],presn:33,pressur:[18,25,29,30,33],presur:33,presweath:[2,23,28],previou:[22,24],previous:[24,34],primari:[0,33],print:[15,17,18,19,20,21,22,23,24,25,26,27,28,29,31],prior:33,prman:30,prmsl:33,prob:33,probabilityse:33,probabl:33,proce:19,process:[0,2,16],processor:0,procon:33,prod:26,produc:22,product:[0,2,15,16,17,25,26,32,33],productid:26,productnam:26,prof:30,profil:[0,16,21,25,30],prog_disc:24,prognam:5,program:[0,34],progress:24,proj:[19,23,28],project:[16,17,19,20,22,23,24,26,27,28,29,31],proper:19,properti:29,proport:33,propos:33,proprietari:0,protden:33,proton:33,prottmp:33,provid:[0,2,16,24,34],prp01h:33,prp03h:33,prp06h:33,prp12h:33,prp24h:33,prp30min:33,prpmax:33,prptmp:33,prregi:29,prsig:30,prsigsv:33,prsigsvr:33,prsigt:30,prsvr:33,ps:30,pseudo:33,psfc:33,psm:23,psql:0,psu:33,ptan:33,ptbn:33,ptend:33,ptnn:33,ptor:33,ptr:21,ptva:21,ptyp:21,ptype:33,pull:[19,23],pulsecount:20,pulseindex:20,pure:16,purpl:17,put:[23,28],puw:23,pv:[21,33],pveq:21,pvl:33,pvmww:33,pvort:33,pw2:21,pw:[21,29,33],pwat:33,pwc:33,pwcat:33,pwper:33,pwther:33,px_height:19,px_width:19,py:[16,22,34],pydata:14,pygeometrydata:14,pygriddata:[14,22,24],pyjobject:16,pyplot:[17,18,19,20,22,23,24,25,26,27,28,29,30,31],python3:[22,34],python:[0,2,3,16,19,21,22,23,24,28,29,31],q:[25,33],qdiv:21,qmax:33,qmin:33,qnvec:21,qpe01:33,qpe01_acr:33,qpe01_alr:33,qpe01_fwr:33,qpe01_krf:33,qpe01_msr:33,qpe01_orn:33,qpe01_ptr:33,qpe01_rha:33,qpe01_rsa:33,qpe01_str:33,qpe01_tar:33,qpe01_tir:33,qpe01_tua:33,qpe06:33,qpe06_acr:33,qpe06_alr:33,qpe06_fwr:33,qpe06_krf:33,qpe06_msr:33,qpe06_orn:33,qpe06_ptr:33,qpe06_rha:33,qpe06_rsa:33,qpe06_str:33,qpe06_tar:33,qpe06_tir:33,qpe06_tua:33,qpe24:33,qpe24_acr:33,qpe24_alr:33,qpe24_fwr:33,qpe24_krf:33,qpe24_msr:33,qpe24_orn:33,qpe24_ptr:33,qpe24_rha:33,qpe24_rsa:33,qpe24_str:33,qpe24_tar:33,qpe24_tir:33,qpe24_tua:33,qpe:33,qpeffg01h:33,qpeffg03h:33,qpeffg06h:33,qpeffgmax:33,qpf06:33,qpf06_acr:33,qpf06_alr:33,qpf06_fwr:33,qpf06_krf:33,qpf06_msr:33,qpf06_orn:33,qpf06_ptr:33,qpf06_rha:33,qpf06_rsa:33,qpf06_str:33,qpf06_tar:33,qpf06_tir:33,qpf06_tua:33,qpf24:33,qpf24_acr:33,qpf24_alr:33,qpf24_fwr:33,qpf24_krf:33,qpf24_msr:33,qpf24_orn:33,qpf24_ptr:33,qpf24_rha:33,qpf24_rsa:33,qpf24_str:33,qpf24_tar:33,qpf24_tir:33,qpf24_tua:33,qpidd:0,qpv1:21,qpv2:21,qpv3:21,qpv4:21,qq:33,qrec:33,qsvec:21,qualifi:19,qualiti:33,quantit:33,queri:[0,16,18,19,24],queue:0,quick:19,quit:21,qvec:21,qz0:33,r:[16,18,19,20,25,30,33],rad:33,radar:[0,2,4,10,16,21,32,33],radar_spati:21,radarcommon:[14,15],radargridfactori:16,radaronlyqpe01h:33,radaronlyqpe03h:33,radaronlyqpe06h:33,radaronlyqpe12h:33,radaronlyqpe24h:33,radaronlyqpe48h:33,radaronlyqpe72h:33,radarqualityindex:33,radi:33,radial:[10,33],radianc:33,radiat:33,radio:33,radioact:33,radiu:33,radt:33,rage:33,rai:33,rain1:21,rain2:21,rain3:21,rain:[29,33],rainbow:[22,26,27],rainfal:[27,33],rais:[3,18],rala:33,rang:[16,19,20,23,26,28,33],rap13:[15,21,22],rap:23,raster:10,rate:[26,29,33],rather:18,ratio:[19,25,33],raw:[16,19,22,33],raytheon:[0,16,17,22,23,28],raza:33,rbg:19,rc:[0,33],rcparam:[18,23,25,30],rcq:33,rcsol:33,rct:33,rdlnum:33,rdm:23,rdrip:33,rdsp1:33,rdsp2:33,rdsp3:33,re:[0,16,19,21],reach:34,read:[0,21,22],readabl:0,readi:[0,21],real:31,reason:16,rec:26,receiv:0,recent:[22,30],recharg:33,record:[10,16,17,18,23,24,28,30,31],rectangular:[4,16],recurr:33,red:[0,17,20,22],reduc:[16,33],reduct:33,ref:[15,16,31],refc:33,refd:33,refer:[2,4,16,19,21,24,25,33],refin:24,refl:[15,26],reflect:[0,26,33],reflectivity0c:33,reflectivityatlowestaltitud:33,reflectivitym10c:33,reflectivitym15c:33,reflectivitym20c:33,reflectivitym5c:33,reftim:[2,19,25,31],reftimeonli:[1,2,12],refzc:33,refzi:33,refzr:33,regardless:16,regim:33,region:[32,33],registri:16,rel:[26,33],relat:0,reld:33,releas:[0,34],relev:21,relv:33,remain:0,remot:33,remov:19,render:[0,24,29],replac:[16,18],reporttyp:25,repres:[3,16],represent:3,req:16,request:[0,1,2,4,5,6,11,12,15,17,18,19,20,23,24,25,26,27,28,29,30,31,34],requir:[0,2,16,19,24],requst:24,reset:19,resist:33,resiz:19,resolut:[17,19,20,22,24,26,27,29],resourc:[21,32],respect:[16,22,33],respons:[2,15,17,19,20,22,23,24,25,26,27,28,29,30,31],rest:[16,24,28],result:16,retop:33,retriev:[0,4,6,30],retrofit:16,rev:33,review:[0,16],rfl06:33,rfl08:33,rfl16:33,rfl39:33,rgb:19,rgbname:19,rh:[21,25,33],rh_001_bin:21,rh_002_bin:21,rha:21,rhpw:33,ri:33,ric:23,richardson:33,right:[0,19],right_label:[22,24,26,28,29,31],rime:33,risk:33,river:16,rlyr:33,rm5:21,rm6:21,rmix:25,rmprop2:21,rmprop:21,rno:23,ro:21,root:33,rotat:[18,33],rotationtrackll120min:33,rotationtrackll1440min:33,rotationtrackll240min:33,rotationtrackll30min:33,rotationtrackll360min:33,rotationtrackll60min:33,rotationtrackml120min:33,rotationtrackml1440min:33,rotationtrackml240min:33,rotationtrackml30min:33,rotationtrackml360min:33,rotationtrackml60min:33,rough:33,round:30,rout:16,royalblu:17,rprate:33,rpttype:30,rqi:33,rrqpe:29,rsa:21,rsmin:33,rssc:33,rtma:21,rtof:21,run:[0,2,16,18,19,21,22,34],runoff:33,runtim:2,runtimewarn:[17,23,25,26,28],rut:23,rv:21,rwmr:33,s:[16,17,18,19,21,22,23,24,25,27,28,29,33,34],salbd:33,salin:33,salt:33,salti:33,same:[3,16,19,24,28,29],sampl:[6,24],samplepoint:6,sat:[23,33],sat_h:19,satd:33,satellit:[0,16,19,21,32],satellite_height:19,satellitefactori:16,satellitefactoryregist:16,satellitegriddata:16,satellitegridfactori:16,satosm:33,satur:33,save:[0,16],savefig:[19,23],sbc123:33,sbc124:33,sbsalb:33,sbsno:33,sbt112:33,sbt113:33,sbt114:33,sbt115:33,sbt122:33,sbt123:33,sbt124:33,sbt125:33,sbta1610:33,sbta1611:33,sbta1612:33,sbta1613:33,sbta1614:33,sbta1615:33,sbta1616:33,sbta167:33,sbta168:33,sbta169:33,sbta1710:33,sbta1711:33,sbta1712:33,sbta1713:33,sbta1714:33,sbta1715:33,sbta1716:33,sbta177:33,sbta178:33,sbta179:33,sc:[28,33],scalb:33,scale:[22,24,29,31,33],scan:[0,15,26,33],scarter:[19,22],scatter:[20,24,27],scatteromet:33,scbl:33,scbt:33,sccbt:33,scctl:33,scctp:33,sce:33,scene:33,scestuwind:33,scestvwind:33,schema:24,scint:33,scintil:33,scipi:22,scli:33,scope:16,scp:33,scpw:33,scrad:33,scratch:16,script:[0,30],scst:33,sct:[23,28],sctl:33,sden:33,sdsgso:33,sdwe:33,sea:[23,33],seab:33,seaic:21,sealevelpress:[23,28],seamless:33,seamlesshsr:33,seamlesshsrheight:33,search:16,sec:26,second:[9,21,29,33],secondari:33,section:[16,24,33],sector:[15,19,27],sectorid:29,see:[0,16,33],select:[18,19,23,24,26],self:22,semimajor_axi:19,semiminor_axi:19,send:[0,16],sendrequest:11,sens:[0,33],sensibl:33,sensorcount:20,sent:0,sep:25,separ:[0,2,16,30],sequenc:33,seri:[6,20],server:[0,16,18,19,21,22,24,30,31,34],serverrequestrout:16,servic:[0,11,16,34],servr:33,set:[2,4,16,19,22,23,24,29,30,31,33],set_ext:[17,22,23,24,26,27,28,29,31],set_label:[22,24,26,27,29],set_size_inch:19,set_titl:[17,20,23,28],set_xlim:[18,25,30],set_ylim:[18,25,30],setdatatyp:[4,15,16,19,21,22,29,30,31],setenvelop:[4,16],setlazyloadgridlatlon:[2,12],setlevel:[4,15,16,21,22,26,27],setlocationnam:[4,15,16,18,19,21,22,23,24,25,26,27,28,29,30],setparamet:[4,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],setstoragerequest:16,setup:34,sevap:33,seven:20,sever:[0,20,21,24,33],sfc:[16,29,33],sfcob:[2,16,21],sfcr:33,sfcrh:33,sfexc:33,sfo:23,sgcvv:33,sh:[0,21,25],shade:22,shahr:33,shailpro:33,shallow:33,shamr:33,shape:[4,8,15,16,17,18,21,24,26,27,28,29,31],shape_featur:[24,28,31],shapelyfeatur:[24,28,31],share:0,shear:[21,33],sheer:33,shef:16,shelf:0,shi:33,should:[2,16],show:[18,20,21,22,23,25,26,29,30,31],shrink:[22,24,26,27,29],shrmag:21,shsr:33,shtfl:33,shv:23,shwlt:21,shx:21,si:29,sice:33,sighailprob:33,sighal:33,sigl:33,sigma:33,signific:[30,33],significantli:24,sigp:33,sigpar:33,sigt:30,sigt_param:30,sigtgeo:30,sigtrndprob:33,sigwindprob:33,silt:33,similar:[0,16,17],simpl:[23,28],simple_layout:28,simpli:0,simul:33,sinc:[0,16,19],singl:[0,2,16,18,19,21,24,28,33],single_value_param:[23,28],sipd:33,site:[5,15,21,22,24,25,31],siteid:31,size:[19,26,29,33],skew:[25,30],skewt:[18,30],skin:[29,33],skip:23,sktmp:33,sky:33,sky_cov:[23,28],sky_layer_bas:[23,28],skycov:[2,23,28],skylayerbas:[2,23,28],slab:16,slant:[25,30],slc:23,sld:33,sldp:33,sli:[21,33],slight:33,slightli:16,slope:33,slow:24,sltfl:33,sltyp:33,smdry:33,smref:33,smy:33,sndobject:18,snfalb:33,snmr:33,sno:33,snoag:33,snoc:33,snod:33,snohf:33,snol:33,snom:33,snorat:21,snoratcrocu:21,snoratemcsref:21,snoratov2:21,snoratspc:21,snoratspcdeep:21,snoratspcsurfac:21,snot:33,snow1:21,snow2:21,snow3:21,snow:[19,21,33],snowc:33,snowfal:33,snowstorm:20,snowt:[21,33],snsq:21,snw:21,snwa:21,so:[19,21,22],softwar:[0,16],soil:33,soill:33,soilm:33,soilp:33,soilw:33,solar:33,sole:2,solrf:33,solza:33,some:[0,16,21],someth:21,sort:[15,20,21,25,26,29,30],sotyp:33,sound:[6,21,32],sounder:29,soundingrequest:25,sourc:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,15,16],south:28,sp:[31,33],spacecraft:20,span:[23,33],spatial:[24,28],spc:33,spcguid:21,spd:[25,30],spdl:33,spec:25,spechum:25,special:[2,16],specif:[0,4,16,19,22,23,24,26,33],specifi:[2,6,8,16,19,21,24,33],specirr:33,spectal:33,spectra:33,spectral:33,spectrum:33,speed:[23,28,33],spf:33,spfh:33,spftr:33,spr:33,sprate:33,sprdf:33,spread:33,spring:16,spt:33,sqrt:18,squar:33,sr:33,src:[25,33],srcono:33,srfa161:33,srfa162:33,srfa163:33,srfa164:33,srfa165:33,srfa166:33,srfa171:33,srfa172:33,srfa173:33,srfa174:33,srfa175:33,srfa176:33,srml:21,srmlm:21,srmm:21,srmmm:21,srmr:21,srmrm:21,srweq:33,ss:21,ssgso:33,sshg:33,ssi:21,ssp:21,ssrun:33,ssst:33,sst:29,sstor:33,sstt:33,st:21,stack:16,staelev:30,stanam:30,stand:[21,33],standard:[0,24,33],standard_parallel:[23,28],start:[0,16,17,21,22,23,28,34],state:[16,19,23,24,28,29],states_provinc:31,staticcorioli:21,staticspac:21,statictopo:21,station:[17,28,30,32],station_nam:23,stationid:[16,28],stationnam:[17,23,28],stationplot:[17,23,28],stationplotlayout:[23,28],std:33,steep:33,step:30,stid:[23,28],stoke:33,stomat:33,stop:0,storag:[0,16,33],store:[0,16,28],storm:[20,26,33],storprob:33,stp1:21,stp:21,stpa:33,str:[17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],stream:33,streamflow:33,stree:33,stress:33,strftime:[17,23,28],striketyp:20,string:[2,4,7,8,9,10,16,18,33],strm:33,strmmot:21,strptime:[17,23,28,29],strtp:21,struct_tim:3,structur:16,style:16,sub:33,subinterv:33,sublay:33,sublim:33,submit:4,subplot:[17,20,22,24,26,27,28,29,31],subplot_kw:[17,20,22,24,26,27,28,29,31],subplotpar:19,subsequ:[19,22,24],subset:[16,17],subtair:17,succe:2,sucp:21,suggest:16,suit:0,suitabl:2,sun:33,sunsd:33,sunshin:33,supercool:33,superlayercompositereflect:33,supern:29,suppli:22,support:[0,2,3,4,34],suppress:[17,28],sure:28,surfac:[0,16,18,21,29,32,33],surg:33,svrt:33,sw:[23,28],swavr:33,swdir:33,sweat:33,sweep_axi:19,swell:33,swepn:33,swhr:33,swindpro:33,swper:33,swrad:33,swsalb:33,swtidx:21,sx:33,symbol:[23,28],synop:[2,16],syr:23,system:[0,21,33],t0:25,t:[15,16,19,21,22,25,30,33],t_001_bin:21,tabl:[0,28,31,33],taconcp:33,taconip:33,taconrdp:33,tadv:21,tair:17,take:[0,16,19,21,22,30],taken:[0,16,19],talk:21,tar:21,task:16,taskbar:0,tcdc:33,tchp:33,tcioz:33,tciwv:33,tclsw:33,tcol:33,tcolc:33,tcolg:33,tcoli:33,tcolm:33,tcolr:33,tcolw:33,tcond:33,tconu:29,tcsrg20:33,tcsrg30:33,tcsrg40:33,tcsrg50:33,tcsrg60:33,tcsrg70:33,tcsrg80:33,tcsrg90:33,tcwat:33,td2:25,td:[25,30],tdef:21,tdend:21,tdman:30,tdsig:30,tdsigt:30,tdunit:30,technic:16,temp:[17,22,23,25,28,29,33],temperatur:[18,21,22,23,25,28,30,32,33],tempwtr:33,ten:28,tendenc:33,term:[0,33],termain:0,terrain:[24,33],test_dir:19,text:[20,33],textcoord:[19,24],tfd:29,tgrd:21,tgrdm:21,than:[0,18,22],the_geom:[24,28],thei:[0,16,24],thel:33,them:[16,17,23,28],themat:33,therefor:16,thermo:25,thermoclin:33,theta:33,thflx:33,thgrd:21,thi:[0,2,16,17,18,19,21,22,23,24,25,26,28,30,31,34],thick:33,third:0,thom5:21,thom5a:21,thom6:21,those:[16,19,24],though:19,thousand:28,three:[16,19,20,25],threshold:17,threshval:10,thrift:11,thriftclient:[14,16,18],thriftclientrout:14,thriftrequestexcept:11,through:[0,16,18,19,22,30,31],throughout:[19,21,24],thrown:16,thunderstorm:33,thz0:33,ti:24,tide:33,tie:24,tier:6,tight:19,time:[2,3,6,7,12,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,33],timeagnosticdataexcept:16,timearg:3,timedelta:[17,18,23,28],timeit:18,timeob:[23,28],timerang:[2,3,6,16,17,18,23,28],timereq:18,timestamp:3,timestr:13,timeutil:14,tip:[19,24],tipd:33,tir:21,titl:[18,25,30],title_str:30,tke:33,tlh:23,tman:30,tmax:[21,33],tmdpd:21,tmin:[21,33],tmp:[25,28,33],tmpa:33,tmpl:33,tmpswp:33,togeth:0,tool:0,toolbar:0,top:[16,19,20,21,22,24,26,29,33],top_label:[22,24,26,28,29,31],topo:[21,24],topographi:[21,32],tori2:21,tori:21,tornado:[20,33],torprob:33,total:[17,20,24,26,27,29,33],totqi:21,totsn:33,toz:33,tozn:33,tp3hr:21,tp6hr:21,tp:[21,27],tp_inch:27,tpa:23,tpcwindprob:21,tpfi:33,tpman:30,tprate:33,tpsig:30,tpsigt:30,tpunit:30,tpw:29,tqind:21,track:[26,33],train:22,tran:33,transform:[17,19,20,23,24,27,28],transo:33,transpir:33,transport:33,trbb:33,trbtp:33,tree:[15,29],trend:33,tri:[25,30],trndprob:33,tro:33,trop:21,tropic:33,tropopaus:[21,33],tropospher:33,tsc:33,tsd1d:33,tsec:33,tshrmi:21,tsi:33,tslsa:33,tsmt:33,tsnow:33,tsnowp:33,tsoil:33,tsrate:33,tsrwe:33,tstk:21,tstm:33,tstmc:33,tt:[27,29,33],ttdia:33,ttf:23,tthdp:33,ttot:21,ttphy:33,ttrad:33,ttx:33,tua:21,tune:[2,16],tupl:9,turb:33,turbb:33,turbt:33,turbul:33,tutori:[19,21,22,24],tv:21,tw:21,twatp:33,twind:21,twindu:21,twindv:21,twmax:21,twmin:21,two:[0,16,22,24,33,34],twstk:21,txsm:21,txt:24,type:[0,3,8,10,16,19,22,24,30,31,33],typeerror:[2,3,23],typic:[0,16,21,24],u:[18,23,25,28,30,33],ubaro:33,uc:25,ucar:[0,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,34],ucomp:25,uf:[16,17,22,23,28],uflx:33,ufx:21,ug:33,ugrd:33,ugust:33,ugwd:33,uic:33,uil:23,ulsm:33,ulsnorat:21,ulst:33,ultra:33,ulwrf:33,unbias:26,under:33,underli:16,understand:[16,22],understood:[16,24],undertak:16,undocu:16,unidata:[15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,34],unidata_16:25,unifi:[0,16],uniqu:2,unit:[8,9,16,18,21,23,25,26,27,28,30,33],uniwisc:29,unknown:33,unsupportedoperationexcept:16,unsupportedoutputtypeexcept:16,until:2,unv:23,uogrd:33,up:[16,19,24,31,33,34],updat:34,updraft:33,uphl:33,upper:[0,21,32,33],upward:33,uq:33,uri:11,url:[21,22],urma25:21,us:[0,2,6,17,18,19,21,23,28,30,31,33],us_east_delaware_1km:21,us_east_florida_2km:21,us_east_north_2km:21,us_east_south_2km:21,us_east_virginia_1km:21,us_hawaii_1km:21,us_hawaii_2km:21,us_hawaii_6km:21,us_west_500m:21,us_west_cencal_2km:21,us_west_losangeles_1km:21,us_west_lososos_1km:21,us_west_north_2km:21,us_west_sanfran_1km:21,us_west_socal_2km:21,us_west_washington_1km:21,use_level:18,use_parm:18,useless:16,user:[0,5,19,22,26],userwarn:22,ussd:33,ustm:33,uswrf:33,ut:33,utc:29,utcnow:[17,23,28,29],util:21,utrf:33,uu:33,uv:33,uvi:33,uviuc:33,uw:[18,21],uwstk:21,v:[0,18,23,25,28,30,33],va:19,vadv:21,vadvadvect:21,vaftd:33,vah:29,valid:[7,22,26,27,33],validperiod:30,validtim:30,valu:[2,4,7,8,11,16,17,19,23,24,25,27,28,33],valueerror:[18,28],vaml:29,vap:25,vapor:[25,33],vapor_pressur:25,vapour:33,vapp:33,vapr:25,variabl:[19,23,28],varianc:33,variant:22,variou:[0,23,24],vash:33,vbaro:33,vbdsf:33,vc:25,vcomp:25,vddsf:33,vdfhr:33,vdfmr:33,vdfoz:33,vdfua:33,vdfva:33,vector:33,vedh:33,veg:33,veget:33,vegt:33,vel1:33,vel2:33,vel3:33,veloc:[0,26,33],ventil:33,veri:16,version:0,vert:26,vertic:[25,30,32,33],vflx:33,vgp:21,vgrd:33,vgtyp:33,vgwd:33,vi:33,via:[0,3,16],vice:33,view:0,vih:23,vii:33,vil:33,viliq:33,violet:33,virtual:33,viscou:33,visibl:[29,33],vist:21,visual:[0,19,21,24],vmax:22,vmin:22,vmp:29,vogrd:33,volash:33,volcan:33,voldec:33,voltso:33,volum:0,volumetr:33,vortic:33,vpot:33,vptmp:33,vq:33,vrate:33,vs:16,vsmthw:21,vsoilm:33,vsosm:33,vss:21,vssd:33,vstm:33,vt:33,vtec:[31,33],vtmp:33,vtot:21,vtp:29,vucsh:33,vv:33,vvcsh:33,vvel:33,vw:[18,21],vwiltm:33,vwsh:33,vwstk:21,w:[18,19,29,33],wa:[0,16,18,28,33],wai:[2,16,27],wait:2,want:[16,19,21],warm:33,warmrainprob:33,warn:[16,17,21,22,23,24,25,26,28,32],warning_color:31,wat:33,watch:[24,32],water:[29,33],watervapor:33,watr:33,wave:33,wbz:33,wcconv:33,wcd:21,wcda:29,wci:33,wcinc:33,wconu:19,wcuflx:33,wcvflx:33,wd:21,wdir:33,wdirw:33,wdiv:21,wdman:30,wdrt:33,we:[19,21,22,23,24,25,28,31],weak:4,weasd:[21,33],weather:[0,6,23,28,33,34],weatherel:6,weight:33,well:[0,16,17,22,34],wesp:33,west:29,west_6km:21,westatl:21,westconu:21,wet:33,wfo:24,wg:33,what:[16,18,19,21],when:[0,2,18,19,22,24],where:[9,16,18,19,21,25,27,33],whereev:19,whether:[2,19],which:[0,6,16,19,21,22,24,25,33],white:[27,33],who:[0,16],whtcor:33,whtrad:33,wide:20,width:[19,33],wilt:33,wind:[18,20,21,23,25,28,30,33],wind_compon:[23,25,28,30],wind_direct:25,wind_spe:[25,30],winddir:[23,28],windprob:33,windspe:[23,28],wish:[16,19,21],withe:24,within:[0,2,4,16,24],without:[0,2,16,28],wkb:18,wmc:23,wmix:33,wmo:[23,28,33],wmostanum:30,wndchl:21,word:16,work:[0,2,21,33,34],workstat:0,worri:16,would:[2,16],wpre:30,wrap:16,write:0,write_imag:19,writer:[16,32],written:[0,16,18,19],wsman:30,wsp:21,wsp_001_bin:21,wsp_002_bin:21,wsp_003_bin:21,wsp_004_bin:21,wspd:33,wstp:33,wstr:33,wsunit:30,wt:33,wtend:33,wtmpc:33,wv:29,wvconv:33,wvdir:33,wvhgt:33,wvinc:33,wvper:33,wvsp1:33,wvsp2:33,wvsp3:33,wvuflx:33,wvvflx:33,ww3:21,wwsdir:33,www:0,wxtype:33,x:[0,17,18,19,20,22,23,24,27,28,31,33],xformatt:[22,24,26,28,29,31],xlen:10,xloc:19,xlong:33,xml:16,xr:33,xrayrad:33,xshrt:33,xycoord:19,xytext:24,y:[17,18,20,22,23,24,25,27,28,29,33],ye:33,year:33,yformatt:[22,24,26,28,29,31],ylen:10,yml:34,you:[16,19,21,22,28,30,34],your:21,yyyi:21,z:33,zagl:21,zenith:33,zero:33,zonal:33,zone:[16,33],zpc:23},titles:["About Unidata AWIPS","CombinedTimeQuery","DataAccessLayer","DateTimeConverter","IDataRequest (newDataRequest())","IFPClient","ModelSounding","PyData","PyGeometryData","PyGridData","RadarCommon","ThriftClient","ThriftClientRouter","TimeUtil","API Documentation","Available Data Types","Development Guide","Colored Surface Temperature Plot","Forecast Model Vertical Sounding","GOES CIRA Product Writer","GOES Geostationary Lightning Mapper","Grid Levels and Parameters","Grids and Cartopy","METAR Station Plot with MetPy","Map Resources and Topography","Model Sounding Data","NEXRAD Level3 Radar","Precip Accumulation-Region Of Interest","Regional Surface Obs Plot","Satellite Imagery","Upper Air BUFR Soundings","Watch and Warning Polygons","Data Plotting Examples","Grid Parameters","Python AWIPS Data Access Framework"],titleterms:{"1":[19,21,22,24],"10":[21,24],"11":24,"16":29,"2":[19,21,22,24],"3":[19,21,22,24],"4":[19,21,22,24],"5":[19,21,22,24],"6":[19,21,22,24],"7":[21,24],"8":[21,24],"9":[21,24],"function":[19,22,24],"import":[19,21,22,24],"new":[16,21],Of:27,about:0,access:34,accumul:27,addit:[19,22,24],air:30,alertviz:0,also:[19,21,22,24],api:14,avail:[15,21,25,29],awip:[0,34],background:16,base:22,binlightn:15,both:28,boundari:24,bufr:30,calcul:25,cartopi:22,cave:0,cira:19,citi:24,code:34,color:17,combinedtimequeri:1,comparison:18,conda:34,connect:[19,21,24],contact:34,content:[19,21,22,24],contourf:22,contribut:16,creat:[21,24,29],cwa:24,data:[15,16,19,21,22,25,32,34],dataaccesslay:2,datatyp:16,datetimeconvert:3,defin:[19,22],definit:19,design:16,develop:16,dewpoint:25,document:[14,19,22,24],draw:24,edex:[0,19,21,24],edexbridg:0,entiti:29,exampl:[32,34],factori:16,filter:[19,24],forecast:18,framework:[16,34],from:[24,25],geostationari:20,get:[19,21],glm:20,goe:[19,20,29],grid:[15,21,22,33],guid:16,hdf5:0,hodograph:25,how:16,httpd:0,humid:25,idatarequest:4,ifpclient:5,imag:19,imageri:29,implement:16,initi:[19,24],instal:34,interest:27,interfac:16,interst:24,java:16,lake:24,ldm:0,level3:26,level:21,licens:0,lightn:20,limit:22,list:21,locat:[19,21,25],log:18,major:24,make_map:[22,24],map:24,mapper:20,merg:24,mesoscal:29,metar:[23,28],metpi:[23,25],model:[18,25],modelsound:6,nearbi:24,newdatarequest:4,nexrad:26,notebook:[19,21,22],ob:[23,28],object:[19,21,22,24],onli:[16,34],out:19,output:19,p:18,packag:34,paramet:[19,20,21,25,33],pcolormesh:22,pip:34,plot:[17,22,23,28,32],plugin:16,polygon:31,postgresql:0,pre:34,precip:27,product:[19,29],pydata:7,pygeometrydata:8,pygriddata:9,pypi:0,python:34,qpid:0,question:34,radar:[15,26],radarcommon:10,receiv:16,region:[27,28],regist:16,relat:[19,21,22],request:[16,21,22],requisit:34,resourc:24,result:22,retriev:16,river:24,satellit:[15,29],sector:29,see:[19,21,22,24],set:21,set_siz:19,setup:19,sfcob:28,skew:18,skewt:25,softwar:34,sound:[18,25,30],sourc:[20,29,34],specif:25,station:23,support:[16,21],surfac:[17,23,28],synop:28,synopt:28,t:18,tabl:[19,21,22,24],temperatur:17,thriftclient:11,thriftclientrout:12,time:[21,22],timeutil:13,topographi:24,type:[15,21],unidata:0,upper:30,us:[16,22,24,34],user:16,vertic:18,warn:[15,31],watch:31,when:16,work:16,write:[16,19],write_img:19,writer:19}})
\ No newline at end of file
+Search.setIndex({docnames:["about","api/CombinedTimeQuery","api/DataAccessLayer","api/DateTimeConverter","api/IDataRequest","api/IFPClient","api/ModelSounding","api/PyData","api/PyGeometryData","api/PyGridData","api/RadarCommon","api/ThriftClient","api/ThriftClientRouter","api/TimeUtil","api/index","datatypes","dev","examples/generated/Colored_Surface_Temperature_Plot","examples/generated/Forecast_Model_Vertical_Sounding","examples/generated/GOES_CIRA_Product_Writer","examples/generated/GOES_Geostationary_Lightning_Mapper","examples/generated/Grid_Levels_and_Parameters","examples/generated/Grids_and_Cartopy","examples/generated/METAR_Station_Plot_with_MetPy","examples/generated/Map_Resources_and_Topography","examples/generated/Model_Sounding_Data","examples/generated/NEXRAD_Level3_Radar","examples/generated/Precip_Accumulation-Region_Of_Interest","examples/generated/Regional_Surface_Obs_Plot","examples/generated/Satellite_Imagery","examples/generated/Upper_Air_BUFR_Soundings","examples/generated/Watch_and_Warning_Polygons","examples/index","gridparms","index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,sphinx:56},filenames:["about.rst","api/CombinedTimeQuery.rst","api/DataAccessLayer.rst","api/DateTimeConverter.rst","api/IDataRequest.rst","api/IFPClient.rst","api/ModelSounding.rst","api/PyData.rst","api/PyGeometryData.rst","api/PyGridData.rst","api/RadarCommon.rst","api/ThriftClient.rst","api/ThriftClientRouter.rst","api/TimeUtil.rst","api/index.rst","datatypes.rst","dev.rst","examples/generated/Colored_Surface_Temperature_Plot.rst","examples/generated/Forecast_Model_Vertical_Sounding.rst","examples/generated/GOES_CIRA_Product_Writer.rst","examples/generated/GOES_Geostationary_Lightning_Mapper.rst","examples/generated/Grid_Levels_and_Parameters.rst","examples/generated/Grids_and_Cartopy.rst","examples/generated/METAR_Station_Plot_with_MetPy.rst","examples/generated/Map_Resources_and_Topography.rst","examples/generated/Model_Sounding_Data.rst","examples/generated/NEXRAD_Level3_Radar.rst","examples/generated/Precip_Accumulation-Region_Of_Interest.rst","examples/generated/Regional_Surface_Obs_Plot.rst","examples/generated/Satellite_Imagery.rst","examples/generated/Upper_Air_BUFR_Soundings.rst","examples/generated/Watch_and_Warning_Polygons.rst","examples/index.rst","gridparms.rst","index.rst"],objects:{"awips.DateTimeConverter":{constructTimeRange:[3,1,1,""],convertToDateTime:[3,1,1,""]},"awips.RadarCommon":{encode_dep_vals:[10,1,1,""],encode_radial:[10,1,1,""],encode_thresh_vals:[10,1,1,""],get_data_type:[10,1,1,""],get_datetime_str:[10,1,1,""],get_hdf5_data:[10,1,1,""],get_header:[10,1,1,""]},"awips.ThriftClient":{ThriftClient:[11,2,1,""],ThriftRequestException:[11,4,1,""]},"awips.ThriftClient.ThriftClient":{sendRequest:[11,3,1,""]},"awips.TimeUtil":{determineDrtOffset:[13,1,1,""],makeTime:[13,1,1,""]},"awips.dataaccess":{CombinedTimeQuery:[1,0,0,"-"],DataAccessLayer:[2,0,0,"-"],IDataRequest:[4,2,1,""],ModelSounding:[6,0,0,"-"],PyData:[7,0,0,"-"],PyGeometryData:[8,0,0,"-"],PyGridData:[9,0,0,"-"],ThriftClientRouter:[12,0,0,"-"]},"awips.dataaccess.CombinedTimeQuery":{getAvailableTimes:[1,1,1,""]},"awips.dataaccess.DataAccessLayer":{changeEDEXHost:[2,1,1,""],getAvailableLevels:[2,1,1,""],getAvailableLocationNames:[2,1,1,""],getAvailableParameters:[2,1,1,""],getAvailableTimes:[2,1,1,""],getForecastRun:[2,1,1,""],getGeometryData:[2,1,1,""],getGridData:[2,1,1,""],getIdentifierValues:[2,1,1,""],getMetarObs:[2,1,1,""],getOptionalIdentifiers:[2,1,1,""],getRadarProductIDs:[2,1,1,""],getRadarProductNames:[2,1,1,""],getRequiredIdentifiers:[2,1,1,""],getSupportedDatatypes:[2,1,1,""],getSynopticObs:[2,1,1,""],newDataRequest:[2,1,1,""],setLazyLoadGridLatLon:[2,1,1,""]},"awips.dataaccess.IDataRequest":{__weakref__:[4,5,1,""],addIdentifier:[4,3,1,""],getDatatype:[4,3,1,""],getEnvelope:[4,3,1,""],getIdentifiers:[4,3,1,""],getLevels:[4,3,1,""],getLocationNames:[4,3,1,""],setDatatype:[4,3,1,""],setEnvelope:[4,3,1,""],setLevels:[4,3,1,""],setLocationNames:[4,3,1,""],setParameters:[4,3,1,""]},"awips.dataaccess.ModelSounding":{changeEDEXHost:[6,1,1,""],getSounding:[6,1,1,""]},"awips.dataaccess.PyData":{PyData:[7,2,1,""]},"awips.dataaccess.PyData.PyData":{getAttribute:[7,3,1,""],getAttributes:[7,3,1,""],getDataTime:[7,3,1,""],getLevel:[7,3,1,""],getLocationName:[7,3,1,""]},"awips.dataaccess.PyGeometryData":{PyGeometryData:[8,2,1,""]},"awips.dataaccess.PyGeometryData.PyGeometryData":{getGeometry:[8,3,1,""],getNumber:[8,3,1,""],getParameters:[8,3,1,""],getString:[8,3,1,""],getType:[8,3,1,""],getUnit:[8,3,1,""]},"awips.dataaccess.PyGridData":{PyGridData:[9,2,1,""]},"awips.dataaccess.PyGridData.PyGridData":{getLatLonCoords:[9,3,1,""],getParameter:[9,3,1,""],getRawData:[9,3,1,""],getUnit:[9,3,1,""]},"awips.dataaccess.ThriftClientRouter":{LazyGridLatLon:[12,2,1,""],ThriftClientRouter:[12,2,1,""]},"awips.dataaccess.ThriftClientRouter.ThriftClientRouter":{getAvailableLevels:[12,3,1,""],getAvailableLocationNames:[12,3,1,""],getAvailableParameters:[12,3,1,""],getAvailableTimes:[12,3,1,""],getGeometryData:[12,3,1,""],getGridData:[12,3,1,""],getIdentifierValues:[12,3,1,""],getNotificationFilter:[12,3,1,""],getOptionalIdentifiers:[12,3,1,""],getRequiredIdentifiers:[12,3,1,""],getSupportedDatatypes:[12,3,1,""],newDataRequest:[12,3,1,""],setLazyLoadGridLatLon:[12,3,1,""]},"awips.gfe":{IFPClient:[5,0,0,"-"]},"awips.gfe.IFPClient":{IFPClient:[5,2,1,""]},"awips.gfe.IFPClient.IFPClient":{commitGrid:[5,3,1,""],getGridInventory:[5,3,1,""],getParmList:[5,3,1,""],getSelectTR:[5,3,1,""],getSiteID:[5,3,1,""]},awips:{DateTimeConverter:[3,0,0,"-"],RadarCommon:[10,0,0,"-"],ThriftClient:[11,0,0,"-"],TimeUtil:[13,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","class","Python class"],"3":["py","method","Python method"],"4":["py","exception","Python exception"],"5":["py","attribute","Python attribute"]},objtypes:{"0":"py:module","1":"py:function","2":"py:class","3":"py:method","4":"py:exception","5":"py:attribute"},terms:{"0":[17,18,19,20,21,22,23,24,25,26,27,28,29,30,33],"00":[18,21,23,25],"000":21,"000000":28,"000508":26,"001012802000048":28,"0027720002":26,"005":18,"008382":26,"00hpa":29,"01":[19,21,29,33],"0127":26,"017472787":26,"019499999":26,"02":[19,29],"021388888888888888hr":29,"0290003":27,"02905":28,"02hpa":29,"03":[19,29],"03199876199994":28,"033959802":26,"0393701":27,"03hpa":29,"04":[25,29],"04hpa":29,"05":[19,26,29],"051":27,"0555557e":26,"06":[19,21,29],"07":[20,29],"071":27,"07hpa":29,"08":[26,29],"08255":26,"082804":26,"088392":26,"0891":28,"08hpa":29,"09":[25,26,29],"092348410":15,"0_100":21,"0_1000":21,"0_10000":21,"0_115_360_359":26,"0_116_116":26,"0_116_360_0":26,"0_120":21,"0_12000":21,"0_13_13":26,"0_150":21,"0_1500":21,"0_180":21,"0_200":21,"0_2000":21,"0_230_360_0":26,"0_250":21,"0_2500":21,"0_260":21,"0_265":21,"0_270":21,"0_275":21,"0_280":21,"0_285":21,"0_290":21,"0_295":21,"0_30":21,"0_300":21,"0_3000":21,"0_305":21,"0_310":21,"0_315":21,"0_320":21,"0_325":21,"0_330":21,"0_335":21,"0_340":21,"0_345":21,"0_346_360_0":26,"0_350":21,"0_3500":21,"0_359":26,"0_400":21,"0_4000":21,"0_40000":21,"0_450":21,"0_4500":21,"0_460_360_0":26,"0_464_464":26,"0_500":21,"0_5000":21,"0_550":21,"0_5500":21,"0_60":21,"0_600":21,"0_6000":21,"0_609":21,"0_610":21,"0_650":21,"0_700":21,"0_7000":21,"0_750":21,"0_800":21,"0_8000":21,"0_850":21,"0_90":21,"0_900":21,"0_9000":21,"0_920_360_0":26,"0_950":21,"0bl":21,"0c":[18,33],"0co":23,"0deg":33,"0f":[23,28],"0fhag":[15,18,21,22],"0k":21,"0ke":21,"0lyrmb":21,"0m":29,"0mb":[18,21],"0pv":21,"0sfc":[21,27],"0tilt":21,"0trop":21,"0x11127bfd0":22,"0x11568f6d0":24,"0x115a20370":24,"0x11b971da0":27,"0x11dcfedd8":28,"1":[0,15,17,18,20,23,25,26,27,28,29,30,31,33],"10":[15,17,18,19,23,26,27,28,29,30,33],"100":[18,21,25,30,33],"1000":[18,21,23,25,30,33],"10000":21,"1013":29,"103":29,"104":[18,29],"1042":29,"1058":24,"1070":29,"10800":21,"108000":21,"109":31,"10c":33,"10hpa":29,"10m":33,"11":[26,27,29,33],"110":29,"1100":29,"112":25,"115":26,"1152x1008":29,"116":26,"116167":29,"117":29,"118":23,"118800":21,"11hpa":29,"12":[17,18,21,24,25,27,28,29,30,31,33],"120":[17,21,27,33],"1205":24,"12192":26,"125":[27,29],"1250":21,"127":[27,31],"129600":21,"12h":33,"12hpa":29,"13":[26,27,29,33],"131":33,"133":29,"134":26,"135":26,"137":33,"138":26,"1382263":19,"139":27,"13hpa":29,"14":[17,18,19,21,25,26,27,29,33],"140":27,"1400":24,"140400":21,"141":26,"142":29,"1440":33,"14hpa":29,"15":[17,18,20,25,27,29,30,33],"150":21,"1500":21,"151":29,"151200":21,"152":28,"1524":21,"1583666":19,"159":26,"1598":22,"15c":33,"15hpa":29,"16":[15,17,20,21,22,25,26,27,28,33],"160":29,"161":26,"162000":21,"163":26,"165":26,"166":26,"1688":24,"169":26,"1693":24,"1694":24,"17":[25,26,27,29,33],"170":[26,29],"1701":24,"1703":24,"1706":24,"171":26,"1716":24,"172":26,"172800":21,"173":26,"1730":24,"174":26,"1741":24,"1746":24,"175":26,"1753":24,"176":26,"1767":24,"177":26,"1781":24,"1790004":27,"17hpa":29,"18":[18,20,26,27,28,29,33],"180":[19,29],"1828":21,"183600":21,"1875":27,"1890006":27,"18hpa":29,"19":[18,21,26,29],"190":[26,29],"194400":21,"19hpa":29,"19um":29,"1f":[18,23,28],"1h":33,"1mb":18,"1st":33,"1v4":25,"1x1":33,"2":[0,15,17,18,23,25,26,27,28,29,30,33],"20":[18,23,25,26,27,29,30,31,33],"200":[21,29,33],"2000":21,"2000m":33,"201":33,"2016":16,"2018":[18,26,29],"202":33,"2020":25,"2021":[19,21],"203":33,"204":33,"205":33,"205200":21,"206":33,"207":33,"207see":33,"208":[24,33],"209":33,"20b2aa":24,"20c":33,"20km":21,"20um":29,"21":27,"210":33,"211":33,"212":[29,33],"215":33,"216":33,"21600":21,"216000":21,"217":33,"218":33,"219":33,"22":[18,20,24,27],"222":33,"223":[29,33],"224":33,"225":24,"226800":21,"22hpa":29,"23":[23,26,29],"230":26,"235":29,"237600":21,"23hpa":29,"24":[27,28,31,33],"240":33,"243":25,"247":29,"24799":29,"248400":21,"24h":33,"24hpa":29,"25":[17,21,27,33],"250":[21,33],"2500":21,"252":33,"253":33,"254":33,"255":[21,23],"257":21,"259":29,"259200":21,"25um":29,"26":29,"260":[21,28],"263":25,"265":21,"26c":33,"26hpa":29,"27":[26,27],"270":21,"270000":21,"272":29,"273":[18,25,30],"2743":21,"274543999":15,"275":21,"27hpa":29,"28":[19,27,28,29],"280":21,"280511999":15,"280800":21,"285":21,"285491999":15,"286":29,"29":[25,29],"290":21,"291600":21,"295":[21,27],"2960005":27,"2fhag":[16,21],"2h":33,"2km":33,"2m":33,"2nd":33,"2pi":33,"2s":33,"3":[6,17,18,25,26,27,28,29,30,33],"30":[21,27,29,30,33],"300":[21,27,29,33],"3000":[19,21],"302400":21,"3048":21,"305":21,"3071667e":26,"30hpa":29,"30m":33,"30um":29,"31":[26,28,29],"310":21,"3125":27,"314":29,"315":21,"31hpa":29,"32":[17,18,26,27,28,29],"320":21,"32400":21,"324000":21,"325":21,"328":29,"32hpa":29,"33":[27,28,33],"330":21,"334":27,"335":21,"339":27,"340":21,"343":29,"345":21,"345600":21,"346":26,"3468":28,"34hpa":29,"34um":29,"35":[17,21,23,28,29],"350":21,"3500":21,"35785830":19,"358":29,"35hpa":29,"35um":29,"36":27,"360":[26,33],"3600":[27,29],"3626751":19,"3657":21,"367200":21,"369":21,"36shrmi":21,"37":26,"374":29,"375":27,"37hpa":29,"388800":21,"38hpa":29,"38um":29,"39":[18,27,29],"390":29,"3h":33,"3j2":25,"3rd":33,"3tilt":21,"4":[18,23,25,27,28,29,33],"40":[18,21,25,33],"400":21,"4000":21,"400hpa":33,"407":29,"40km":18,"41":26,"410400":21,"41999816894531":25,"41hpa":29,"42":[26,27,29],"422266":29,"424":29,"43":[25,29],"43200":21,"432000":21,"4328":24,"432x288":19,"43hpa":29,"441":29,"4420482":27,"44848":28,"44hpa":29,"45":[17,18,21,27,29],"450":21,"4500":21,"45227":29,"453600":21,"4572":21,"4588674":19,"459":29,"45hpa":29,"46":15,"460":26,"464":26,"46hpa":29,"47":29,"47462":29,"475200":21,"477":29,"47hpa":29,"47um":[19,29],"48":[27,33],"49":31,"496":29,"496800":21,"4bl":25,"4bq":25,"4hv":25,"4lftx":33,"4mb":18,"4om":25,"4th":33,"4tilt":21,"5":[0,20,25,26,27,28,29,33],"50":[15,18,21,23,24,26,27,31,33],"500":[21,29,33],"5000":[19,21,24],"5000x4000":19,"50934":28,"50dbzz":21,"50hpa":29,"50m":[17,19,20,22,24,26,27,29,31],"50um":29,"51":[19,26,27,29],"515":29,"518400":21,"51hpa":29,"52":27,"521051616000022":28,"525":21,"5290003":27,"52hpa":29,"535":29,"5364203":27,"5399999e":26,"53hpa":29,"54":27,"54000":21,"540000":21,"54hpa":29,"55":[17,21],"550":21,"5500":21,"555":29,"56":[19,26,29],"561600":21,"5625":27,"57":[26,27],"575":[21,29],"5775646e":26,"57hpa":29,"58":[24,26,29],"583200":21,"58hpa":29,"59":23,"596":29,"59hpa":29,"5af":25,"5ag":25,"5c":33,"5pv":21,"5sz":25,"5tilt":21,"5wava":33,"5wavh":33,"6":[18,23,25,27,28,29,33],"60":[21,25,27,28,29,30,33],"600":21,"6000":21,"604800":21,"609":21,"6096":21,"610":21,"61595":29,"617":29,"61um":29,"623":24,"625":[21,27],"626":27,"626400":21,"628002":27,"62hpa":29,"63":27,"63429260299995":28,"6356752":19,"6378137":19,"639":29,"63hpa":29,"64":[25,31],"64800":21,"648000":21,"64um":[19,29],"65":[15,17,25,27],"650":21,"65000152587891":25,"65155":28,"652773000":15,"65293884277344":15,"656933000":15,"657455":29,"65hpa":29,"66":[27,29],"660741000":15,"661":29,"66553":28,"669600":21,"67":[18,25],"670002":27,"67402":28,"675":21,"67hpa":29,"683":29,"6875":27,"68hpa":29,"69":27,"690":26,"691200":21,"69hpa":29,"6fhag":21,"6h":33,"6km":33,"6mb":18,"6ro":25,"7":[18,19,22,25,26,27,29,33],"70":[17,33],"700":21,"7000":21,"706":29,"70851":29,"70hpa":29,"71":29,"712800":21,"718":27,"71hpa":29,"72":[27,33],"725":21,"72562":30,"729":29,"72hpa":29,"73":23,"734400":21,"74":[22,27],"75":[17,19,27],"750":21,"75201":28,"753":29,"75600":21,"756000":21,"757":24,"758":24,"759":24,"760":24,"761":24,"762":24,"7620":21,"765":24,"766":24,"768":24,"769":24,"77":[27,29],"775":[21,24],"777":29,"777600":21,"778":24,"78":[26,27,28],"782322971":15,"78hpa":29,"79":27,"79354":28,"797777777777778hr":29,"799200":21,"79hpa":29,"7mb":18,"7tilt":21,"8":[17,22,23,25,27,28,29,33],"80":[22,24,26,28,29,33],"800":21,"8000":21,"802":29,"81":[26,27],"812":27,"82":[27,28],"820800":21,"825":21,"82676":28,"8269997":27,"827":29,"83":[28,29],"834518":26,"836":18,"837":18,"84":27,"842400":21,"848":18,"85":[17,27],"850":21,"852":29,"853":27,"85hpa":29,"86":28,"86400":21,"864000":21,"86989b":24,"87":[18,27,28,29],"875":[21,27],"878":29,"87hpa":29,"87um":[19,29],"88hpa":29,"89":[27,28,29],"89899":28,"89hpa":29,"8fhag":21,"8tilt":21,"8v7":25,"9":[22,25,27,29,33],"90":[15,20,21,33],"900":21,"9000":21,"904":29,"90um":29,"911":17,"9144":21,"92":[15,28,29],"920":26,"921":17,"925":21,"92hpa":29,"931":29,"93574":28,"94":[25,26],"94384":25,"948581075":15,"94915580749512":15,"95":23,"950":21,"958":29,"9581":11,"95hpa":29,"95um":29,"96":29,"96hpa":29,"97200":21,"975":21,"97hpa":29,"98":29,"986":29,"98hpa":29,"99":26,"992865960":15,"9999":[17,23,27,28,30],"99hpa":29,"9b6":25,"9tilt":21,"\u03c9":33,"\u03c9\u03c9":33,"\u03c9q":33,"\u03c9t":33,"abstract":[4,16],"boolean":[2,10],"break":16,"byte":33,"case":[16,19,21,22,24,25,30],"class":[4,5,7,8,9,11,12,16,18,21,23,26],"default":[0,6,16,19,31],"do":[0,16,21,31],"enum":16,"export":0,"final":[6,19,22,33],"float":[3,8,16,17,18,19,23,28,33],"function":[0,16,21,23,28,31,33],"import":[16,17,18,20,23,25,26,27,28,29,30,31],"int":[3,8,16,17,23,24,27,28,33],"long":[3,8,16,33],"new":[2,17,19,22,24,25,27,28,34],"null":16,"public":[0,16,19,24],"return":[2,3,4,6,7,8,9,10,15,16,18,19,21,22,23,24,25,26,27,28,29,30,31,33],"short":[19,33],"super":33,"switch":18,"throw":[2,16],"transient":33,"true":[2,15,18,21,22,23,24,25,26,27,28,29,31,33],"try":[21,23,25,28],"void":16,"while":[16,28,30],A:[0,2,3,4,6,16,18,25,27,33],As:[0,16],At:[0,33],By:[16,19,33],For:[0,16,19,21,24,30],IS:18,If:[4,6,16,18,19,21,22,23,34],In:[0,16,22,24,33,34],Into:21,It:[2,16],Near:33,No:[16,25,26],Not:[4,16,21],Of:[32,33],One:26,The:[0,16,18,19,20,21,22,24,25,30,33,34],Then:19,There:[16,18],These:[0,2],To:[16,19,33],With:[19,24,33],_:18,__weakref__:4,_datadict:18,_pcolorarg:22,_soundingcub:6,abbrevi:[4,8,9,33],abi:33,abl:[16,25],about:[16,21],abov:[16,18,21,22,24,33],abq:23,absd:33,absfrq:33,absh:33,absolut:33,absorpt:33,absrb:33,abstractdatapluginfactori:16,abstractgeometrydatabasefactori:16,abstractgeometrytimeagnosticdatabasefactori:16,abstractgriddatapluginfactori:16,absv:33,ac137:33,acar:[16,21],acceler:33,access:[0,2,6,16,21,22,24],account:28,accum:[26,33],accumul:[32,33],acond:33,acpcp:33,acpcpn:33,act:6,action:16,activ:[33,34],actp:29,actual:[2,16,19],acv:23,acwvh:33,ad:[16,22,28,33],adcl:33,add:[4,16,17,19,23,30],add_barb:[23,28],add_featur:[19,23,24,28,29,31],add_geometri:27,add_grid:[18,25,30],add_subplot:23,add_valu:[23,28],addidentifi:[4,15,16,19,20,24,25,28,29],addit:[0,16],addition:19,adiabat:33,adm:25,admin_0_boundary_lines_land:[24,31],admin_1_states_provinces_lin:[24,29,31],adp:29,aerodynam:33,aerosol:33,aetyp:33,afa:25,affect:2,after:[0,16,19],ag:33,again:24,ageow:21,ageowm:21,agl:33,agnost:[2,16],ago:29,agr:25,ah:33,ahn:25,ai131:33,aia:25,aid:20,aih:25,air:[0,21,32,33],air_pressure_at_sea_level:[23,28],air_temperatur:[23,28],airep:[16,21],airmet:16,airport:16,ajo:25,akh:33,akm:33,al:28,alabama:28,alarm:0,albdo:33,albedo:33,alert:[0,16],algorithm:26,all:[0,2,4,6,16,17,18,19,21,24,30,33,34],allow:[0,2,16,18,19,24],along:[21,22,24],alpha:[24,33],alr:21,alreadi:[23,34],alrrc:33,also:[0,3,15,16],alter:16,although:21,altimet:33,altitud:33,altmsl:33,alwai:16,america:[17,23],amixl:33,amount:[16,29,33],amsl:33,amsr:33,amsre10:33,amsre11:33,amsre12:33,amsre9:33,an:[0,2,4,7,16,17,19,20,21,22,24,25,29,30,33,34],analysi:[0,34],analyz:21,anc:33,ancconvectiveoutlook:33,ancfinalforecast:33,angl:[16,33],ani:[0,2,16,18,24],anisotropi:33,anj:25,annot:[19,24],anomali:33,anoth:[16,19,21,24],antarct:29,anyth:16,aod:29,aohflx:33,aosgso:33,apach:0,apcp:33,apcpn:33,api:16,app:16,appar:33,appear:[22,24],append:[18,20,23,24,25,28,30,31],appli:[0,16,19],applic:[0,24],approach:0,appropri:[0,31],approv:33,appt:21,aptmp:33,apx:25,aqq:25,aqua:33,ar:[0,2,4,16,18,19,20,21,22,24,25,28,29,30,33,34],aradp:33,arain:33,arang:19,arbitrari:33,arbtxt:33,architectur:16,arctic:29,area:[24,27,29,33],arg:[2,3,4,6,7,8,10,16,22],argsort:30,argument:3,ari12h1000yr:33,ari12h100yr:33,ari12h10yr:33,ari12h1yr:33,ari12h200yr:33,ari12h25yr:33,ari12h2yr:33,ari12h500yr:33,ari12h50yr:33,ari12h5yr:33,ari1h1000yr:33,ari1h100yr:33,ari1h10yr:33,ari1h1yr:33,ari1h200yr:33,ari1h25yr:33,ari1h2yr:33,ari1h500yr:33,ari1h50yr:33,ari1h5yr:33,ari24h1000yr:33,ari24h100yr:33,ari24h10yr:33,ari24h1yr:33,ari24h200yr:33,ari24h25yr:33,ari24h2yr:33,ari24h500yr:33,ari24h50yr:33,ari24h5yr:33,ari2h1000yr:33,ari2h100yr:33,ari2h10yr:33,ari2h1yr:33,ari2h200yr:33,ari2h25yr:33,ari2h2yr:33,ari2h500yr:33,ari2h50yr:33,ari2h5yr:33,ari30m1000yr:33,ari30m100yr:33,ari30m10yr:33,ari30m1yr:33,ari30m200yr:33,ari30m25yr:33,ari30m2yr:33,ari30m500yr:33,ari30m50yr:33,ari30m5yr:33,ari3h1000yr:33,ari3h100yr:33,ari3h10yr:33,ari3h1yr:33,ari3h200yr:33,ari3h25yr:33,ari3h2yr:33,ari3h500yr:33,ari3h50yr:33,ari3h5yr:33,ari6h1000yr:33,ari6h100yr:33,ari6h10yr:33,ari6h1yr:33,ari6h200yr:33,ari6h25yr:33,ari6h2yr:33,ari6h500yr:33,ari6h50yr:33,ari6h5yr:33,around:[16,22],arrai:[2,9,15,16,17,18,21,22,23,24,25,26,28,30,31],asd:33,aset:33,asgso:33,ash:33,ashfl:33,asid:24,asnow:33,assign:30,assimil:33,assist:0,associ:[0,7,9,16,33],assum:25,asymptot:33,ath:25,atl1:25,atl2:25,atl3:25,atl4:25,atl:23,atlh:25,atmdiv:33,atmo:33,atmospher:[21,33],attach:[16,23,28],attempt:16,attent:18,attribut:[7,16,20,24],automat:16,autosp:21,av:21,avail:[0,2,6,16,18,19,20,22,24,31,33],avail_param:23,available_loc:26,availablelevel:[15,18,26],availableloc:30,availableparm:[2,20,26],availableproduct:[15,23,28,29],availablesector:[15,29],averag:33,avg:33,aviat:33,avoid:16,avsft:33,awai:22,awh:25,awip:[1,2,3,4,5,6,7,8,9,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],awips2:[0,25],awr:25,awvh:33,ax2:22,ax:[17,18,19,20,22,23,24,25,26,27,28,29,30,31],ax_hod:[18,25,30],ax_synop:28,axes_grid1:[18,25,30],axi:22,axvlin:[18,25,30],azdat:10,azimuth:33,azval:10,b:[19,21,25,33],ba:33,bab:25,back:16,backend:0,background:22,backscatt:33,band:[19,33],bare:33,baret:33,barotrop:33,base:[0,6,16,19,24,25,26,29,33],baseflow:33,baselin:16,basi:6,basin:16,basr:33,basrv:33,bassw:33,bbox:[17,18,22,24,26,27,28,29,31],bbox_inch:19,bcbl:33,bcly:33,bctl:33,bcy:33,bde:23,bdept06:21,bdg:[23,25],bdp:25,beam:33,bean:16,becaus:[16,19,21,24,25,28,30],becom:[16,24],been:[16,19],befor:[16,21],begin:23,beginrang:[17,23,28],behavior:16,being:[0,4,16],below:[16,19,21,24,33,34],beninx:33,best:[16,33],better:2,between:[0,16,18,19,22,33],bfl:25,bgrun:33,bgtl:25,bh1:25,bh2:25,bh3:25,bh4:25,bh5:25,bhk:25,bi:23,bia:33,bid:25,bil:23,bin:16,binlightn:[16,20,21],binoffset:16,bir:25,bit:21,bkeng:33,bkn:[23,28],bl:[21,25],black:[24,27,30,31,33],blackadar:33,blank:31,bld:33,bli:[21,33],blkmag:21,blkshr:21,blob:25,block:24,blow:33,blst:33,blu:25,blue:[23,24,28],blysp:33,bmixl:33,bmx:25,bna:25,bo:23,board:20,bod:25,boi:23,border:23,both:[16,20,22,24,26],bottom:[19,33],bou:24,boulder:24,bound:[16,17,22,23,24,28,31],boundari:[19,21,22,28,33],box:[16,17,22,27],bq:33,bra:25,bright:33,brightbandbottomheight:33,brightbandtopheight:33,brn:21,brnehii:21,brnmag:21,brnshr:21,brnvec:21,bro:23,broken:0,browser:34,brtmp:33,btl:25,btot:33,buffer:[19,24,28],bufr:[21,25,32],bufrmosavn:21,bufrmoseta:21,bufrmosgf:21,bufrmoshpc:21,bufrmoslamp:21,bufrmosmrf:21,bufrua:[16,21,30],bui:23,build:[3,16,30],bulb:33,bundl:16,burnt:24,bvec1:33,bvec2:33,bvec3:33,bvr:25,bytebufferwrapp:16,c01:25,c02:25,c03:25,c04:25,c06:25,c07:25,c08:25,c09:25,c10:25,c11:25,c12:25,c13:25,c14:25,c17:25,c18:25,c19:25,c20:25,c21:25,c22:25,c23:25,c24:25,c25:25,c27:25,c28:25,c30:25,c31:25,c32:25,c33:25,c34:25,c35:25,c36:25,c7h:25,c:[17,18,22,25,30,33,34],caesium:33,cai:25,caii:33,caiirad:33,calc:[23,25,28,30],calcul:[16,22,27,30],call:[0,16,19,22,24,34],caller:16,camt:33,can:[0,3,16,19,21,22,24,25,28,29,34],canopi:33,capabl:16,capac:33,cape:[21,29,33],capestk:21,capetolvl:21,car:23,carolina:28,cartopi:[17,19,20,21,23,24,26,27,28,29,31,32],cascaded_union:24,cat:33,categor:33,categori:[17,23,24,25,26,28,29,31,33],cave:[16,17,34],cb:33,cbar2:22,cbar:[22,24,26,27,29],cbase:33,cbe:25,cbhe:33,cbl:33,cbn:25,cc5000:24,ccape:21,ccbl:33,cceil:33,ccfp:16,ccin:21,ccittia5:33,ccly:33,ccond:33,ccr:[17,19,20,22,23,24,26,27,28,29,31],cctl:33,ccy:33,cd:[33,34],cdcimr:33,cdcon:33,cdlyr:33,cduvb:33,cdww:33,ceas:33,ceil:33,cell:[16,22,24],cent:33,center:[0,22,33,34],cento:0,central_latitud:[23,28],central_longitud:[19,20,23,28],certain:[2,16],cfeat:[19,20,29],cfeatur:[23,28,31],cfnlf:33,cfnsf:33,cfrzr3hr:21,cfrzr6hr:21,cfrzr:[21,33],cg:33,ch1:19,ch2:19,ch3:19,ch:[19,23,29],chang:[2,6,16,23,24,33],changeedexhost:[2,6,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],channel:[19,33],characterist:24,chart:30,che:25,check:19,chill:33,choos:16,cice:33,cicel:33,cicep3hr:21,cicep6hr:21,cicep:[21,33],ciflt:33,cin:[21,33],cira:32,cisoilw:33,citylist:24,citynam:24,civi:33,ckn:25,cld:25,cldcvr:25,cldsnow:19,cle:[23,25],clean:[16,18],clear:33,clg:33,clgtn:33,click:0,client:[0,2,12],climat:21,clip:19,clip_on:[23,28],cln:25,clone:34,cloud:[15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,33],cloud_coverag:[23,28],cloudcov:33,cloudm:33,clt:23,clwmr:33,cm:33,cmap:[19,22,24,26,27,29],cmc:[18,21],cngwdu:33,cngwdv:33,cnvdemf:33,cnvdmf:33,cnvhr:33,cnvmr:33,cnvu:33,cnvumf:33,cnvv:33,cnwat:33,coars:33,coastlin:[17,19,20,22,23,24,26,27,29,31],code:[0,16,19,21,23,24,26,28,33],coe:23,coeff:26,coeffici:33,col1:25,col2:25,col3:25,col4:25,col:33,collect:20,color:[18,19,21,22,23,24,25,28,30,31,32],colorado:24,colorbar:[22,24,26,27,29],column:[24,29,33],com:[0,16,17,22,23,25,28,34],combin:[2,16,19,24,33],combinedtimequeri:14,come:[16,19,24],command:0,commerci:0,commitgrid:5,common:[0,16,17,22,23,24,28],common_obs_spati:21,commun:[0,2,6],compar:22,compat:[0,16],complet:16,compon:[0,18,23,25,28,33],component_rang:[18,25,30],compos:0,composit:[0,19,26,29,33],compositereflectivitymaxhourli:33,compris:0,concaten:[25,30],concentr:33,concept:16,cond:33,condens:33,condit:[2,33],condp:33,conduct:[0,33],conf:0,confid:33,configur:0,confus:19,connect:[2,6],consid:[0,16,33],consider:2,consist:[0,16,24],constant:[22,25,30],constrain:4,construct:25,constructor:16,constructtimerang:3,cont:33,contain:[0,16],contb:33,content:[16,33],contet:33,context:24,conti:33,continent:22,continu:[16,26,29,30],contourf:24,contrail:33,control:0,contrust:[15,29],contt:33,conu:[17,19,24,27,29,33],conus_envelop:27,conusmergedreflect:33,conusplusmergedreflect:33,convect:33,conveni:[2,16],converg:33,convers:3,convert:[3,16,17,18,19,22,23,28],convert_temperatur:22,converttodatetim:3,convp:33,coolwarm:29,coord:19,coordin:[0,9,16,22,33],copi:17,corf:21,corff:21,corffm:21,corfm:21,coronagraph:33,correct:[23,28,33],correl:[16,26],correspond:16,cosd:16,cosmic:33,cot:[0,25],could:[2,16,19],count:[26,33],counti:[16,24,28],covari:33,cover:[21,25,33],coverag:33,covmm:33,covmz:33,covpsp:33,covqm:33,covqq:33,covqvv:33,covqz:33,covtm:33,covtt:33,covtvv:33,covtw:33,covtz:33,covvvvv:33,covzz:33,cp3hr:21,cp6hr:21,cp:21,cpofp:33,cpozp:33,cppaf:33,cpr:[21,23],cprat:33,cprd:21,cqv:25,cr:[17,19,20,22,23,24,26,27,28,29,31],crain3hr:21,crain6hr:21,crain:[21,33],creat:[0,2,16,17,18,19,20,22,23,25,27,28,30,31,34],creatingent:[15,19,29],crest:33,crestmaxstreamflow:33,crestmaxustreamflow:33,crestsoilmoistur:33,critic:33,critt1:21,crl:25,cross:33,crr:25,crswkt:12,crtfrq:33,crw:23,cs2:22,cs:[22,24,26,27,29],csdlf:33,csdsf:33,csm:29,csnow3hr:21,csnow6hr:21,csnow:[21,33],csrate:33,csrwe:33,csulf:33,csusf:33,ct:33,cth:29,ctl:33,ctop:33,ctophqi:33,ctot:21,ctp:33,ctstm:33,ctt:29,cty:25,ctyp:33,cuefi:33,cultur:[24,29,31],cumnrm:21,cumshr:21,cumulonimbu:33,current:[16,33],curu:21,custom:16,custom_layout:[23,28],cv:25,cvm:25,cwat:33,cwdi:33,cweu:25,cwfn:25,cwkx:25,cwlb:25,cwlo:25,cwlt:25,cwlw:25,cwmw:25,cwo:25,cwork:33,cwp:33,cwph:25,cwqg:25,cwr:33,cwsa:25,cwse:25,cwzb:25,cwzc:25,cwzv:25,cyah:25,cyan:19,cyaw:25,cybk:25,cybu:25,cycb:25,cycg:25,cycl:[2,15,18,19,21,22,25,26,27],cyclon:33,cycx:25,cyda:25,cyeg:25,cyev:25,cyf:25,cyfb:25,cyfo:25,cygq:25,cyhm:25,cyhz:25,cyjt:25,cylh:25,cylj:25,cymd:25,cymo:25,cymt:25,cymx:25,cyoc:25,cyow:25,cypa:25,cype:25,cypl:25,cypq:25,cyqa:25,cyqd:25,cyqg:25,cyqh:25,cyqi:25,cyqk:25,cyqq:25,cyqr:25,cyqt:25,cyqx:25,cyrb:25,cysi:25,cysm:25,cyt:25,cyth:25,cytl:25,cyul:25,cyux:25,cyvo:25,cyvp:25,cyvq:25,cyvr:25,cyvv:25,cywa:25,cywg:25,cywo:25,cyx:25,cyxc:25,cyxh:25,cyxi:25,cyxu:25,cyxx:25,cyxz:25,cyy:25,cyyb:25,cyyc:25,cyyj:25,cyyq:25,cyyr:25,cyyt:25,cyyz:25,cyz:25,cyzf:25,cyzt:25,cyzv:25,d2d:0,d2dgriddata:16,d:[0,15,16,17,18,23,25,28,29,33],daemon:0,dai:[20,29,33],daili:33,dal:2,dalt:33,darkgreen:[17,23,28],darkr:[23,28],data:[0,2,4,6,7,8,9,10,20,23,24,26,27,28,29,30,31,33],data_arr:23,dataaccess:[1,2,4,6,7,8,9,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],dataaccesslay:[4,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],dataaccessregistri:16,databas:[0,16,24,28],datadestin:16,datafactoryregistri:16,dataplugin:[16,22],datarecord:7,dataset:[0,21,24,34],datasetid:[6,16],datastorag:16,datatim:[2,6,16,19,21,30],datatyp:[2,4,12,17,19,20,21,22,23,24,28,29],datauri:29,date:3,datetim:[3,10,17,18,19,20,23,25,28,29,31],datetimeconvert:14,db:[16,33],dbll:33,dbm:0,dbrdust:19,dbsl:33,dbss:33,dbz:[26,33],dcape:21,dcbl:33,dccbl:33,dcctl:33,dctl:33,dd:21,debra:19,decod:[0,16],decreas:22,deep:33,def:[19,22,23,24,26,27,28,29,31],defaultdatarequest:[16,22],defaultgeometryrequest:16,defaultgridrequest:16,deficit:33,defin:[4,21,24,29,31,33],definit:[16,24],defv:21,deg2rad:30,deg:[25,33],degc:[18,23,25,28,30],degf:[17,23,28,30],degre:[22,23,28,33],del2gh:21,deleg:16,delta:33,den:[25,33],densiti:33,depend:[2,16,19,21,24,33],depmn:33,deposit:33,depr:33,depress:33,depth:33,depval:10,deriv:[0,16,26,29,33],describ:[0,19],descript:[10,33],design:[0,19],desir:[16,19],desktop:0,destin:16,destunit:22,detail:[16,21],detect:[20,33],determin:[0,16,18,27],determinedrtoffset:13,detrain:33,dev:33,develop:[0,20,34],deviat:33,devmsl:33,dew:33,dew_point_temperatur:[23,28],dewpoint:[18,23,28,30],df:21,dfw:23,dhr:29,diagnost:33,dice:33,dict:[17,20,22,23,24,26,27,28,29,31],dictionari:[2,4,6,23,28],difeflux:33,diff:26,differ:[0,16,21,22,24,33],differenti:33,diffus:33,dififlux:33,difpflux:33,digit:[15,26],dim:33,dimens:19,dimension:0,dir:25,dirc:33,dirdegtru:33,direc:[30,33],direct:[23,28,33],directli:[0,19,24],directori:19,dirpw:33,dirsw:33,dirwww:33,discharg:20,disclosur:24,disk:[19,33],dispers:33,displai:[0,16,34],display:0,dissip:33,dist:33,distinct:16,distirubt:25,distribut:0,diverg:33,divers:16,divf:21,divfn:21,divid:33,dlh:23,dlwrf:33,dm:33,dman:30,dobson:33,document:[16,21],doe:[16,25],domain:[0,24],don:[16,19],done:[16,19],dot:[18,30],doubl:8,dov:25,down:17,downdraft:33,download:[0,24],downward:33,dp:[21,33],dpblw:33,dpd:21,dpg:25,dpi:[19,23],dpmsl:33,dpt:[18,21,28,33],drag:33,draw:[17,19,25,27,30],draw_label:[22,24,26,28,29,31],dream:16,drift:33,drop:33,droplet:33,drt:23,dry:33,dry_laps:[25,30],dsc:25,dsd:25,dskdai:33,dskint:33,dskngt:33,dsm:23,dstack:19,dstype:[17,22,23,28],dswrf:33,dt:[21,33],dtrf:33,dtx:25,dtype:[17,18,23,28,31],due:33,durat:33,dure:[2,22],dust:19,duvb:33,dvadv:21,dvl:29,dvn:25,dwpc:25,dwuvr:33,dwww:33,dy:25,dynamicseri:[3,17,22,23,28],dz:21,dzdt:33,e28:25,e74:25,e7e7e7:28,e:[0,16,23,25,28,29,33],ea:33,each:[2,16,19,24,25,28,31],eas:16,easier:16,easiest:22,easili:24,east:[19,29,33],east_6km:21,east_pr_6km:21,eastward_wind:[23,28],eat:25,eatm:33,eax:25,echo:[26,33],echotop18:33,echotop30:33,echotop50:33,echotop60:33,ecmwf:33,econu:[19,29],eddi:33,edex:[2,6,15,16,17,18,20,22,23,25,26,27,28,29,30,31,34],edex_camel:0,edex_ldm:0,edex_postgr:0,edex_url:21,edexserv:[17,20,23,28],edg:22,edgecolor:[19,24,27,28,31],editor:0,edu:[0,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,34],edw:25,eet:29,ef25m:33,ef50m:33,efd:29,effect:[16,33],effici:33,effict:34,efl:25,ehelx:33,ehi01:21,ehi:21,ehii:21,ehlt:33,either:[0,16,21,31,34],elcden:33,electmp:33,electr:33,electron:33,element:[6,9,21,23],elev:[24,30,33],eli:23,elif:[17,18,19,23,28],ellips:19,elon:33,elonn:33,elp:23,els:[17,18,19,21,23,26,27,28,31],elsct:33,elyr:33,email:34,embed:33,emeso:29,emiss:33,emit:20,emnp:33,emp:25,emploi:0,empti:18,emsp:21,enabl:[16,24],encod:33,encode_dep_v:10,encode_radi:10,encode_thresh_v:10,encourag:0,end:[0,17,19,23,24,25,28],endrang:[17,23,28],energi:33,engeri:33,engin:33,enhanc:[0,26],enl:25,ensur:0,entir:[0,24,33],entiti:[0,15,19],entitl:0,enumer:[24,27,29],env:[4,16,22,34],envelop:[2,4,12,16,17,18,22,24,27,28],environ:[0,2,34],environment:[0,20],eocn:33,eph:23,epot:33,epsr:33,ept:21,epta:21,eptc:21,eptgrd:21,eptgrdm:21,epv:21,epvg:21,epvt1:21,epvt2:21,equilibrium:33,equival:33,error:[0,16,21,33],esp2:21,esp:21,essenti:16,establish:[19,24],estc:25,estim:33,estof:21,estpc:33,estuwind:33,estvwind:33,eta:[25,33],etal:33,etc:[0,16,18],etcwl:33,etot:33,etsrg:33,etss:21,euv:33,euvirr:33,euvrad:33,ev:33,evapor:33,evapotranspir:33,evapt:33,evb:33,evcw:33,evec1:33,evec2:33,evec3:33,event:20,everi:16,everyth:16,evp:33,ewatr:33,exact:19,exactli:19,exampl:[0,2,15,16,19,21,22,24,25,26,29,30,31],exceed:33,except:[11,16,21,23,25,28],excess:33,exchang:[0,33],execut:0,exercis:[17,23,28],exist:[2,16,17,19,24],exit:25,exp:25,expand:16,expect:16,experienc:34,explicit:22,exten:33,extend:[16,24,26,30],extent:[19,20,24,29],extra:33,extrem:33,f107:33,f10:33,f1:33,f2:33,f:[17,21,22,25,30,33,34],facecolor:[20,24,27,28,29,31],facilit:0,factor:33,factori:4,factorymethod:16,fall:[24,29],fals:[1,2,19,22,24,26,28,29,31],familiar:16,far:23,farenheit:22,faster:16,fat:23,fc:25,fcst:[21,27],fcsthour:25,fcsthr:27,fcstrun:[15,18,21,22,25,27],fdc:29,fdr:25,featur:[19,20,23,24,28,29,31],feature_artist:[24,27,28],featureartist:[24,27,28],feed:0,feel:[19,34],felt:16,few:[16,19,21,23,28],ff:21,ffc:25,ffg01:33,ffg03:33,ffg06:33,ffg12:33,ffg24:33,ffg:[21,33],ffmp:16,ffr01:33,ffr03:33,ffr06:33,ffr12:33,ffr24:33,ffrun:33,fgen:21,fhag:18,fhu:25,fice:33,field:[16,24,33],fig2:22,fig:[17,19,20,22,23,24,26,27,28,29,31],fig_synop:28,figh:19,figsiz:[17,18,20,22,23,24,25,26,27,28,29,30,31],figur:[18,19,22,23,25,29,30],figw:19,file:[0,10,16,19],filter:[2,21,28],filterwarn:[17,23,25,26,28],find:[2,21],fine:[16,33],finish:0,fire:[20,33],firedi:33,fireodt:33,fireolk:33,first:[9,16,19,20,24,29,31,33],fix:[21,22],fl:28,flag:30,flash:[20,33],flat:26,flatten:26,fldcp:33,flg:[23,25],flght:33,flight:33,float64:31,floatarraywrapp:16,flood:[20,33],florida:28,flow:0,flown:20,flp:25,flux:33,fmt:[23,28],fnd:21,fnmoc:21,fnvec:21,fog:29,folder:[16,19],follow:[0,16,19,25,30],fontsiz:[17,23,28],footnot:19,footnotestr:19,forc:[33,34],forcast:21,forecast:[0,2,6,20,21,22,29,32,33,34],forecasthr:2,forecastmodel:25,forg:34,form:0,format:[0,20,21,23],foss:0,foss_cots_licens:0,found:[16,17,18,21,26,28],fpk:25,fprate:33,fractil:33,fraction:[19,23,28,33],frain:33,framework:[2,6],free:[0,16,19,33,34],freez:33,freq:33,frequenc:[20,33],frequent:16,fri:25,friction:33,fricv:33,frime:33,from:[0,2,3,16,17,18,19,20,21,22,23,26,27,28,29,30,31,33,34],fromtimestamp:23,front:0,frozen:33,frozr:33,frzr:33,fsd:[21,23],fsi:25,fsvec:21,ftr:25,full:[2,15,16,21,24,29,30],fulli:19,fundament:0,further:0,furthermor:16,futur:16,fvec:21,fwd:25,fwr:21,fzra1:21,fzra2:21,g001:25,g003:25,g004:25,g005:25,g007:25,g009:25,g:[16,18,19,25,30,33],ga:28,gage:16,gamma:21,gather:19,gaug:33,gaugecorrqpe01h:33,gaugecorrqpe03h:33,gaugecorrqpe06h:33,gaugecorrqpe12h:33,gaugecorrqpe24h:33,gaugecorrqpe48h:33,gaugecorrqpe72h:33,gaugeinfindex01h:33,gaugeinfindex03h:33,gaugeinfindex06h:33,gaugeinfindex12h:33,gaugeinfindex24h:33,gaugeinfindex48h:33,gaugeinfindex72h:33,gaugeonlyqpe01h:33,gaugeonlyqpe03h:33,gaugeonlyqpe06h:33,gaugeonlyqpe12h:33,gaugeonlyqpe24h:33,gaugeonlyqpe48h:33,gaugeonlyqpe72h:33,gc137:33,gca:19,gcbl:33,gctl:33,gdp:25,gdv:25,gempak:[17,25],gener:[2,16,27],geoax:22,geocolor:19,geocolr:19,geodatarecord:8,geograph:[21,24,34],geoid:33,geom:[15,25,28,31],geom_count:31,geom_typ:31,geometr:33,geometri:[2,4,8,16,17,18,24,27,28,31],geomfield:[24,28],geopotenti:33,georgia:28,geospati:16,geostationari:[19,32],geovort:21,geow:21,geowm:21,get:[2,4,7,8,9,10,16,17,18,22,23,24,28,29,30,31],get_cloud_cov:[23,28],get_cmap:[22,24,26,27],get_data_typ:10,get_datetime_str:10,get_dpi:19,get_hdf5_data:[10,15],get_head:10,getattribut:[7,16,20],getavailablelevel:[2,12,15,18,21,26],getavailablelocationnam:[2,12,15,16,19,21,25,26,29,30],getavailableparamet:[2,12,15,20,21,23,26,28,29],getavailabletim:[1,2,12,15,16,18,19,20,21,22,25,26,27,29,30,31],getdata:16,getdatatim:[7,15,16,17,19,20,21,22,23,25,26,27,28,29,30,31],getdatatyp:[4,16],getenvelop:[4,16],getfcsttim:[21,25,27],getforecastrun:[2,15,18,21,22,25,27],getgeometri:[2,8,15,16,20,24,25,28,31],getgeometrydata:[2,12,15,16,17,20,21,23,24,25,28,30,31],getgriddata:[2,12,15,16,19,21,22,24,26,27,29],getgridgeometri:16,getgridinventori:5,getidentifi:[4,16],getidentifiervalu:[2,12,15,19,20,29],getlatcoord:16,getlatloncoord:[9,15,21,22,24,26,27,29],getlevel:[4,7,16,22,26],getlocationnam:[4,7,15,16,21,22,25,26,27,31],getloncoord:16,getmetarob:[2,17,28],getnotificationfilt:12,getnumb:[8,16,23,24,25,28,30],getoptionalidentifi:[2,12,19,29],getparamet:[8,9,16,21,22,23,25,26,29,30,31],getparmlist:5,getradarproductid:[2,26],getradarproductnam:[2,26],getrawdata:[9,15,16,19,21,22,24,26,27,29],getreftim:[15,18,19,20,21,22,25,26,27,29,30,31],getrequiredidentifi:[2,12],getselecttr:5,getsiteid:5,getsound:[6,18],getstoragerequest:16,getstr:[8,16,23,24,28,30,31],getsupporteddatatyp:[2,12,21],getsynopticob:[2,28],gettyp:[8,16],getunit:[8,9,16,21,26,30],getvalidperiod:[15,25,31],gf:[21,25],gfe:[0,4,5,16,21],gfeeditarea:21,gfegriddata:16,gflux:33,gfs1p0:21,gfs20:[18,21],gfs40:16,gh:[21,33],ght:33,ghxsm2:21,ghxsm:21,gi131:33,gi:24,git:34,github:[0,25,34],given:[3,6,21,33],gjt:23,gl:[22,24,26,28,29,31],gld:23,glm:15,glm_point:20,glmev:20,glmfl:20,glmgr:[15,20],global:[21,33],globe:19,glry:25,gm:29,gmt:[20,25],gmx1:25,gnb:25,gnc:25,go:[16,21,22],goal:16,goe:[32,33],goes16:19,good:24,gov:25,gp:33,gpa:33,gpm:33,grab:[19,23,28],grad:33,gradient:33,gradp:33,grai:19,graphic:0,graup:33,graupel:33,graupl:33,graviti:33,grb:23,greatest:27,green:17,grf:25,grib:[0,16,22,33],grid:[0,2,4,6,9,16,18,19,24,26,27,28,29,32],grid_cycl:21,grid_data:21,grid_fcstrun:21,grid_level:21,grid_loc:21,grid_param:21,grid_request:21,grid_respons:21,grid_tim:21,griddata:24,griddatafactori:16,griddatarecord:9,gridgeometry2d:16,gridlin:[19,20,22,24,26,27,28,29,31],grle:33,ground:[20,21,22,33],groundwat:33,group:[20,24],growth:33,gscbl:33,gsctl:33,gsgso:33,gtb:25,gtp:25,guarante:2,guid:19,guidanc:33,gust:33,gv:25,gvl:25,gvv:21,gwd:33,gwdu:33,gwdv:33,gwrec:33,gyx:25,h02:25,h50above0c:33,h50abovem20c:33,h60above0c:33,h60abovem20c:33,h:[17,18,19,23,25,28,29,30,33],ha:[0,16,19,24],hag:21,hai:25,hail:33,hailprob:33,hailstorm:20,hain:33,hall:33,hand:[23,28],handl:[0,16,24],handler:[16,25],harad:33,hasn:19,hat:0,have:[16,21,23,28,31,34],havni:33,hazard:16,hcbb:33,hcbl:33,hcbt:33,hcdc:33,hcl:33,hcly:33,hctl:33,hdfgroup:0,hdln:31,header:0,headerformat:10,heat:33,heavi:33,hecbb:33,hecbt:33,height:[16,19,20,21,22,24,29,30,33],heightcompositereflect:33,heightcthgt:33,heightllcompositereflect:33,helcor:33,heli:21,helic:[21,33],heliospher:33,help:21,helper:16,hemispher:29,here:[19,21,22,23,24,25,28],hf:33,hflux:33,hfr:21,hgr:25,hgt:33,hgtag:33,hgtn:33,hh:21,hhc:29,hi1:21,hi3:21,hi4:21,hi:21,hidden:0,hide:16,hidx:21,hierarch:0,hierarchi:16,high:[0,20,33],highest:33,highlayercompositereflect:33,highli:0,hindex:33,hint:2,hlcy:33,hln:23,hmc:33,hmn:25,hodograph:[18,30],hom:25,hoo:25,hook:16,horizont:[22,24,26,27,29,33],host:[2,5,6,11,12,30],hot:23,hou:23,hour:[6,23,26,29,33],hourdiff:29,hourli:33,how:[21,22,34],howev:16,hpbl:33,hpcguid:21,hpcqpfndfd:21,hprimf:33,hr:[27,29,33],hrcono:33,hrrr:[21,27],hsclw:33,hsi:25,hstdv:33,hsv:23,htfl:33,htgl:33,htman:30,htsgw:33,htslw:33,http:[0,25,34],htx:33,huge:16,humid:33,humidi:33,hurrican:20,hy:25,hybl:33,hybrid:[15,26,33],hydro:16,hydrometeor:26,hyr:25,hz:33,i:[0,16,21,24,27,28,29],ic:33,icaht:33,icao:[16,33],icc:25,icec:33,iceg:33,icetk:33,ici:33,icib:33,icip:33,icit:33,icmr:33,icon:0,icprb:33,icsev:33,ict:23,icwat:33,id:[16,19,23,24,29,30],ida:23,idata:16,idatafactori:16,idatarequest:[2,14,16,19],idatastor:16,idd:0,ideal:16,identifi:[2,4,16,19,22,23,24,29],identifierkei:[2,12],idetifi:2,idra:[10,15],idrl:33,ierl:33,if1rl:33,if2rl:33,ifpclient:14,igeometrydata:[2,16],igeometrydatafactori:16,igeometryfactori:16,igeometryrequest:16,igm:25,ignor:[2,16,17,23,25,26,28],igriddata:[2,16],igriddatafactori:16,igridfactori:16,igridrequest:16,ihf:16,ii:27,iintegr:33,il:25,iliqw:33,iln:25,ilw:33,ilx:25,imag:[0,15,22,24,29],imageri:[0,19,21,27,32,33],imftsw:33,imfww:33,immedi:2,impact:20,implement:[0,2],implent:16,improv:16,imshow:19,imt:25,imwf:33,inc:[18,27],inch:[19,23,27,28,33],includ:[0,3,16,20,25,34],inclus:30,incompatiblerequestexcept:16,incorrectli:22,increas:22,increment:[16,18,25,30],ind:23,independ:0,index:[14,29,33],indic:[2,16,33],individu:[16,19,33],influenc:33,info:16,inform:[0,2,19,20,21,24],infrar:33,ingest:[0,16],ingestgrib:0,inhibit:33,init:0,initi:[2,30,33],ink:25,inlin:[17,18,20,23,25,26,27,28,29,30,31],inloc:[24,28],input:22,ins:16,inset_ax:[18,25,30],inset_loc:[18,25,30],insid:[16,24],inst:26,instal:0,instanc:[2,6,19,21],instantan:33,instanti:16,instead:16,instrr:33,instruct:34,instrument:20,inteflux:33,integ:[23,26,28,33],integr:33,intens:[15,20,33],inter:0,interact:16,interest:[21,32,33,34],interfac:[0,33],intern:2,internet:0,interpol:30,interpret:[16,22],intersect:31,interv:33,intfd:33,intiflux:33,intpflux:33,inv:21,invers:33,investig:21,invok:0,iodin:33,ion:33,ionden:33,ionospher:33,iontmp:33,iplay:21,iprat:33,ipx:25,ipython3:26,ir:[29,33],irband4:33,irradi:33,isbl:33,isentrop:33,iserverrequest:16,isobar:[18,33],isol:0,isotherm:[18,25,30,33],issu:[31,34],item:[17,30],its:[0,16,21],itself:[0,16],izon:33,j:[25,27,33],jack:25,jan:23,java:[0,25],javadoc:16,jax:23,jdn:25,jep:16,jj:27,join:18,jupyt:34,just:[21,34],jvm:16,k0co:23,k40b:25,k9v9:25,k:[21,22,23,25,30,33],kabe:25,kabi:25,kabq:[23,25],kabr:25,kaci:25,kack:25,kact:25,kacv:[23,25],kag:25,kagc:25,kahn:25,kai:25,kak:25,kal:25,kalb:25,kali:25,kalo:25,kalw:25,kama:25,kan:25,kanb:25,kand:25,kaoo:25,kapa:25,kapn:25,kart:25,kase:25,kast:25,kati:25,katl:[23,25],kau:25,kaug:25,kauw:25,kavl:25,kavp:25,kaxn:25,kazo:25,kbaf:25,kbce:25,kbde:[23,25],kbdg:23,kbdl:25,kbdr:25,kbed:25,kbfd:25,kbff:25,kbfi:25,kbfl:25,kbgm:25,kbgr:25,kbhb:25,kbhm:25,kbi:[23,25],kbih:25,kbil:[23,25],kbjc:25,kbji:25,kbke:25,kbkw:25,kblf:25,kblh:25,kbli:25,kbml:25,kbna:25,kbno:25,kbnv:25,kbo:[23,25],kboi:[23,25],kbpt:25,kbqk:25,kbrd:25,kbrl:25,kbro:[23,25],kbtl:25,kbtm:25,kbtr:25,kbtv:25,kbuf:25,kbui:23,kbur:25,kbvi:25,kbvx:25,kbvy:25,kbwg:25,kbwi:25,kbyi:25,kbzn:25,kcae:25,kcak:25,kcar:[23,25],kcd:25,kcdc:25,kcdr:25,kcec:25,kcef:25,kcgi:25,kcgx:25,kch:[23,25],kcha:25,kchh:25,kcho:25,kcid:25,kciu:25,kckb:25,kckl:25,kcle:[23,25],kcll:25,kclm:25,kclt:[23,25],kcmh:25,kcmi:25,kcmx:25,kcnm:25,kcnu:25,kco:25,kcod:25,kcoe:[23,25],kcon:25,kcou:25,kcpr:[23,25],kcre:25,kcrp:25,kcrq:25,kcrw:[23,25],kcsg:25,kcsv:25,kctb:25,kcvg:25,kcwa:25,kcy:25,kdab:25,kdag:25,kdai:25,kdal:25,kdan:25,kdbq:25,kdca:25,kddc:25,kdec:25,kden:25,kdet:25,kdfw:[23,25],kdhn:25,kdht:25,kdik:25,kdl:25,kdlh:[23,25],kdmn:25,kdpa:25,kdra:25,kdro:25,kdrt:[23,25],kdsm:[23,25],kdtw:25,kdug:25,kduj:25,keat:25,keau:25,kecg:25,keed:25,keep:[19,24],kege:25,kei:[4,6,7,16],kekn:25,keko:25,kel:25,keld:25,keli:[23,25],kelm:25,kelo:25,kelp:[23,25],kelvin:[18,22,28],keng:33,kenv:25,keph:[23,25],kepo:25,kepz:25,keri:25,kesf:25,keug:25,kevv:25,kewb:25,kewn:25,kewr:25,keyw:25,kfai:25,kfam:25,kfar:[23,25],kfat:[23,25],kfca:25,kfdy:25,kfkl:25,kflg:[23,25],kfll:25,kflo:25,kfmn:25,kfmy:25,kfnt:25,kfoe:25,kfpr:25,kfrm:25,kfsd:[23,25],kfsm:25,kft:33,kftw:25,kfty:25,kfve:25,kfvx:25,kfwa:25,kfxe:25,kfyv:25,kg:[25,26,33],kgag:25,kgcc:25,kgck:25,kgcn:25,kgeg:25,kgfk:25,kgfl:25,kggg:25,kggw:25,kgjt:[23,25],kgl:25,kgld:[23,25],kglh:25,kgmu:25,kgnr:25,kgnv:25,kgon:25,kgpt:25,kgrb:[23,25],kgri:25,kgrr:25,kgso:25,kgsp:25,kgtf:25,kguc:25,kgup:25,kgwo:25,kgyi:25,kgzh:25,khat:25,khbr:25,khdn:25,khib:25,khio:25,khky:25,khlg:25,khln:[23,25],khob:25,khon:25,khot:[23,25],khou:[23,25],khpn:25,khqm:25,khrl:25,khro:25,khsv:[23,25],kht:25,khth:25,khuf:25,khul:25,khut:25,khvn:25,khvr:25,khya:25,ki:[21,29],kiad:25,kiag:25,kiah:25,kict:[23,25],kida:[23,25],kil:25,kilg:25,kilm:25,kind:[21,23,25,33],kinect:33,kinet:33,kink:25,kinl:25,kint:25,kinw:25,kipl:25,kipt:25,kisn:25,kisp:25,kith:25,kiwd:25,kjac:25,kjan:[23,25],kjax:[23,25],kjbr:25,kjfk:25,kjhw:25,kjkl:25,kjln:25,kjm:25,kjst:25,kjxn:25,kkl:25,kla:25,klaf:25,klan:25,klar:25,klax:[23,25],klbb:[23,25],klbe:25,klbf:[23,25,30],klcb:25,klch:25,kleb:25,klex:[23,25],klfk:25,klft:25,klga:25,klgb:25,klgu:25,klit:25,klmt:[23,25],klnd:25,klnk:[23,25],klol:25,kloz:25,klrd:25,klse:25,klsv:23,kluk:25,klv:25,klw:25,klwb:25,klwm:25,klwt:25,klyh:25,klzk:25,km:33,kmaf:25,kmb:25,kmcb:25,kmce:25,kmci:25,kmcn:25,kmco:25,kmcw:25,kmdn:25,kmdt:25,kmdw:25,kmei:25,kmem:[23,25],kmfd:25,kmfe:25,kmfr:25,kmgm:25,kmgw:25,kmhe:25,kmhk:25,kmht:25,kmhx:[15,25,26],kmhx_0:26,kmia:[23,25],kmiv:25,kmkc:25,kmke:25,kmkg:25,kmkl:25,kml:25,kmlb:25,kmlc:25,kmlf:23,kmli:25,kmlp:23,kmlt:25,kmlu:25,kmmu:25,kmob:[23,25],kmot:25,kmpv:25,kmqt:25,kmrb:25,kmry:25,kmsl:25,kmsn:25,kmso:[23,25],kmsp:[23,25],kmss:25,kmsy:[23,25],kmtj:25,kmtn:25,kmwh:25,kmyr:25,kna:25,knes1:33,knew:25,knl:25,knot:[18,23,25,28,30],know:[16,19,22],known:[0,19,34],knsi:25,knyc:23,knyl:23,ko:[30,33],koak:25,kofk:25,kogd:25,kokc:[23,25],kolf:23,koli:23,kolm:25,koma:25,kont:25,kopf:25,koqu:25,kord:[23,25],korf:25,korh:25,kosh:25,koth:[23,25],kotm:25,kox:33,kp11:25,kp38:25,kpa:33,kpae:25,kpah:25,kpbf:25,kpbi:25,kpdk:25,kpdt:[23,25],kpdx:[23,25],kpfn:25,kpga:25,kphf:25,kphl:[23,25],kphn:25,kphx:[23,25],kpia:25,kpib:25,kpie:25,kpih:[23,25],kpir:25,kpit:[23,25],kpkb:25,kpln:25,kpmd:25,kpn:25,kpnc:25,kpne:25,kpou:25,kpqi:25,kprb:25,kprc:25,kpsc:25,kpsm:[23,25],kpsp:25,kptk:25,kpub:25,kpuw:23,kpvd:25,kpvu:25,kpwm:25,krad:25,krap:[23,25],krbl:25,krdd:25,krdg:25,krdm:[23,25],krdu:25,krf:21,krfd:25,kric:[23,25],kriw:25,krk:25,krkd:25,krno:[23,25],krnt:25,kroa:25,kroc:25,krow:25,krsl:25,krst:25,krsw:25,krum:25,krut:23,krwf:25,krwi:25,krwl:25,ksac:25,ksaf:25,ksan:25,ksat:[23,25],ksav:25,ksba:25,ksbn:25,ksbp:25,ksby:25,ksch:25,ksck:25,ksdf:25,ksdm:25,ksdy:25,ksea:[23,25],ksep:25,ksff:25,ksfo:[23,25],ksgf:25,ksgu:25,kshr:25,kshv:[23,25],ksjc:25,ksjt:25,kslc:[23,25],ksle:25,kslk:25,ksln:25,ksmf:25,ksmx:25,ksn:25,ksna:25,ksp:25,kspi:25,ksrq:25,kssi:25,kst:25,kstj:25,kstl:25,kstp:25,ksu:25,ksun:25,ksux:25,ksve:25,kswf:25,ksyr:[23,25],ktc:25,ktcc:25,ktcl:25,kteb:25,ktiw:25,ktlh:[23,25],ktmb:25,ktol:25,ktop:25,ktpa:[23,25],ktph:25,ktri:25,ktrk:25,ktrm:25,kttd:25,kttf:23,kttn:25,ktu:25,ktul:25,ktup:25,ktvc:25,ktvl:25,ktwf:25,ktxk:25,kty:25,ktyr:25,kuca:25,kuil:23,kuin:25,kuki:25,kunv:[23,25],kurtosi:33,kvct:25,kvel:25,kvih:23,kvld:25,kvny:25,kvrb:25,kwarg:[2,12],kwjf:25,kwmc:[23,25],kwrl:25,kwy:25,kx:33,ky22:25,ky26:25,kykm:25,kykn:25,kyng:25,kyum:25,kzzv:25,l1783:25,l:[18,19,21,25,29,30,33],la:28,laa:25,label:22,lai:33,lake:23,lambda:33,lambertconform:[17,23,28],lamp2p5:21,land:[23,31,33],landn:33,landu:33,languag:16,lap:25,lapp:33,lapr:33,laps:33,larg:[24,33],last:[17,21,23,31],lasthourdatetim:[17,23,28],lat:[2,6,9,15,16,17,18,19,21,22,24,26,27,28,29],latent:33,later:[23,28,31],latest:[2,18,29],latitud:[16,17,18,22,23,24,28,33],latitude_formatt:[20,22,24,26,27,28,29,31],latlondeleg:9,latlongrid:9,lauv:33,lavni:33,lavv:33,lax:23,layer:[16,21,26,33],layth:33,lazi:2,lazygridlatlon:12,lazyloadgridlatlon:[2,12],lbb:23,lbf:23,lbslw:33,lbthl:33,lby:25,lcbl:33,lcdc:33,lcl:[25,30],lcl_pressur:30,lcl_temperatur:30,lcly:33,lctl:33,lcy:33,ldadmesonet:16,ldl:25,ldmd:0,lead:22,leaf:33,left:[19,30],leftov:2,legendr:33,len:[17,18,22,24,26,28,29,31],length:[31,33],less:[16,18],let:[16,19,22],level3:32,level:[0,2,4,6,7,12,16,18,22,24,25,26,30,32,33],levelreq:18,lex:23,lftx:33,lhtfl:33,lhx:25,li:[21,29],lib:22,librari:22,lic:25,lift:[29,33],light:[20,33],lightn:[32,33],lightningdensity15min:33,lightningdensity1min:33,lightningdensity30min:33,lightningdensity5min:33,lightningprobabilitynext30min:33,like:[3,16,21],limb:33,limit:[2,16,19,28],line:[16,18,19,24,25,30],linestyl:[18,19,24,25,28,29,30],linewidth:[18,19,23,24,25,27,28,30],linux:0,lipmf:33,liq:26,liquid:33,liqvsm:33,lisfc2x:21,list:[2,4,6,7,8,16,18,20,25,26,29],live:19,ll:[21,22,24,34],llcompositereflect:33,llsm:33,lltw:33,lm5:21,lm6:21,lmbint:33,lmbsr:33,lmh:33,lmt:23,lmv:33,ln:33,lnk:23,lo:33,load:2,loam:33,loc:[18,25,30],local:[0,16,19],localhost:12,locap:21,locat:[2,4,7,16,17,20,22,24,30],locationfield:[24,28],locationnam:[2,4,12,16,22],log10:33,log:[0,25,30,33],logger:0,logic:[22,24],logp:30,lon:[2,6,9,15,16,17,18,19,21,22,24,26,27,28,29],longer:19,longitud:[16,17,18,22,23,24,28,33],longitude_formatt:[20,22,24,26,27,28,29,31],look:[16,19,21,22,24],lookup:16,loop:[19,31],lopp:33,lor:25,louisiana:28,louv:33,lovv:33,low:[29,33],lower:[29,33],lowest:33,lowlayercompositereflect:33,lp:33,lpmtf:33,lrghr:33,lrgmr:33,lrr:25,lsclw:33,lsf:25,lsoil:33,lspa:33,lsprate:33,lssrate:33,lssrwe:33,lst:29,lsv:23,lswp:33,ltng:33,lu:25,lvl:[18,21],lvm:25,lw1:25,lwavr:33,lwbz:33,lwhr:33,lwrad:33,m2:33,m2spw:33,m6:33,m:[17,18,23,25,26,28,29,30,33],ma:24,mac:[0,19,25],macat:33,mactp:33,made:[16,19,24],madv:21,magenta:19,magnet:33,magnitud:[18,33],mai:[0,16,19,22,28,34],main:[0,16,33],maintain:16,maip:33,majorriv:24,make:[16,22,28],make_map:[26,27,28,29,31],makedir:19,maketim:13,man_param:30,manag:[0,16,34],mandatori:30,mangeo:30,mani:[22,24,28],manifest:16,manipul:[0,16,19,22,24],manner:16,manual:25,map:[16,21,23,27,28,29,32,33],mapdata:[24,28],mapgeometryfactori:16,mapper:[32,33],marker:[20,24,27],markerfacecolor:30,mask:[17,28,33],masked_invalid:24,mass:33,match:[2,16],math:[18,25,30],mathemat:16,matplotlib:[17,18,19,20,22,23,24,25,26,27,28,29,30,31],matplotplib:24,matter:33,max:[17,18,22,24,25,26,27,29,30,33],maxah:33,maxdvv:33,maxept:21,maximum:[24,27,33],maxref:33,maxrh:33,maxuvv:33,maxuw:33,maxvw:33,maxw:33,maxwh:33,maz:25,mb:[18,21,30,33],mbar:[23,25,28,30],mcbl:33,mcdc:33,mcida:29,mcly:33,mcon2:21,mcon:21,mconv:33,mctl:33,mcy:33,mdpc:25,mdpp:25,mdsd:25,mdst:25,mean:[16,33],measur:20,mecat:33,mectp:33,medium:33,mei:33,melbrn:33,melt:[26,33],mem:23,memori:16,merg:33,merged_counti:24,mergedazshear02kmagl:33,mergedazshear36kmagl:33,mergedbasereflect:33,mergedbasereflectivityqc:33,mergedreflectivityatlowestaltitud:33,mergedreflectivitycomposit:33,mergedreflectivityqccomposit:33,mergedreflectivityqcomposit:33,mergesound:25,meridion:33,mesh:33,meshtrack120min:33,meshtrack1440min:33,meshtrack240min:33,meshtrack30min:33,meshtrack360min:33,meshtrack60min:33,mesocyclon:26,messag:[0,16],met:[2,16],metadata:0,metar:[2,16,17,32],meteorolog:[0,34],meteosat:29,meter:[21,22,24],method:[2,16,19,21],metpi:[17,18,27,28,30,32],metr:33,mf:16,mflux:33,mflx:33,mg:33,mgfl:25,mggt:25,mght:25,mgpb:25,mgsj:25,mham:25,mhca:25,mhch:25,mhlc:25,mhle:25,mhlm:25,mhnj:25,mhpl:25,mhro:25,mhsr:25,mhte:25,mhtg:25,mhyr:25,mia:23,mib:25,microburst:20,micron:[29,33],mid:33,middl:33,mie:25,might:[2,21,34],min:[17,18,22,24,26,27,29,33],mind:16,minept:21,miniconda3:22,minim:33,minimum:[24,33],minrh:33,minut:[17,28,29],miscellan:29,miss:[28,30],missing200:33,mississippi:28,mix1:21,mix2:21,mix:[25,33],mixht:33,mixl:33,mixli:33,mixr:33,mixrat:21,mkj:25,mkjp:25,mld:25,mlf:23,mllcl:21,mlp:23,mlyno:33,mm:[21,33],mma:25,mmaa:25,mmag:21,mmbt:25,mmc:25,mmce:25,mmcl:25,mmcn:25,mmcu:25,mmcv:25,mmcz:25,mmdo:25,mmgl:25,mmgm:25,mmho:25,mmlp:25,mmma:25,mmmd:25,mmml:25,mmmm:25,mmmt:25,mmmx:25,mmmy:25,mmmz:25,mmnl:25,mmp:21,mmpr:25,mmrx:25,mmsd:25,mmsp:25,mmtc:25,mmtj:25,mmtm:25,mmto:25,mmtp:25,mmun:25,mmvr:25,mmzc:25,mmzh:25,mmzo:25,mnmg:25,mnpc:25,mnt3hr:21,mnt6hr:21,mntsf:33,mob:23,moddelsound:16,model:[6,21,22,29,32,33],modelheight0c:33,modelnam:[6,16,18],modelsound:[14,18,21,25],modelsurfacetemperatur:33,modelwetbulbtemperatur:33,moder:33,modern:0,modifi:[0,16,19],moisten:33,moistur:33,moisutr:25,momentum:33,monoton:22,montgomeri:33,mor:25,more:[16,19,21,22],mosaic:33,most:[0,16,21,22,30,33],motion:33,mountain:33,mountainmapperqpe01h:33,mountainmapperqpe03h:33,mountainmapperqpe06h:33,mountainmapperqpe12h:33,mountainmapperqpe24h:33,mountainmapperqpe48h:33,mountainmapperqpe72h:33,move:16,mpbo:25,mpch:25,mpda:25,mpl:[20,22,24,26,27,28,29,31],mpl_toolkit:[18,25,30],mpmg:25,mpsa:25,mpto:25,mpv:21,mpx:25,mr:25,mrch:25,mrcono:33,mrf:[23,25],mrlb:25,mrlm:25,mrm:21,mrms_0500:21,mrms_1000:21,mrmsvil:33,mrmsvildens:33,mroc:25,mrpv:25,ms:28,msac:25,msfdi:21,msfi:21,msfmi:21,msg:21,msgtype:20,msl:[21,33],mslet:33,mslp:[25,33],mslpm:33,mso:23,msp:23,msr:21,msss:25,mstav:33,msy:23,mtch:25,mtha:33,mthd:33,mthe:33,mtht:33,mtl:25,mtpp:25,mtri:[25,30],mtv:[21,25],mty:25,muba:25,mubi:25,muca:25,mucap:21,mucl:25,mucm:25,mucu:25,mugm:25,mugt:25,muha:25,multi:2,multi_value_param:[23,28],multilinestr:24,multipl:[0,16,19,21,24,28],multipolygon:[15,24,28,31],mumo:25,mumz:25,mung:25,must:[2,3,16,19,25],muvr:25,muvt:25,mwcr:25,mwsl:33,mwsper:33,mxsalb:33,mxt3hr:21,mxt6hr:21,mxuphl:33,myb:25,myeg:25,mygf:25,mygw:25,myl:25,mynn:25,mzbz:25,mzptsw:33,mzpww:33,mzt:25,mzwper:33,n0r:29,n1p:29,n:[24,25,30,33],nam12:21,nam40:[18,21,27],nam:[18,25],name:[0,2,4,5,7,8,16,18,19,24,26,28,29,30,31],nan:[17,23,26,28,29,30],nanmax:26,nanmin:26,nation:[0,34],nativ:[2,3,16,19],natur:33,naturalearthfeatur:[24,29,31],navgem0p5:21,nbdsf:33,nbe:21,nbsalb:33,ncep:25,ncip:33,nck:25,ncoda:21,ncp:0,ncpcp:33,ndarrai:26,nddsf:33,ndvi:33,nearest:33,neatli:24,necessari:[16,24],need:[2,16,19,21,22,24,34],neighbor:33,neither:33,nesdi:29,net:33,netcdf:[0,19],neutral:33,neutron:33,newdatarequest:[2,12,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],newhostnam:2,nexrad3:2,nexrad:32,nexrad_data:26,nexrcomp:29,next:[19,23,28,31,33],ngx:25,nh:29,nhk:25,nice:24,nid:25,night:[20,33],nkx:25,nlat:33,nlatn:33,nlgsp:33,nlwr:33,nlwrc:33,nlwrf:33,nlwrt:33,noa:25,noaa:25,noaaport:25,nohrsc:21,nomin:[21,33],non:[33,34],none:[2,5,6,7,9,12,19,22,23,24,27,28,29,31,33],normal:[29,33],normalis:33,north:[17,23],northern:29,northward_wind:[23,28],note:[16,18,19,21,22,24,33],notebook:[17,18,20,23,24,25,26,27,28,29,30,31,34],notif:0,now:[21,24,27,28,31],np:[17,18,19,20,23,25,26,27,28,29,30,31],npixu:33,npoess:29,nru:25,nsharp:25,nsof:29,nst1:21,nst2:21,nst:21,nswr:33,nswrf:33,nswrfc:33,nswrt:33,ntat:[21,33],ntd:25,ntmp:25,ntp:29,ntrnflux:33,nuc:33,number:[0,8,16,22,24,31,33],numer:[2,33],nummand:30,nummwnd:30,numpi:[9,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31],numsigt:30,numsigw:30,numtrop:30,nw:[21,23,25,28],nwsalb:33,nwstr:33,nx:[9,12],ny:[9,12],nyc:23,nyl:23,o3mr:33,o:25,ob:[2,4,15,16,17,20,21,24,25,30,31,32],obil:33,object:[2,3,4,6,16,30],obml:33,observ:[0,17,23],observs:28,obsgeometryfactori:16,ocean:[23,33],oct:20,off:[0,19,22],offer:21,offset:[16,19,24],offsetstr:29,often:16,ohc:33,oitl:33,okai:22,okc:23,olf:23,oli:23,olyr:33,om:25,omega:[25,33],omgalf:33,oml:33,omlu:33,omlv:33,onc:[16,21],one:[16,19,21,22,24],onli:[0,2,4,21,24,33],onlin:21,onset:33,onto:19,op:24,open:[0,16,33,34],oper:[0,20,34],opt:22,option:[2,6,16,21,29],orang:[17,24],orbit:20,ord:23,order:[18,22,24,33,34],org:0,orient:[22,24,26,27,29],origin:19,orn:21,orographi:33,orthograph:20,os:[0,19],osd:33,oseq:33,oth:23,other:[0,16,19,21,24,29],otherwis:2,our:[18,19,21,22,24,27,28,29,31,34],ourselv:25,out:[2,16,21,23,28,34],outlook:33,output:21,outputdir:19,outsid:16,ovc:[23,28],over:[25,33],overal:33,overhead:2,own:[0,16],ozcat:33,ozcon:33,ozmax1:33,ozmax8:33,ozon:[29,33],p2omlt:33,p3hr:21,p6hr:21,p:[21,25,29,30,33],pa:[25,33],pacakg:34,packag:[0,16,21,22,24],pad:19,pad_inch:19,padv:21,page:24,pai:18,pair:[3,6,17],palt:33,parallel:33,param1:21,param2:21,param3:21,param:[4,8,16,17,21,23,28],paramet:[2,4,6,8,9,12,16,18,22,28,30,31,32],parameter:33,parameterin:33,paramt:25,parcal:33,parcali:33,parcel:[30,33],parcel_profil:[25,30],parm:[18,21,25,31],parm_arrai:30,parmid:5,part:[0,16],particl:33,particul:33,particular:[2,16],pass:[3,16,19,28],past:33,path:[0,19],pbe:21,pblr:33,pblreg:33,pcbb:33,pcbt:33,pcolormesh:[26,27,29],pcp:33,pcpn:33,pctp1:33,pctp2:33,pctp3:33,pctp4:33,pd:[15,31],pdf:0,pdly:33,pdmax1:33,pdmax24:33,pdt:23,pdx:23,peak:33,peaked:33,pec:21,pecbb:33,pecbt:33,pecif:16,pedersen:33,pellet:33,per:33,percent:[29,33],perform:[2,3,6,16,18],period:[25,31,33],perpendicular:33,perpw:33,person:0,perspect:0,persw:33,pertin:16,pevap:33,pevpr:33,pfrezprec:33,pfrnt:21,pfrozprec:33,pgrd1:21,pgrd:21,pgrdm:21,phase:[26,33],phenomena:20,phensig:[15,31],phensigstr:31,phl:23,photar:33,photospher:33,photosynthet:33,phx:23,physic:33,physicalel:29,pick:[19,21],pid:5,piec:[0,16],pih:23,pirep:[16,21],pit:23,piva:21,pixel:[19,33],pixst:33,plai:22,plain:33,plan:16,planetari:33,plant:33,platecarre:[17,20,22,23,24,26,27,28,29,31],plbl:33,pleas:[22,34],pli:33,plot:[18,19,20,21,24,25,26,30,31],plot_barb:[18,25,30],plot_colormap:[18,25,30],plot_dry_adiabat:18,plot_mixing_lin:18,plot_moist_adiabat:18,plot_paramet:17,plot_text:23,plpl:33,plsmden:33,plt:[17,18,19,20,22,23,24,25,26,27,28,29,30,31],plu:33,plug:16,plugin:[25,30],plugindataobject:16,pluginnam:16,pm:33,pmaxwh:33,pmtc:33,pmtf:33,png:19,poe:29,point:[15,16,17,18,19,20,21,24,25,27,33],pointdata:16,poli:[15,31],polit:24,political_boundari:[24,31],pollut:33,polygon:[15,16,17,18,24,27,28,32],pop:[24,33],popul:[16,21,24],populatedata:16,poro:33,poros:33,port:[5,11],posh:33,post:0,postgr:[0,24],pot:[21,33],pota:21,potenti:33,power:[16,29],poz:33,pozo:33,pozt:33,ppan:33,ppb:33,ppbn:33,ppbv:33,ppert:33,pperww:33,ppffg:33,ppnn:33,ppsub:33,pr:[21,25,33],practicewarn:21,prate:33,pratmp:33,prcp:33,pre:33,preced:16,precip:[26,32,33],precipit:[23,26,27,28,29,33],precipr:33,preciptyp:33,predomin:33,prepar:[16,23],prepend:23,pres_weath:[23,28],presa:33,presd:33,presdev:33,present:0,present_weath:[23,28],presn:33,pressur:[18,25,29,30,33],presur:33,presweath:[2,23,28],previou:[22,24],previous:[24,34],primari:[0,33],print:[15,17,18,19,20,21,22,23,24,25,26,27,28,29,31],prior:33,prman:30,prmsl:33,prob:33,probabilityse:33,probabl:33,proce:19,process:[0,2,16],processor:0,procon:33,prod:26,produc:22,product:[0,2,15,16,17,25,26,32,33],productid:26,productnam:26,prof:30,profil:[0,16,21,25,30],prog_disc:24,prognam:5,program:[0,34],progress:24,proj:[19,23,28],project:[16,17,19,20,22,23,24,26,27,28,29,31],proper:19,properti:29,proport:33,propos:33,proprietari:0,protden:33,proton:33,prottmp:33,provid:[0,2,16,24,34],prp01h:33,prp03h:33,prp06h:33,prp12h:33,prp24h:33,prp30min:33,prpmax:33,prptmp:33,prregi:29,prsig:30,prsigsv:33,prsigsvr:33,prsigt:30,prsvr:33,ps:30,pseudo:33,psfc:33,psm:23,psql:0,psu:33,ptan:33,ptbn:33,ptend:33,ptnn:33,ptor:33,ptr:21,ptva:21,ptyp:21,ptype:33,pull:[19,23],pulsecount:20,pulseindex:20,pure:16,purpl:17,put:[23,28],puw:23,pv:[21,33],pveq:21,pvl:33,pvmww:33,pvort:33,pw2:21,pw:[21,29,33],pwat:33,pwc:33,pwcat:33,pwper:33,pwther:33,px_height:19,px_width:19,py:[16,22,34],pydata:14,pygeometrydata:14,pygriddata:[14,22,24],pyjobject:16,pyplot:[17,18,19,20,22,23,24,25,26,27,28,29,30,31],python3:[22,34],python:[0,2,3,16,19,21,22,23,24,28,29,31],q:[25,33],qdiv:21,qmax:33,qmin:33,qnvec:21,qpe01:33,qpe01_acr:33,qpe01_alr:33,qpe01_fwr:33,qpe01_krf:33,qpe01_msr:33,qpe01_orn:33,qpe01_ptr:33,qpe01_rha:33,qpe01_rsa:33,qpe01_str:33,qpe01_tar:33,qpe01_tir:33,qpe01_tua:33,qpe06:33,qpe06_acr:33,qpe06_alr:33,qpe06_fwr:33,qpe06_krf:33,qpe06_msr:33,qpe06_orn:33,qpe06_ptr:33,qpe06_rha:33,qpe06_rsa:33,qpe06_str:33,qpe06_tar:33,qpe06_tir:33,qpe06_tua:33,qpe24:33,qpe24_acr:33,qpe24_alr:33,qpe24_fwr:33,qpe24_krf:33,qpe24_msr:33,qpe24_orn:33,qpe24_ptr:33,qpe24_rha:33,qpe24_rsa:33,qpe24_str:33,qpe24_tar:33,qpe24_tir:33,qpe24_tua:33,qpe:33,qpeffg01h:33,qpeffg03h:33,qpeffg06h:33,qpeffgmax:33,qpf06:33,qpf06_acr:33,qpf06_alr:33,qpf06_fwr:33,qpf06_krf:33,qpf06_msr:33,qpf06_orn:33,qpf06_ptr:33,qpf06_rha:33,qpf06_rsa:33,qpf06_str:33,qpf06_tar:33,qpf06_tir:33,qpf06_tua:33,qpf24:33,qpf24_acr:33,qpf24_alr:33,qpf24_fwr:33,qpf24_krf:33,qpf24_msr:33,qpf24_orn:33,qpf24_ptr:33,qpf24_rha:33,qpf24_rsa:33,qpf24_str:33,qpf24_tar:33,qpf24_tir:33,qpf24_tua:33,qpidd:0,qpv1:21,qpv2:21,qpv3:21,qpv4:21,qq:33,qrec:33,qsvec:21,qualifi:19,qualiti:33,quantit:33,queri:[0,16,18,19,24],queue:0,quick:19,quit:21,qvec:21,qz0:33,r:[16,18,19,20,25,30,33],rad:33,radar:[0,2,4,10,16,21,32,33],radar_spati:21,radarcommon:[14,15],radargridfactori:16,radaronlyqpe01h:33,radaronlyqpe03h:33,radaronlyqpe06h:33,radaronlyqpe12h:33,radaronlyqpe24h:33,radaronlyqpe48h:33,radaronlyqpe72h:33,radarqualityindex:33,radi:33,radial:[10,33],radianc:33,radiat:33,radio:33,radioact:33,radiu:33,radt:33,rage:33,rai:33,rain1:21,rain2:21,rain3:21,rain:[29,33],rainbow:[22,26,27],rainfal:[27,33],rais:[3,18],rala:33,rang:[16,19,20,23,26,28,33],rap13:[15,21,22],rap:23,raster:10,rate:[26,29,33],rather:18,ratio:[19,25,33],raw:[16,19,22,33],raytheon:[0,16,17,22,23,28],raza:33,rbg:19,rc:[0,33],rcparam:[18,23,25,30],rcq:33,rcsol:33,rct:33,rdlnum:33,rdm:23,rdrip:33,rdsp1:33,rdsp2:33,rdsp3:33,re:[0,16,19,21],reach:34,read:[0,21,22],readabl:0,readi:[0,21],real:31,reason:16,rec:26,receiv:0,recent:[22,30],recharg:33,record:[10,16,17,18,23,24,28,30,31],rectangular:[4,16],recurr:33,red:[0,17,20,22],reduc:[16,33],reduct:33,ref:[15,16,31],refc:33,refd:33,refer:[2,4,16,19,21,24,25,33],refin:24,refl:[15,26],reflect:[0,26,33],reflectivity0c:33,reflectivityatlowestaltitud:33,reflectivitym10c:33,reflectivitym15c:33,reflectivitym20c:33,reflectivitym5c:33,reftim:[2,19,25,31],reftimeonli:[1,2,12],refzc:33,refzi:33,refzr:33,regardless:16,regim:33,region:[32,33],registri:16,rel:[26,33],relat:0,reld:33,releas:[0,34],relev:21,relv:33,remain:0,remot:33,remov:19,render:[0,24,29],replac:[16,18],reporttyp:25,repres:[3,16],represent:3,req:16,request:[0,1,2,4,5,6,11,12,15,17,18,19,20,23,24,25,26,27,28,29,30,31,34],requir:[0,2,16,19,24],requst:24,reset:19,resist:33,resiz:19,resolut:[17,19,20,22,24,26,27,29],resourc:[21,32],respect:[16,22,33],respons:[2,15,17,19,20,22,23,24,25,26,27,28,29,30,31],rest:[16,24,28],result:16,retop:33,retriev:[0,4,6,30],retrofit:16,rev:33,review:[0,16],rfl06:33,rfl08:33,rfl16:33,rfl39:33,rgb:19,rgbname:19,rh:[21,25,33],rh_001_bin:21,rh_002_bin:21,rha:21,rhpw:33,ri:33,ric:23,richardson:33,right:[0,19],right_label:[22,24,26,28,29,31],rime:33,risk:33,river:16,rlyr:33,rm5:21,rm6:21,rmix:25,rmprop2:21,rmprop:21,rno:23,ro:21,root:33,rotat:[18,33],rotationtrackll120min:33,rotationtrackll1440min:33,rotationtrackll240min:33,rotationtrackll30min:33,rotationtrackll360min:33,rotationtrackll60min:33,rotationtrackml120min:33,rotationtrackml1440min:33,rotationtrackml240min:33,rotationtrackml30min:33,rotationtrackml360min:33,rotationtrackml60min:33,rough:33,round:30,rout:16,royalblu:17,rprate:33,rpttype:30,rqi:33,rrqpe:29,rsa:21,rsmin:33,rssc:33,rtma:21,rtof:21,run:[0,2,16,18,19,21,22,34],runoff:33,runtim:2,runtimewarn:[17,23,25,26,28],rut:23,rv:21,rwmr:33,s:[16,17,18,19,21,22,23,24,25,27,28,29,33,34],salbd:33,salin:33,salt:33,salti:33,same:[3,16,19,24,28,29],sampl:[6,24],samplepoint:6,sat:[23,33],sat_h:19,satd:33,satellit:[0,16,19,21,32],satellite_height:19,satellitefactori:16,satellitefactoryregist:16,satellitegriddata:16,satellitegridfactori:16,satosm:33,satur:33,save:[0,16],savefig:[19,23],sbc123:33,sbc124:33,sbsalb:33,sbsno:33,sbt112:33,sbt113:33,sbt114:33,sbt115:33,sbt122:33,sbt123:33,sbt124:33,sbt125:33,sbta1610:33,sbta1611:33,sbta1612:33,sbta1613:33,sbta1614:33,sbta1615:33,sbta1616:33,sbta167:33,sbta168:33,sbta169:33,sbta1710:33,sbta1711:33,sbta1712:33,sbta1713:33,sbta1714:33,sbta1715:33,sbta1716:33,sbta177:33,sbta178:33,sbta179:33,sc:[28,33],scalb:33,scale:[22,24,29,31,33],scan:[0,15,26,33],scarter:[19,22],scatter:[20,24,27],scatteromet:33,scbl:33,scbt:33,sccbt:33,scctl:33,scctp:33,sce:33,scene:33,scestuwind:33,scestvwind:33,schema:24,scint:33,scintil:33,scipi:22,scli:33,scope:16,scp:33,scpw:33,scrad:33,scratch:16,script:[0,30],scst:33,sct:[23,28],sctl:33,sden:33,sdsgso:33,sdwe:33,sea:[23,33],seab:33,seaic:21,sealevelpress:[23,28],seamless:33,seamlesshsr:33,seamlesshsrheight:33,search:16,sec:26,second:[9,21,29,33],secondari:33,section:[16,24,33],sector:[15,19,27],sectorid:29,see:[0,16,33],select:[18,19,23,24,26],self:22,semimajor_axi:19,semiminor_axi:19,send:[0,16],sendrequest:11,sens:[0,33],sensibl:33,sensorcount:20,sent:0,sep:25,separ:[0,2,16,30],sequenc:33,seri:[6,20],server:[0,16,18,19,21,22,24,30,31,34],serverrequestrout:16,servic:[0,11,16,34],servr:33,set:[2,4,16,19,22,23,24,29,30,31,33],set_ext:[17,22,23,24,26,27,28,29,31],set_label:[22,24,26,27,29],set_size_inch:19,set_titl:[17,20,23,28],set_xlim:[18,25,30],set_ylim:[18,25,30],setdatatyp:[4,15,16,19,21,22,29,30,31],setenvelop:[4,16],setlazyloadgridlatlon:[2,12],setlevel:[4,15,16,21,22,26,27],setlocationnam:[4,15,16,18,19,21,22,23,24,25,26,27,28,29,30],setparamet:[4,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],setstoragerequest:16,setup:34,sevap:33,seven:20,sever:[0,20,21,24,33],sfc:[16,29,33],sfcob:[2,16,21],sfcr:33,sfcrh:33,sfexc:33,sfo:23,sgcvv:33,sh:[0,21,25],shade:22,shahr:33,shailpro:33,shallow:33,shamr:33,shape:[4,8,15,16,17,18,21,24,26,27,28,29,31],shape_featur:[24,28,31],shapelyfeatur:[24,28,31],share:0,shear:[21,33],sheer:33,shef:16,shelf:0,shi:33,should:[2,16],show:[18,20,21,22,23,25,26,29,30,31],shrink:[22,24,26,27,29],shrmag:21,shsr:33,shtfl:33,shv:23,shwlt:21,shx:21,si:29,sice:33,sighailprob:33,sighal:33,sigl:33,sigma:33,signific:[30,33],significantli:24,sigp:33,sigpar:33,sigt:30,sigt_param:30,sigtgeo:30,sigtrndprob:33,sigwindprob:33,silt:33,similar:[0,16,17],simpl:[23,28],simple_layout:28,simpli:0,simul:33,sinc:[0,16,19],singl:[0,2,16,18,19,21,24,28,33],single_value_param:[23,28],sipd:33,site:[5,15,21,22,24,25,31],siteid:31,size:[19,26,29,33],skew:[25,30],skewt:[18,30],skin:[29,33],skip:23,sktmp:33,sky:33,sky_cov:[23,28],sky_layer_bas:[23,28],skycov:[2,23,28],skylayerbas:[2,23,28],slab:16,slant:[25,30],slc:23,sld:33,sldp:33,sli:[21,33],slight:33,slightli:16,slope:33,slow:24,sltfl:33,sltyp:33,smdry:33,smref:33,smy:33,sndobject:18,snfalb:33,snmr:33,sno:33,snoag:33,snoc:33,snod:33,snohf:33,snol:33,snom:33,snorat:21,snoratcrocu:21,snoratemcsref:21,snoratov2:21,snoratspc:21,snoratspcdeep:21,snoratspcsurfac:21,snot:33,snow1:21,snow2:21,snow3:21,snow:[19,21,33],snowc:33,snowfal:33,snowstorm:20,snowt:[21,33],snsq:21,snw:21,snwa:21,so:[19,21,22],softwar:[0,16],soil:33,soill:33,soilm:33,soilp:33,soilw:33,solar:33,sole:2,solrf:33,solza:33,some:[0,16,21],someth:21,sort:[15,20,21,25,26,29,30],sotyp:33,sound:[6,21,32],sounder:29,soundingrequest:25,sourc:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,15,16],south:28,sp:[31,33],spacecraft:20,span:[23,33],spatial:[24,28],spc:33,spcguid:21,spd:[25,30],spdl:33,spec:25,spechum:25,special:[2,16],specif:[0,4,16,19,22,23,24,26,33],specifi:[2,6,8,16,19,21,24,33],specirr:33,spectal:33,spectra:33,spectral:33,spectrum:33,speed:[23,28,33],spf:33,spfh:33,spftr:33,spr:33,sprate:33,sprdf:33,spread:33,spring:16,spt:33,sqrt:18,squar:33,sr:33,src:[25,33],srcono:33,srfa161:33,srfa162:33,srfa163:33,srfa164:33,srfa165:33,srfa166:33,srfa171:33,srfa172:33,srfa173:33,srfa174:33,srfa175:33,srfa176:33,srml:21,srmlm:21,srmm:21,srmmm:21,srmr:21,srmrm:21,srweq:33,ss:21,ssgso:33,sshg:33,ssi:21,ssp:21,ssrun:33,ssst:33,sst:29,sstor:33,sstt:33,st:21,stack:16,staelev:30,stanam:30,stand:[21,33],standard:[0,24,33],standard_parallel:[23,28],start:[0,16,17,21,22,23,28,34],state:[16,19,23,24,28,29],states_provinc:31,staticcorioli:21,staticspac:21,statictopo:21,station:[17,28,30,32],station_nam:23,stationid:[16,28],stationnam:[17,23,28],stationplot:[17,23,28],stationplotlayout:[23,28],std:33,steep:33,step:30,stid:[23,28],stoke:33,stomat:33,stop:0,storag:[0,16,33],store:[0,16,28],storm:[20,26,33],storprob:33,stp1:21,stp:21,stpa:33,str:[17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],stream:33,streamflow:33,stree:33,stress:33,strftime:[17,23,28],striketyp:20,string:[2,4,7,8,9,10,16,18,33],strm:33,strmmot:21,strptime:[17,23,28,29],strtp:21,struct_tim:3,structur:16,style:16,sub:33,subinterv:33,sublay:33,sublim:33,submit:4,subplot:[17,20,22,24,26,27,28,29,31],subplot_kw:[17,20,22,24,26,27,28,29,31],subplotpar:19,subsequ:[19,22,24],subset:[16,17],subtair:17,succe:2,sucp:21,suggest:16,suit:0,suitabl:2,sun:33,sunsd:33,sunshin:33,supercool:33,superlayercompositereflect:33,supern:29,suppli:22,support:[0,2,3,4,34],suppress:[17,28],sure:28,surfac:[0,16,18,21,29,32,33],surg:33,svrt:33,sw:[23,28],swavr:33,swdir:33,sweat:33,sweep_axi:19,swell:33,swepn:33,swhr:33,swindpro:33,swper:33,swrad:33,swsalb:33,swtidx:21,sx:33,symbol:[23,28],synop:[2,16],syr:23,system:[0,21,33],t0:25,t:[15,16,19,21,22,25,30,33],t_001_bin:21,tabl:[0,28,31,33],taconcp:33,taconip:33,taconrdp:33,tadv:21,tair:17,take:[0,16,19,21,22,30],taken:[0,16,19],talk:21,tar:21,task:16,taskbar:0,tcdc:33,tchp:33,tcioz:33,tciwv:33,tclsw:33,tcol:33,tcolc:33,tcolg:33,tcoli:33,tcolm:33,tcolr:33,tcolw:33,tcond:33,tconu:29,tcsrg20:33,tcsrg30:33,tcsrg40:33,tcsrg50:33,tcsrg60:33,tcsrg70:33,tcsrg80:33,tcsrg90:33,tcwat:33,td2:25,td:[25,30],tdef:21,tdend:21,tdman:30,tdsig:30,tdsigt:30,tdunit:30,technic:16,temp:[17,22,23,25,28,29,33],temperatur:[18,21,22,23,25,28,30,32,33],tempwtr:33,ten:28,tendenc:33,term:[0,33],termain:0,terrain:[24,33],test_dir:19,text:[20,33],textcoord:[19,24],tfd:29,tgrd:21,tgrdm:21,than:[0,18,22],the_geom:[24,28],thei:[0,16,24],thel:33,them:[16,17,23,28],themat:33,therefor:16,thermo:25,thermoclin:33,theta:33,thflx:33,thgrd:21,thi:[0,2,16,17,18,19,21,22,23,24,25,26,28,30,31,34],thick:33,third:0,thom5:21,thom5a:21,thom6:21,those:[16,19,24],though:19,thousand:28,three:[16,19,20,25],threshold:17,threshval:10,thrift:11,thriftclient:[14,16,18],thriftclientrout:14,thriftrequestexcept:11,through:[0,16,18,19,22,30,31],throughout:[19,21,24],thrown:16,thunderstorm:33,thz0:33,ti:24,tide:33,tie:24,tier:6,tight:19,time:[2,3,6,7,12,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,33],timeagnosticdataexcept:16,timearg:3,timedelta:[17,18,23,28],timeit:18,timeob:[23,28],timerang:[2,3,6,16,17,18,23,28],timereq:18,timestamp:3,timestr:13,timeutil:14,tip:[19,24],tipd:33,tir:21,titl:[18,25,30],title_str:30,tke:33,tlh:23,tman:30,tmax:[21,33],tmdpd:21,tmin:[21,33],tmp:[25,28,33],tmpa:33,tmpl:33,tmpswp:33,togeth:0,tool:0,toolbar:0,top:[16,19,20,21,22,24,26,29,33],top_label:[22,24,26,28,29,31],topo:[21,24],topographi:[21,32],tori2:21,tori:21,tornado:[20,33],torprob:33,total:[17,20,24,26,27,29,33],totqi:21,totsn:33,toz:33,tozn:33,tp3hr:21,tp6hr:21,tp:[21,27],tp_inch:27,tpa:23,tpcwindprob:21,tpfi:33,tpman:30,tprate:33,tpsig:30,tpsigt:30,tpunit:30,tpw:29,tqind:21,track:[26,33],train:22,tran:33,transform:[17,19,20,23,24,27,28],transo:33,transpir:33,transport:33,trbb:33,trbtp:33,tree:[15,29],trend:33,tri:[25,30],trndprob:33,tro:33,trop:21,tropic:33,tropopaus:[21,33],tropospher:33,tsc:33,tsd1d:33,tsec:33,tshrmi:21,tsi:33,tslsa:33,tsmt:33,tsnow:33,tsnowp:33,tsoil:33,tsrate:33,tsrwe:33,tstk:21,tstm:33,tstmc:33,tt:[27,29,33],ttdia:33,ttf:23,tthdp:33,ttot:21,ttphy:33,ttrad:33,ttx:33,tua:21,tune:[2,16],tupl:9,turb:33,turbb:33,turbt:33,turbul:33,tutori:[19,21,22,24],tv:21,tw:21,twatp:33,twind:21,twindu:21,twindv:21,twmax:21,twmin:21,two:[0,16,22,24,33,34],twstk:21,txsm:21,txt:24,type:[0,3,8,10,16,19,22,24,30,31,33],typeerror:[2,3,23],typic:[0,16,21,24],u:[18,23,25,28,30,33],ubaro:33,uc:25,ucar:[0,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,34],ucomp:25,uf:[16,17,22,23,28],uflx:33,ufx:21,ug:33,ugrd:33,ugust:33,ugwd:33,uic:33,uil:23,ulsm:33,ulsnorat:21,ulst:33,ultra:33,ulwrf:33,unbias:26,under:33,underli:16,understand:[16,22],understood:[16,24],undertak:16,undocu:16,unidata:[15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,34],unidata_16:25,unifi:[0,16],uniqu:2,unit:[8,9,16,18,21,23,25,26,27,28,30,33],uniwisc:29,unknown:33,unsupportedoperationexcept:16,unsupportedoutputtypeexcept:16,until:2,unv:23,uogrd:33,up:[16,19,24,31,33,34],updat:34,updraft:33,uphl:33,upper:[0,21,32,33],upward:33,uq:33,uri:11,url:[21,22],urma25:21,us:[0,2,6,17,18,19,21,23,28,30,31,33],us_east_delaware_1km:21,us_east_florida_2km:21,us_east_north_2km:21,us_east_south_2km:21,us_east_virginia_1km:21,us_hawaii_1km:21,us_hawaii_2km:21,us_hawaii_6km:21,us_west_500m:21,us_west_cencal_2km:21,us_west_losangeles_1km:21,us_west_lososos_1km:21,us_west_north_2km:21,us_west_sanfran_1km:21,us_west_socal_2km:21,us_west_washington_1km:21,use_level:18,use_parm:18,useless:16,user:[0,5,19,22,26],userwarn:22,ussd:33,ustm:33,uswrf:33,ut:33,utc:29,utcnow:[17,23,28,29],util:21,utrf:33,uu:33,uv:33,uvi:33,uviuc:33,uw:[18,21],uwstk:21,v:[0,18,23,25,28,30,33],va:19,vadv:21,vadvadvect:21,vaftd:33,vah:29,valid:[7,22,26,27,33],validperiod:30,validtim:30,valu:[2,4,7,8,11,16,17,19,23,24,25,27,28,33],valueerror:[18,28],vaml:29,vap:25,vapor:[25,33],vapor_pressur:25,vapour:33,vapp:33,vapr:25,variabl:[19,23,28],varianc:33,variant:22,variou:[0,23,24],vash:33,vbaro:33,vbdsf:33,vc:25,vcomp:25,vddsf:33,vdfhr:33,vdfmr:33,vdfoz:33,vdfua:33,vdfva:33,vector:33,vedh:33,veg:33,veget:33,vegt:33,vel1:33,vel2:33,vel3:33,veloc:[0,26,33],ventil:33,veri:16,version:0,vert:26,vertic:[25,30,32,33],vflx:33,vgp:21,vgrd:33,vgtyp:33,vgwd:33,vi:33,via:[0,3,16],vice:33,view:0,vih:23,vii:33,vil:33,viliq:33,violet:33,virtual:33,viscou:33,visibl:[29,33],vist:21,visual:[0,19,21,24],vmax:22,vmin:22,vmp:29,vogrd:33,volash:33,volcan:33,voldec:33,voltso:33,volum:0,volumetr:33,vortic:33,vpot:33,vptmp:33,vq:33,vrate:33,vs:16,vsmthw:21,vsoilm:33,vsosm:33,vss:21,vssd:33,vstm:33,vt:33,vtec:[31,33],vtmp:33,vtot:21,vtp:29,vucsh:33,vv:33,vvcsh:33,vvel:33,vw:[18,21],vwiltm:33,vwsh:33,vwstk:21,w:[18,19,29,33],wa:[0,16,18,28,33],wai:[2,16,27],wait:2,want:[16,19,21],warm:33,warmrainprob:33,warn:[16,17,21,22,23,24,25,26,28,32],warning_color:31,wat:33,watch:[24,32],water:[29,33],watervapor:33,watr:33,wave:33,wbz:33,wcconv:33,wcd:21,wcda:29,wci:33,wcinc:33,wconu:19,wcuflx:33,wcvflx:33,wd:21,wdir:33,wdirw:33,wdiv:21,wdman:30,wdrt:33,we:[19,21,22,23,24,25,28,31],weak:4,weasd:[21,33],weather:[0,6,23,28,33,34],weatherel:6,weight:33,well:[0,16,17,22,34],wesp:33,west:29,west_6km:21,westatl:21,westconu:21,wet:33,wfo:24,wg:33,what:[16,18,19,21],when:[0,2,18,19,22,24],where:[9,16,18,19,21,25,27,33],whereev:19,whether:[2,19],which:[0,6,16,19,21,22,24,25,33],white:[27,33],who:[0,16],whtcor:33,whtrad:33,wide:20,width:[19,33],wilt:33,wind:[18,20,21,23,25,28,30,33],wind_compon:[23,25,28,30],wind_direct:25,wind_spe:[25,30],winddir:[23,28],windprob:33,windspe:[23,28],wish:[16,19,21],withe:24,within:[0,2,4,16,24],without:[0,2,16,28],wkb:18,wmc:23,wmix:33,wmo:[23,28,33],wmostanum:30,wndchl:21,word:16,work:[0,2,21,33,34],workstat:0,worri:16,would:[2,16],wpre:30,wrap:16,write:0,write_imag:19,writer:[16,32],written:[0,16,18,19],wsman:30,wsp:21,wsp_001_bin:21,wsp_002_bin:21,wsp_003_bin:21,wsp_004_bin:21,wspd:33,wstp:33,wstr:33,wsunit:30,wt:33,wtend:33,wtmpc:33,wv:29,wvconv:33,wvdir:33,wvhgt:33,wvinc:33,wvper:33,wvsp1:33,wvsp2:33,wvsp3:33,wvuflx:33,wvvflx:33,ww3:21,wwsdir:33,www:0,wxtype:33,x:[0,17,18,19,20,22,23,24,27,28,31,33],xformatt:[22,24,26,28,29,31],xlen:10,xloc:19,xlong:33,xml:16,xr:33,xrayrad:33,xshrt:33,xycoord:19,xytext:24,y:[17,18,20,22,23,24,25,27,28,29,33],ye:33,year:33,yformatt:[22,24,26,28,29,31],ylen:10,yml:34,you:[16,19,21,22,28,30,34],your:21,yyyi:21,z:33,zagl:21,zenith:33,zero:33,zonal:33,zone:[16,33],zpc:23},titles:["About Unidata AWIPS","CombinedTimeQuery","DataAccessLayer","DateTimeConverter","IDataRequest (newDataRequest())","IFPClient","ModelSounding","PyData","PyGeometryData","PyGridData","RadarCommon","ThriftClient","ThriftClientRouter","TimeUtil","API Documentation","Available Data Types","Development Guide","Colored Surface Temperature Plot","Forecast Model Vertical Sounding","GOES CIRA Product Writer","GOES Geostationary Lightning Mapper","Grid Levels and Parameters","Grids and Cartopy","METAR Station Plot with MetPy","Map Resources and Topography","Model Sounding Data","NEXRAD Level3 Radar","Precip Accumulation-Region Of Interest","Regional Surface Obs Plot","Satellite Imagery","Upper Air BUFR Soundings","Watch and Warning Polygons","Data Plotting Examples","Grid Parameters","Python AWIPS Data Access Framework"],titleterms:{"1":[19,21,22,24],"10":[21,24],"11":24,"16":29,"2":[19,21,22,24],"3":[19,21,22,24],"4":[19,21,22,24],"5":[19,21,22,24],"6":[19,21,22,24],"7":[21,24],"8":[21,24],"9":[21,24],"function":[19,22,24],"import":[19,21,22,24],"new":[16,21],Of:27,about:0,access:34,accumul:27,addit:[19,22,24],air:30,alertviz:0,also:[19,21,22,24],api:14,avail:[15,21,25,29],awip:[0,34],background:16,base:22,binlightn:15,both:28,boundari:24,bufr:30,calcul:25,cartopi:22,cave:0,cira:19,citi:24,code:34,color:17,combinedtimequeri:1,comparison:18,conda:34,connect:[19,21,24],contact:34,content:[19,21,22,24],contourf:22,contribut:16,creat:[21,24,29],cwa:24,data:[15,16,19,21,22,25,32,34],dataaccesslay:2,datatyp:16,datetimeconvert:3,defin:[19,22],definit:19,design:16,develop:16,dewpoint:25,document:[14,19,22,24],draw:24,edex:[0,19,21,24],edexbridg:0,entiti:29,exampl:[32,34],factori:16,filter:[19,24],forecast:18,framework:[16,34],from:[24,25],geostationari:20,get:[19,21],glm:20,goe:[19,20,29],grid:[15,21,22,33],guid:16,hdf5:0,hodograph:25,how:16,httpd:0,humid:25,idatarequest:4,ifpclient:5,imag:19,imageri:29,implement:16,initi:[19,24],instal:34,interest:27,interfac:16,interst:24,java:16,lake:24,ldm:0,level3:26,level:21,licens:0,lightn:20,limit:22,list:21,locat:[19,21,25],log:18,major:24,make_map:[22,24],map:24,mapper:20,merg:24,mesoscal:29,metar:[23,28],metpi:[23,25],model:[18,25],modelsound:6,nearbi:24,newdatarequest:4,nexrad:26,notebook:[19,21,22],ob:[23,28],object:[19,21,22,24],onli:[16,34],out:19,output:19,p:18,packag:34,paramet:[19,20,21,25,33],pcolormesh:22,pip:34,plot:[17,22,23,28,32],plugin:16,polygon:31,postgresql:0,pre:34,precip:27,product:[19,29],pydata:7,pygeometrydata:8,pygriddata:9,pypi:0,python:34,qpid:0,question:34,radar:[15,26],radarcommon:10,receiv:16,region:[27,28],regist:16,relat:[19,21,22],request:[16,21,22],requisit:34,resourc:24,result:22,retriev:16,river:24,satellit:[15,29],sector:29,see:[19,21,22,24],set:21,set_siz:19,setup:19,sfcob:28,skew:18,skewt:25,softwar:34,sound:[18,25,30],sourc:[20,29,34],specif:25,station:23,support:[16,21],surfac:[17,23,28],synop:28,synopt:28,t:18,tabl:[19,21,22,24],temperatur:17,thriftclient:11,thriftclientrout:12,time:[21,22],timeutil:13,topographi:24,type:[15,21],unidata:0,upper:30,us:[16,22,24,34],user:16,vertic:18,warn:[15,31],watch:31,when:16,work:16,write:[16,19],write_img:19,writer:19}})
\ No newline at end of file