From 68b6d33950dda0aa06d22f97b5f17b4cd827abdf Mon Sep 17 00:00:00 2001 From: Shay Carter Date: Thu, 2 Jun 2022 09:49:54 -0600 Subject: [PATCH] Slight update to METARs notebook - updated the cell defining all necessary station ids to have 'K' in their definition, instead of pre-pending after --- .../METAR_Station_Plot_with_MetPy.ipynb | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb b/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb index 53cc392..081ff6e 100644 --- a/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb +++ b/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb @@ -172,20 +172,16 @@ "outputs": [], "source": [ "# Define a list of station IDs to plot\n", - "selected = ['PDX', 'OKC', 'ICT', 'GLD', 'MEM', 'BOS', 'MIA', 'MOB', 'ABQ', 'PHX', 'TTF',\n", - " 'ORD', 'BIL', 'BIS', 'CPR', 'LAX', 'ATL', 'MSP', 'SLC', 'DFW', 'NYC', 'PHL',\n", - " 'PIT', 'IND', 'OLY', 'SYR', 'LEX', 'CHS', 'TLH', 'HOU', 'GJT', 'LBB', 'LSV',\n", - " 'GRB', 'CLT', 'LNK', 'DSM', 'BOI', 'FSD', 'RAP', 'RIC', 'JAN', 'HSV', 'CRW',\n", - " 'SAT', 'BUY', '0CO', 'ZPC', 'VIH', 'BDG', 'MLF', 'ELY', 'WMC', 'OTH', 'CAR',\n", - " 'LMT', 'RDM', 'PDT', 'SEA', 'UIL', 'EPH', 'PUW', 'COE', 'MLP', 'PIH', 'IDA', \n", - " 'MSO', 'ACV', 'HLN', 'BIL', 'OLF', 'RUT', 'PSM', 'JAX', 'TPA', 'SHV', 'MSY',\n", - " 'ELP', 'RNO', 'FAT', 'SFO', 'NYL', 'BRO', 'MRF', 'DRT', 'FAR', 'BDE', 'DLH',\n", - " 'HOT', 'LBF', 'FLG', 'CLE', 'UNV']\n", + "selected = ['KPDX', 'KOKC', 'KICT', 'KGLD', 'KMEM', 'KBOS', 'KMIA', 'KMOB', 'KABQ', 'KPHX', 'KTTF',\n", + " 'KORD', 'KBIL', 'KBIS', 'KCPR', 'KLAX', 'KATL', 'KMSP', 'KSLC', 'KDFW', 'KNYC', 'KPHL',\n", + " 'KPIT', 'KIND', 'KOLY', 'KSYR', 'KLEX', 'KCHS', 'KTLH', 'KHOU', 'KGJT', 'KLBB', 'KLSV',\n", + " 'KGRB', 'KCLT', 'KLNK', 'KDSM', 'KBOI', 'KFSD', 'KRAP', 'KRIC', 'KJAN', 'KHSV', 'KCRW',\n", + " 'KSAT', 'KBUY', 'K0CO', 'KZPC', 'KVIH', 'KBDG', 'KMLF', 'KELY', 'KWMC', 'KOTH', 'KCAR',\n", + " 'KLMT', 'KRDM', 'KPDT', 'KSEA', 'KUIL', 'KEPH', 'KPUW', 'KCOE', 'KMLP', 'KPIH', 'KIDA', \n", + " 'KMSO', 'KACV', 'KHLN', 'KBIL', 'KOLF', 'KRUT', 'KPSM', 'KJAX', 'KTPA', 'KSHV', 'KMSY',\n", + " 'KELP', 'KRNO', 'KFAT', 'KSFO', 'KNYL', 'KBRO', 'KMRF', 'KDRT', 'KFAR', 'KBDE', 'KDLH',\n", + " 'KHOT', 'KLBF', 'KFLG', 'KCLE', 'KUNV']\n", "\n", - "# selected = ['PDX', 'OKC']\n", - "\n", - "# Station IDs in AWIPS start with 'K'\n", - "selected = ['K{0}'.format(id) for id in selected]\n", "# set the location names to the desired station IDs \n", "request.setLocationNames(*(selected))" ]