diff --git a/.buildinfo b/.buildinfo
index 37c8db8..b4df0e5 100644
--- a/.buildinfo
+++ b/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 0fd74fa3d458d01e46591f4ce56cf876
+config: 9f96ccdda6cc9d8b4cc990f9d8163965
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/VAP/cmac2_technical_document.html b/VAP/cmac2_technical_document.html
index 487c66e..257e6b1 100644
--- a/VAP/cmac2_technical_document.html
+++ b/VAP/cmac2_technical_document.html
@@ -42,7 +42,7 @@
-
+
diff --git a/VAP/cmac_dod_creation.html b/VAP/cmac_dod_creation.html
index c1aa395..42d12a3 100644
--- a/VAP/cmac_dod_creation.html
+++ b/VAP/cmac_dod_creation.html
@@ -42,7 +42,7 @@
-
+
diff --git a/VAP/matched_dataset_march_14_2022.html b/VAP/matched_dataset_march_14_2022.html
index 3f545e7..bd317b6 100644
--- a/VAP/matched_dataset_march_14_2022.html
+++ b/VAP/matched_dataset_march_14_2022.html
@@ -42,7 +42,7 @@
-
+
diff --git a/VAP/nearest-neighbor-interpolation.html b/VAP/nearest-neighbor-interpolation.html
index abb028b..708e86d 100644
--- a/VAP/nearest-neighbor-interpolation.html
+++ b/VAP/nearest-neighbor-interpolation.html
@@ -42,7 +42,7 @@
-
+
diff --git a/_static/basic.css b/_static/basic.css
index e760386..2af6139 100644
--- a/_static/basic.css
+++ b/_static/basic.css
@@ -4,7 +4,7 @@
*
* Sphinx stylesheet -- basic theme.
*
- * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
+ * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
diff --git a/_static/doctools.js b/_static/doctools.js
index d06a71d..4d67807 100644
--- a/_static/doctools.js
+++ b/_static/doctools.js
@@ -4,7 +4,7 @@
*
* Base JavaScript utilities for all Sphinx HTML documentation.
*
- * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
+ * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
diff --git a/_static/language_data.js b/_static/language_data.js
index 250f566..367b8ed 100644
--- a/_static/language_data.js
+++ b/_static/language_data.js
@@ -5,7 +5,7 @@
* This script contains the language-specific data used by searchtools.js,
* namely the list of stopwords, stemmer, scorer and splitter.
*
- * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
+ * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
@@ -13,7 +13,7 @@
var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
-/* Non-minified version is copied as a separate JS file, is available */
+/* Non-minified version is copied as a separate JS file, if available */
/**
* Porter Stemmer
diff --git a/_static/searchtools.js b/_static/searchtools.js
index 7918c3f..92da3f8 100644
--- a/_static/searchtools.js
+++ b/_static/searchtools.js
@@ -4,7 +4,7 @@
*
* Sphinx JavaScript utilities for the full-text search.
*
- * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
+ * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
@@ -99,7 +99,7 @@ const _displayItem = (item, searchTerms, highlightTerms) => {
.then((data) => {
if (data)
listItem.appendChild(
- Search.makeSearchSummary(data, searchTerms)
+ Search.makeSearchSummary(data, searchTerms, anchor)
);
// highlight search terms in the summary
if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js
@@ -116,8 +116,8 @@ const _finishSearch = (resultCount) => {
);
else
Search.status.innerText = _(
- `Search finished, found ${resultCount} page(s) matching the search query.`
- );
+ "Search finished, found ${resultCount} page(s) matching the search query."
+ ).replace('${resultCount}', resultCount);
};
const _displayNextItem = (
results,
@@ -137,6 +137,22 @@ const _displayNextItem = (
// search finished, update title and status message
else _finishSearch(resultCount);
};
+// Helper function used by query() to order search results.
+// Each input is an array of [docname, title, anchor, descr, score, filename].
+// Order the results by score (in opposite order of appearance, since the
+// `_displayNextItem` function uses pop() to retrieve items) and then alphabetically.
+const _orderResultsByScoreThenName = (a, b) => {
+ const leftScore = a[4];
+ const rightScore = b[4];
+ if (leftScore === rightScore) {
+ // same score: sort alphabetically
+ const leftTitle = a[1].toLowerCase();
+ const rightTitle = b[1].toLowerCase();
+ if (leftTitle === rightTitle) return 0;
+ return leftTitle > rightTitle ? -1 : 1; // inverted is intentional
+ }
+ return leftScore > rightScore ? 1 : -1;
+};
/**
* Default splitQuery function. Can be overridden in ``sphinx.search`` with a
@@ -160,13 +176,26 @@ const Search = {
_queued_query: null,
_pulse_status: -1,
- htmlToText: (htmlString) => {
+ htmlToText: (htmlString, anchor) => {
const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
- htmlElement.querySelectorAll(".headerlink").forEach((el) => { el.remove() });
+ for (const removalQuery of [".headerlinks", "script", "style"]) {
+ htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
+ }
+ if (anchor) {
+ const anchorContent = htmlElement.querySelector(`[role="main"] ${anchor}`);
+ if (anchorContent) return anchorContent.textContent;
+
+ console.warn(
+ `Anchored content block not found. Sphinx search tries to obtain it via DOM query '[role=main] ${anchor}'. Check your theme or template.`
+ );
+ }
+
+ // if anchor not specified or not found, fall back to main content
const docContent = htmlElement.querySelector('[role="main"]');
- if (docContent !== undefined) return docContent.textContent;
+ if (docContent) return docContent.textContent;
+
console.warn(
- "Content block not found. Sphinx search tries to obtain it via '[role=main]'. Could you check your theme or template."
+ "Content block not found. Sphinx search tries to obtain it via DOM query '[role=main]'. Check your theme or template."
);
return "";
},
@@ -239,16 +268,7 @@ const Search = {
else Search.deferQuery(query);
},
- /**
- * execute search (requires search index to be loaded)
- */
- query: (query) => {
- const filenames = Search._index.filenames;
- const docNames = Search._index.docnames;
- const titles = Search._index.titles;
- const allTitles = Search._index.alltitles;
- const indexEntries = Search._index.indexentries;
-
+ _parseQuery: (query) => {
// stem the search terms and add them to the correct list
const stemmer = new Stemmer();
const searchTerms = new Set();
@@ -284,16 +304,32 @@ const Search = {
// console.info("required: ", [...searchTerms]);
// console.info("excluded: ", [...excludedTerms]);
- // array of [docname, title, anchor, descr, score, filename]
- let results = [];
+ return [query, searchTerms, excludedTerms, highlightTerms, objectTerms];
+ },
+
+ /**
+ * execute search (requires search index to be loaded)
+ */
+ _performSearch: (query, searchTerms, excludedTerms, highlightTerms, objectTerms) => {
+ const filenames = Search._index.filenames;
+ const docNames = Search._index.docnames;
+ const titles = Search._index.titles;
+ const allTitles = Search._index.alltitles;
+ const indexEntries = Search._index.indexentries;
+
+ // Collect multiple result groups to be sorted separately and then ordered.
+ // Each is an array of [docname, title, anchor, descr, score, filename].
+ const normalResults = [];
+ const nonMainIndexResults = [];
+
_removeChildren(document.getElementById("search-progress"));
- const queryLower = query.toLowerCase();
+ const queryLower = query.toLowerCase().trim();
for (const [title, foundTitles] of Object.entries(allTitles)) {
- if (title.toLowerCase().includes(queryLower) && (queryLower.length >= title.length/2)) {
+ if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
for (const [file, id] of foundTitles) {
let score = Math.round(100 * queryLower.length / title.length)
- results.push([
+ normalResults.push([
docNames[file],
titles[file] !== title ? `${titles[file]} > ${title}` : title,
id !== null ? "#" + id : "",
@@ -308,46 +344,47 @@ const Search = {
// search for explicit entries in index directives
for (const [entry, foundEntries] of Object.entries(indexEntries)) {
if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) {
- for (const [file, id] of foundEntries) {
- let score = Math.round(100 * queryLower.length / entry.length)
- results.push([
+ for (const [file, id, isMain] of foundEntries) {
+ const score = Math.round(100 * queryLower.length / entry.length);
+ const result = [
docNames[file],
titles[file],
id ? "#" + id : "",
null,
score,
filenames[file],
- ]);
+ ];
+ if (isMain) {
+ normalResults.push(result);
+ } else {
+ nonMainIndexResults.push(result);
+ }
}
}
}
// lookup as object
objectTerms.forEach((term) =>
- results.push(...Search.performObjectSearch(term, objectTerms))
+ normalResults.push(...Search.performObjectSearch(term, objectTerms))
);
// lookup as search terms in fulltext
- results.push(...Search.performTermsSearch(searchTerms, excludedTerms));
+ normalResults.push(...Search.performTermsSearch(searchTerms, excludedTerms));
// let the scorer override scores with a custom scoring function
- if (Scorer.score) results.forEach((item) => (item[4] = Scorer.score(item)));
-
- // now sort the results by score (in opposite order of appearance, since the
- // display function below uses pop() to retrieve items) and then
- // alphabetically
- results.sort((a, b) => {
- const leftScore = a[4];
- const rightScore = b[4];
- if (leftScore === rightScore) {
- // same score: sort alphabetically
- const leftTitle = a[1].toLowerCase();
- const rightTitle = b[1].toLowerCase();
- if (leftTitle === rightTitle) return 0;
- return leftTitle > rightTitle ? -1 : 1; // inverted is intentional
- }
- return leftScore > rightScore ? 1 : -1;
- });
+ if (Scorer.score) {
+ normalResults.forEach((item) => (item[4] = Scorer.score(item)));
+ nonMainIndexResults.forEach((item) => (item[4] = Scorer.score(item)));
+ }
+
+ // Sort each group of results by score and then alphabetically by name.
+ normalResults.sort(_orderResultsByScoreThenName);
+ nonMainIndexResults.sort(_orderResultsByScoreThenName);
+
+ // Combine the result groups in (reverse) order.
+ // Non-main index entries are typically arbitrary cross-references,
+ // so display them after other results.
+ let results = [...nonMainIndexResults, ...normalResults];
// remove duplicate search results
// note the reversing of results, so that in the case of duplicates, the highest-scoring entry is kept
@@ -361,7 +398,12 @@ const Search = {
return acc;
}, []);
- results = results.reverse();
+ return results.reverse();
+ },
+
+ query: (query) => {
+ const [searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms] = Search._parseQuery(query);
+ const results = Search._performSearch(searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms);
// for debugging
//Search.lastresults = results.slice(); // a copy
@@ -466,14 +508,18 @@ const Search = {
// add support for partial matches
if (word.length > 2) {
const escapedWord = _escapeRegExp(word);
- Object.keys(terms).forEach((term) => {
- if (term.match(escapedWord) && !terms[word])
- arr.push({ files: terms[term], score: Scorer.partialTerm });
- });
- Object.keys(titleTerms).forEach((term) => {
- if (term.match(escapedWord) && !titleTerms[word])
- arr.push({ files: titleTerms[word], score: Scorer.partialTitle });
- });
+ if (!terms.hasOwnProperty(word)) {
+ Object.keys(terms).forEach((term) => {
+ if (term.match(escapedWord))
+ arr.push({ files: terms[term], score: Scorer.partialTerm });
+ });
+ }
+ if (!titleTerms.hasOwnProperty(word)) {
+ Object.keys(titleTerms).forEach((term) => {
+ if (term.match(escapedWord))
+ arr.push({ files: titleTerms[term], score: Scorer.partialTitle });
+ });
+ }
}
// no match but word was a required one
@@ -496,9 +542,8 @@ const Search = {
// create the mapping
files.forEach((file) => {
- if (fileMap.has(file) && fileMap.get(file).indexOf(word) === -1)
- fileMap.get(file).push(word);
- else fileMap.set(file, [word]);
+ if (!fileMap.has(file)) fileMap.set(file, [word]);
+ else if (fileMap.get(file).indexOf(word) === -1) fileMap.get(file).push(word);
});
});
@@ -549,8 +594,8 @@ const Search = {
* search summary for a given text. keywords is a list
* of stemmed words.
*/
- makeSearchSummary: (htmlText, keywords) => {
- const text = Search.htmlToText(htmlText);
+ makeSearchSummary: (htmlText, keywords, anchor) => {
+ const text = Search.htmlToText(htmlText, anchor);
if (text === "") return null;
const textLower = text.toLowerCase();
diff --git a/domain-exploration/plot-sail-splash-sites.html b/domain-exploration/plot-sail-splash-sites.html
index 1819767..2262344 100644
--- a/domain-exploration/plot-sail-splash-sites.html
+++ b/domain-exploration/plot-sail-splash-sites.html
@@ -42,7 +42,7 @@
-
+
diff --git a/dual-pol/dual-pol-exploration.html b/dual-pol/dual-pol-exploration.html
index 61e7572..1400fba 100644
--- a/dual-pol/dual-pol-exploration.html
+++ b/dual-pol/dual-pol-exploration.html
@@ -42,7 +42,7 @@
-
+
diff --git a/dual-pol/kdp-xradar-exploration.html b/dual-pol/kdp-xradar-exploration.html
index c18cf5c..a6c2529 100644
--- a/dual-pol/kdp-xradar-exploration.html
+++ b/dual-pol/kdp-xradar-exploration.html
@@ -42,7 +42,7 @@
-
+
diff --git a/dual-pol/kdp_computation_selftest.html b/dual-pol/kdp_computation_selftest.html
index 6f99499..c924102 100644
--- a/dual-pol/kdp_computation_selftest.html
+++ b/dual-pol/kdp_computation_selftest.html
@@ -42,7 +42,7 @@
-
+
diff --git a/genindex.html b/genindex.html
index 3e9ea49..1e87bc9 100644
--- a/genindex.html
+++ b/genindex.html
@@ -41,7 +41,7 @@
-
+
diff --git a/gluing_and_inventory/concatinate_file.html b/gluing_and_inventory/concatinate_file.html
index 46f0984..6d2f2e3 100644
--- a/gluing_and_inventory/concatinate_file.html
+++ b/gluing_and_inventory/concatinate_file.html
@@ -42,7 +42,7 @@
-
+
diff --git a/gluing_and_inventory/sail_inventory.html b/gluing_and_inventory/sail_inventory.html
index e2b9c9f..be40586 100644
--- a/gluing_and_inventory/sail_inventory.html
+++ b/gluing_and_inventory/sail_inventory.html
@@ -42,7 +42,7 @@
-
+
diff --git a/join-radar.html b/join-radar.html
index 72e4373..6929afb 100644
--- a/join-radar.html
+++ b/join-radar.html
@@ -42,7 +42,7 @@
-
+
diff --git a/overview.html b/overview.html
index 6eb7d6f..c1e8293 100644
--- a/overview.html
+++ b/overview.html
@@ -42,7 +42,7 @@
-
+
@@ -58,6 +58,8 @@
+
+
diff --git a/paper/initial-data-exploration.html b/paper/initial-data-exploration.html
index 66c18fb..7b8b088 100644
--- a/paper/initial-data-exploration.html
+++ b/paper/initial-data-exploration.html
@@ -42,7 +42,7 @@
-
+
diff --git a/presentations/AMS_AnnualConference_Denver2023.html b/presentations/AMS_AnnualConference_Denver2023.html
index 87bc87f..8f4f62a 100644
--- a/presentations/AMS_AnnualConference_Denver2023.html
+++ b/presentations/AMS_AnnualConference_Denver2023.html
@@ -42,7 +42,7 @@
-
+
diff --git a/qc/sail_beam_blockage.html b/qc/sail_beam_blockage.html
index fe450e6..ab19866 100644
--- a/qc/sail_beam_blockage.html
+++ b/qc/sail_beam_blockage.html
@@ -42,7 +42,7 @@
-
+
diff --git a/radar-precip/compare-with-kazr.html b/radar-precip/compare-with-kazr.html
index e37ec01..d6b9c48 100644
--- a/radar-precip/compare-with-kazr.html
+++ b/radar-precip/compare-with-kazr.html
@@ -42,7 +42,7 @@
-
+
diff --git a/radar-precip/csu-xband-snowfall-march-14-2022.html b/radar-precip/csu-xband-snowfall-march-14-2022.html
index cceb27f..8349afa 100644
--- a/radar-precip/csu-xband-snowfall-march-14-2022.html
+++ b/radar-precip/csu-xband-snowfall-march-14-2022.html
@@ -42,7 +42,7 @@
-
+
diff --git a/radar-precip/plot-ams-figures.html b/radar-precip/plot-ams-figures.html
index ae9d097..90f20e3 100644
--- a/radar-precip/plot-ams-figures.html
+++ b/radar-precip/plot-ams-figures.html
@@ -42,7 +42,7 @@
-
+
diff --git a/radar-precip/plot-method-description-figure.html b/radar-precip/plot-method-description-figure.html
index 421799a..bf1f430 100644
--- a/radar-precip/plot-method-description-figure.html
+++ b/radar-precip/plot-method-description-figure.html
@@ -42,7 +42,7 @@
-
+
diff --git a/search.html b/search.html
index dac4fbf..cbfa22e 100644
--- a/search.html
+++ b/search.html
@@ -40,7 +40,7 @@
-
+
diff --git a/searchindex.js b/searchindex.js
index 5633737..6dd8740 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["VAP/cmac2_technical_document", "VAP/cmac_dod_creation", "VAP/matched_dataset_march_14_2022", "VAP/nearest-neighbor-interpolation", "domain-exploration/plot-sail-splash-sites", "dual-pol/dual-pol-exploration", "dual-pol/kdp-xradar-exploration", "dual-pol/kdp_computation_selftest", "gluing_and_inventory/concatinate_file", "gluing_and_inventory/sail_inventory", "join-radar", "overview", "paper/initial-data-exploration", "presentations/AMS_AnnualConference_Denver2023", "qc/sail_beam_blockage", "radar-precip/compare-with-kazr", "radar-precip/csu-xband-snowfall-march-14-2022", "radar-precip/plot-ams-figures", "radar-precip/plot-method-description-figure"], "filenames": ["VAP/cmac2_technical_document.ipynb", "VAP/cmac_dod_creation.ipynb", "VAP/matched_dataset_march_14_2022.ipynb", "VAP/nearest-neighbor-interpolation.ipynb", "domain-exploration/plot-sail-splash-sites.ipynb", "dual-pol/dual-pol-exploration.ipynb", "dual-pol/kdp-xradar-exploration.ipynb", "dual-pol/kdp_computation_selftest.ipynb", "gluing_and_inventory/concatinate_file.ipynb", "gluing_and_inventory/sail_inventory.ipynb", "join-radar.ipynb", "overview.ipynb", "paper/initial-data-exploration.ipynb", "presentations/AMS_AnnualConference_Denver2023.ipynb", "qc/sail_beam_blockage.ipynb", "radar-precip/compare-with-kazr.ipynb", "radar-precip/csu-xband-snowfall-march-14-2022.ipynb", "radar-precip/plot-ams-figures.ipynb", "radar-precip/plot-method-description-figure.ipynb"], "titles": ["Figures for the SAIL CMAC2.0 Technical Document", "Grab the CMAC DOD via ACT I/O", "Extracted Radar Columns and In-Situ Sensors (RadCLss) Dataset", "Grid QC\u2019d Dataset - Surface QUantitatIve pRecipitation Estimation (SQUIRE)", "Plot the SAIL and SPLASH Locations", "Explore Dual-Pol Data from SAIL", "Investigate KDP and PhiDP through a Convective Core near SAIL", "Comparing DBZ, ZDR and KDP (LP and Maesaka) methods.", "Gluing and Merging", "<no title>", "Join sweeps of the ARM Supported CSU X-Band Radar", "Surface Atmosphere Integrated Field Laboratory (SAIL) Radar Analysis", "Analyze the Pluvio Data - Entire Season + Case Selection", "Figures for Presentation in AMS Annual Meeting in Denver 2023", "Beam Blockage for SAIL", "Check Reflectivity Calibration", "Snowfall Retrievals CSU X-Band Radar March 14, 2022", "Plot PPI data for BAMS Paper", "Plot a Description of the Liquid Precip Estimation Method"], "terms": {"import": [0, 1, 7, 8, 9, 13, 14], "o": [0, 2, 8, 9, 14, 16, 17, 18], "glob": [0, 2, 3, 5, 7, 12, 13, 15, 16, 17, 18], "time": [0, 1, 2, 3, 8, 9, 12, 13, 15, 17, 18], "numpi": [0, 1, 2, 3, 5, 6, 8, 9, 13, 14, 16, 17, 18], "np": [0, 1, 2, 3, 5, 6, 7, 8, 9, 13, 14, 16, 17, 18], "xarrai": [0, 1, 2, 3, 6, 8, 13, 15, 16, 17, 18], "xr": [0, 1, 2, 6, 8, 12, 13, 15, 16, 17, 18], "panda": [0, 2, 4, 12, 13, 16, 17, 18], "pd": [0, 2, 12, 13, 16, 17, 18], "from": [0, 1, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18], "matplotlib": [0, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18], "pyplot": [0, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18], "plt": [0, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18], "color": [0, 2, 4, 5, 6, 9, 13, 17, 18], "ticker": [0, 13, 17, 18], "pyart": [0, 1, 2, 3, 5, 6, 7, 8, 9, 14, 15, 16, 17, 18], "def": [0, 2, 3, 5, 8, 9, 13, 14, 15, 16, 17, 18], "_generate_titl": [0, 13], "radar": [0, 1, 3, 4, 5, 6, 7, 8, 9, 13, 14, 15, 17], "d": [0, 2, 7, 8, 9, 12, 14, 15, 16, 17, 18], "field": [0, 2, 4, 6, 14, 15, 17, 18], "sweep": [0, 1, 7, 8, 13, 14, 16], "gener": [0, 5, 8, 13], "titl": [0, 3, 4, 12, 13, 15, 16, 17, 18], "each": [0, 4, 8, 13, 14], "plot": [0, 2, 5, 7, 9, 14], "time_str": [0, 13], "data": [0, 1, 7, 8, 9, 10, 13, 14], "fixed_angl": [0, 1, 13, 14], "line_on": [0, 13], "1f": [0, 13], "deg": [0, 2, 13, 14], "": [0, 1, 3, 4, 6, 7, 8, 9, 13, 14, 17, 18], "field_nam": [0, 1, 2, 13], "str": [0, 1, 2, 8, 13, 17, 18], "replac": [0, 2, 13, 15, 16, 18], "_": [0, 13, 15, 16, 18], "upper": [0, 5, 13, 15, 16, 17, 18], "1": [0, 1, 3, 4, 5, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "return": [0, 2, 3, 5, 8, 9, 10, 13, 14, 15, 16, 17, 18], "n": [0, 1, 2, 13, 16, 17, 18], "directori": [0, 2, 16], "where": [0, 1, 2, 3, 8, 12, 13, 15, 16, 18], "ar": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18], "locat": [0, 5, 11, 16], "data_dir": [0, 8, 9], "user": [0, 1, 2, 3, 6, 7, 8, 9, 12, 13, 14, 16], "jrobrien": [0, 1, 2, 13], "arm": [0, 1, 2, 3, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18], "csu": [0, 1, 8, 13, 15, 18], "xprecipradar": [0, 1, 2, 13], "desir": [0, 2, 6], "follow": [0, 2, 3, 13, 16], "case_fil": 0, "gucxprecipradarcmacm1": [0, 2, 3, 13], "c1": [0, 1, 2, 3, 13], "20220314": [0, 2, 3, 12, 13, 15, 18], "024759": [0, 2, 13], "nc": [0, 1, 2, 3, 6, 8, 9, 12, 13, 14, 15, 16, 18], "easier": 0, "check": [0, 1, 2, 3, 4, 8, 13], "variabl": [0, 1, 3, 8, 13, 14, 18], "name": [0, 1, 2, 4, 5, 13, 14, 17, 18], "open_dataset": [0, 1, 8, 13, 15], "lt": [0, 1, 2, 13, 18], "dataset": [0, 1, 4, 13, 15, 18], "gt": [0, 1, 2, 13, 18], "dimens": [0, 1, 2, 3, 13, 16, 18], "9016": 0, "rang": [0, 1, 2, 9, 13, 15, 16], "668": [0, 1], "coordin": [0, 1, 3, 13, 14, 17, 18], "datetime64": [0, 1, 2, 13, 18], "03": [0, 1, 2, 3, 12, 13, 14, 15, 18], "float32": [0, 1, 2, 13, 14], "306": 0, "4": [0, 1, 3, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "029": 0, "azimuth": [0, 1, 2, 13, 14], "1251": 0, "2962": 0, "elev": [0, 1, 2, 8, 13, 14, 17, 18], "055": 0, "99": [0, 2], "without": [0, 1], "12": [0, 1, 2, 6, 7, 12, 13, 17, 18], "46": [0, 1, 2, 13, 18], "dbz": [0, 1, 2, 5, 6, 8, 9, 13, 14, 15, 16, 17, 18], "float64": [0, 1, 2, 13, 14, 18], "vel": [0, 1, 2, 5, 7, 8, 13, 14, 18], "width": [0, 1, 2, 4, 8, 12, 13, 14, 18], "zdr": [0, 1, 2, 8, 13, 14, 18], "phidp": [0, 1, 2, 5, 7, 8, 13, 14, 18], "rhohv": [0, 1, 2, 7, 8, 13, 14, 18], "longitud": [0, 1, 2, 3, 5, 13, 14, 16, 18], "106": [0, 2, 9, 13, 16, 17, 18], "altitud": [0, 1, 2, 13, 14], "149e": [0, 2, 13], "time_coverage_start": [0, 1], "s192": 0, "b": [0, 7, 14, 15, 16, 17, 18], "x27": [0, 1, 2, 13, 18], "14t02": [0, 2, 13], "47": [0, 2, 13, 18], "59z": 0, "time_coverage_end": [0, 1], "52": [0, 2, 12, 13, 14, 18], "08z": 0, "time_refer": [0, 1], "1970": [0, 1, 8, 16], "01": [0, 1, 2, 8, 12, 13, 14], "01t00": [0, 1], "00": [0, 1, 2, 5, 7, 8, 13, 14, 17, 18], "00z": 0, "volume_numb": [0, 1], "int32": 0, "attribut": [0, 1, 2, 5, 13, 18], "24": [0, 2, 13], "convent": [0, 1, 2, 13], "cf": [0, 1, 2, 13], "instrument_paramet": [0, 1, 2, 13], "site_id": [0, 1, 2, 13], "guc": 0, "facility_id": [0, 1, 2, 13], "comment": [0, 1, 2, 13, 14], "thi": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], "i": [0, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 16, 17, 18], "highli": [0, 1, 2, 13], "experiment": [0, 1, 2, 13], "initi": [0, 2, 13], "ther": 0, "collect": [0, 1, 2, 3, 6, 13], "climat": [0, 1, 2, 3, 6, 7, 8, 9, 13, 14], "research": [0, 1, 2, 3, 6, 7, 8, 9, 13, 14], "process_vers": [0, 1, 2, 13], "cmac": [0, 2], "2": [0, 1, 4, 5, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "datastream": [0, 1, 8, 13, 18], "nsaxsaprcmacppic1": 0, "location_descript": [0, 1, 2, 13], "north": [0, 2, 13], "slope": [0, 2, 13], "alaska": 0, "nsa": 0, "barrow": 0, "doi": [0, 1, 2, 3, 6, 7, 8, 9, 12, 13, 14], "5439": [0, 1, 2, 12, 13], "1781398": 0, "command_lin": [0, 1, 2, 13], "cmac_sail": 0, "py": [0, 1, 5, 6, 7, 8, 9, 13, 14, 16, 18], "202203": [0, 3, 8, 13], "ncp": [0, 1, 2, 7, 8, 13, 14, 18], "dbzhv": [0, 1, 2, 7, 8, 13, 14, 18], "cb": [0, 1, 2, 13, 17, 18], "histori": [0, 1, 2, 13], "creat": [0, 2, 13, 14, 15, 16, 17, 18], "rjackson": 0, "cirrus127": 0, "cc": [0, 13], "ornl": 0, "gov": [0, 1, 2, 11, 13], "datasetdimens": [0, 1, 2, 13, 18], "9016rang": 0, "668sweep": [0, 1], "8coordin": 0, "59": [0, 1, 13, 14], "long_nam": [0, 1, 2, 13, 14, 15, 16], "time_in_seconds_since_volume_startstandard_nam": 0, "timearrai": [0, 1], "000000000": [0, 1, 2, 13, 18], "08": [0, 2, 5, 7, 9, 13, 18], "dtype": [0, 1, 2, 13, 14, 18], "float32306": 0, "366": 0, "023e": 0, "04": [0, 1, 2, 12, 13, 14], "029e": 0, "04long_nam": [0, 1, 2], "range_to_measurement_volumeunit": 0, "metersstandard_nam": 0, "projection_range_coordinatespacing_is_const": [0, 1], "truemeters_to_center_of_first_g": [0, 1], "112": [0, 1, 14], "71186meters_between_g": 0, "94095axi": [0, 1], "radial_range_coordinatearrai": [0, 1], "8748": 0, "81573": 0, "426": [0, 2], "7567": 0, "40167": 0, "605": 0, "40227": 0, "547": 0, "40287": 0, "49": [0, 2, 12, 13], "azimuth_angle_from_true_northunit": 0, "degreesstandard_nam": [0, 2], "ray_azimuth_angleaxi": 0, "radial_azimuth_coordinatearrai": 0, "125068": 0, "130562": 0, "332534": 0, "290698": 0, "296191": 0, "elevation_angle_from_horizontal_planeunit": 0, "ray_elevation_angleaxi": 0, "radial_elevation_coordinatearrai": [0, 1], "054688": 0, "043701": 0, "985352": 0, "unit": [0, 1, 2, 8, 13, 14, 15, 16, 17, 18], "dbzstandard_nam": [0, 1, 2, 13], "equivalent_reflectivity_factor": [0, 1, 13], "6022688": 0, "valu": [0, 2, 8, 12, 13, 14, 16, 18], "m": [0, 1, 2, 3, 8, 9, 12, 13, 14, 15, 16, 17, 18], "sstandard_nam": [0, 1, 2, 13], "radial_velocity_of_scatterers_away_from_instru": [0, 1], "doppler_spectrum_width": [0, 1], "dbstandard_nam": [0, 1, 2, 13], "log_differential_reflectivity_hv": [0, 1], "differential_phase_hv": [0, 1], "1standard_nam": [0, 1, 2, 13], "cross_correlation_ratio_hv": [0, 1], "normalized_coherent_pow": [0, 1], "equivalent_reflectivity_factor_hv": [0, 1], "cbb_flag": [0, 1, 2, 13, 14], "cumul": [0, 1, 2, 13, 16, 18], "beam": [0, 1, 13], "block": [0, 1, 2, 13, 14], "fraction": [0, 1, 2, 13, 14, 17, 18], "flagunit": [0, 1, 2, 13], "1comment": [0, 1, 2, 13], "flag": [0, 1, 2, 14, 15], "due": [0, 1, 13, 14, 17, 18], "terrain": [0, 1, 14, 17], "sounding_temperatur": [0, 1, 2, 13], "interpol": [0, 1, 2, 13], "profileunit": [0, 1, 2, 13], "degcstandard_nam": [0, 1, 2, 13], "interpolated_profil": [0, 1], "height": [0, 1, 2, 4, 9, 12, 13, 14, 15, 18], "beamunit": [0, 1, 2], "mstandard_nam": [0, 1, 2, 13], "signal_to_noise_ratio": [0, 1, 2, 13], "velocity_textur": [0, 1, 2, 5, 7, 13], "mean": [0, 1, 2, 13, 15, 17, 18], "dopper": [0, 1, 2, 13], "velocityunit": [0, 1, 2, 13], "gate_id": [0, 1, 2, 13], "int64": [0, 1, 18], "classif": [0, 1, 2, 13], "domin": [0, 1, 2, 13], "scattererunit": [0, 1, 2, 13], "note": [0, 1, 8, 13, 14], "multi_trip": [0, 1, 2, 13], "rain": [0, 1, 2, 7, 13, 16], "snow": [0, 1, 2, 13, 15, 16], "no_scatt": [0, 1, 2, 13], "melt": [0, 1, 2, 13], "terrain_blockagevalid_max": [0, 1, 2, 13], "6valid_min": [0, 1, 2, 13], "simulated_veloc": [0, 1, 2, 13], "simul": [0, 1, 2, 13], "doppler": [0, 1, 2, 13], "corrected_veloc": [0, 1, 2, 13], "corrected_radial_velocity_of_scatterers_away_from_instrumentvalid_min": [0, 1], "7valid_max": 0, "unfolded_differential_phas": [0, 1, 2, 13], "unfold": [0, 1, 2, 6, 13], "propag": [0, 1, 2, 13], "phase": [0, 1, 2, 13], "shiftunit": [0, 1, 2, 13], "corrected_differential_phas": [0, 1, 2, 13], "differential_phase_hvvalid_min": [0, 1], "0valid_max": [0, 1, 2, 13], "400": [0, 1, 2, 9, 12, 13], "filtered_corrected_differential_phas": [0, 1, 2, 13], "filter": [0, 1, 2, 3, 5, 7, 13], "phaseunit": [0, 1, 2, 13], "corrected_specific_diff_phas": [0, 1, 2, 13], "specif": [0, 1, 2, 8, 13, 14], "kdp": [0, 1, 2, 13], "degre": [0, 1, 2, 13, 17, 18], "kmstandard_nam": [0, 1, 2, 13], "specific_differential_phase_hv": [0, 1], "filtered_corrected_specific_diff_phas": [0, 1, 2, 13], "corrected_differential_reflect": [0, 1, 2, 13], "reflectivityunit": [0, 1, 2, 13], "corrected_log_differential_reflectivity_hv": [0, 1], "corrected_reflect": [0, 1, 2, 3, 13], "corrected_equivalent_reflectivity_factor": [0, 1], "height_over_iso0": [0, 1, 2, 13], "over": [0, 1, 2, 3, 8], "freez": [0, 1, 2, 13], "levelunit": [0, 1, 2, 13], "specific_attenu": [0, 1, 2, 13], "attenuationunit": [0, 1, 2, 13], "db": [0, 1, 2, 13, 15, 16], "specific_attenuationvalid_min": [0, 1], "path_integrated_attenu": [0, 1, 2, 13], "path": [0, 1, 2, 3, 8, 9, 13, 15], "integr": [0, 1, 2, 4], "specific_differential_attenu": [0, 1, 2, 13], "km": [0, 1, 13, 17, 18], "path_integrated_differential_attenu": [0, 1, 2, 13], "rain_rate_a": [0, 1, 2, 13], "rainfall_rateunit": 0, "mm": [0, 1, 2, 12, 13, 15, 16, 18], "hrstandard_nam": [0, 1, 2, 13], "rainfall_ratevalid_min": [0, 1], "0comment": [0, 1, 2], "calcul": [0, 1, 2, 13, 16], "r": [0, 1, 2, 5, 13], "43": [0, 1, 2, 13], "79": [0, 1, 2, 13], "norm": [0, 1, 2, 13, 18], "coher": [0, 1, 2, 13], "power": [0, 1, 13, 14], "snow_rate_ws2012": [0, 1, 2, 3, 13], "z": [0, 1, 3, 9, 13, 18], "us": [0, 1, 4, 5, 8, 9, 14, 15, 16, 17, 18], "wolf": [0, 1, 2, 3, 5, 7, 8, 13, 15, 16, 17, 18], "snider": [0, 1, 2, 13, 16], "2012": [0, 1, 2, 13, 16], "hstandard_nam": [0, 1, 2, 13], "snowfall_ratevalid_min": [0, 1, 13], "500swe_ratio": [0, 1, 13], "13": [0, 1, 2, 13, 15, 18], "698630136986303a": 0, "110b": [0, 1, 13], "snow_rate_ws88diw": [0, 1, 2, 3, 13], "wsr": [0, 1, 2, 13, 16], "88d": [0, 1, 2, 13, 16], "high": [0, 1, 7, 13, 16], "plainsunit": [0, 1, 2, 13], "40b": [0, 1, 13], "snow_rate_m2009_1": [0, 1, 2, 3, 13], "matrosov": [0, 1, 2, 13, 15, 16, 18], "et": [0, 1, 2, 13, 15, 16, 18], "al": [0, 1, 2, 13, 15, 16, 18], "2009": [0, 1, 2, 13, 15, 16, 18], "braham": [0, 1, 2, 13, 15, 16, 18], "1990": [0, 1, 2, 13, 15, 16, 18], "1unit": [0, 1, 2, 13], "67b": [0, 1, 13], "28": [0, 1, 2, 13, 15, 16, 18], "snow_rate_m2009_2": [0, 1, 2, 3, 13], "2unit": [0, 1, 2, 13], "114b": [0, 1, 13], "39": [0, 1, 2, 8, 13, 15, 16, 17, 18], "sweep_numb": [0, 1], "arrai": [0, 1, 2, 8, 13, 14, 18], "010742": 0, "988525": 0, "988037": 0, "987549": 0, "987061": 0, "986572": 0, "11": [0, 2, 12, 13], "986084": 0, "sweep_start_ray_index": [0, 1, 13, 14], "1152": 0, "2306": 0, "3463": 0, "4621": 0, "5780": 0, "6936": 0, "8097": 0, "sweep_end_ray_index": [0, 1, 13, 14], "1151": 0, "2305": 0, "3462": 0, "4620": 0, "5779": 0, "6935": 0, "8096": 0, "9015": 0, "sweep_mod": [0, 1, 8], "azimuth_surveil": 0, "x00": 0, "x00azimuth_surveil": 0, "nyquist_veloc": [0, 1], "nyquist": [0, 1], "nyquist_velocityarrai": [0, 1], "15": [0, 2, 7, 9, 13, 18], "latitud": [0, 1, 2, 3, 5, 13, 14, 16, 18], "latitudeunit": [0, 1, 2, 13], "degree_nstandard_nam": [0, 1, 13], "latitudevalid_min": [0, 1, 13], "90": [0, 1, 2, 13, 17, 18], "0arrai": [0, 1, 2, 13], "38": [0, 2, 9, 13, 16, 17, 18], "89838": 0, "longitudeunit": [0, 1, 2, 13], "degree_estandard_nam": [0, 1, 13], "longitudevalid_min": [0, 1, 13], "180": [0, 1, 6, 12, 13, 17, 18], "943214": 0, "altitudeunit": [0, 1], "altitudearrai": [0, 1], "3149": [0, 2, 13, 14], "199951": 0, "utc": [0, 1, 13, 15, 16, 17, 18], "first": [0, 1, 2, 3, 6, 13, 18], "rai": [0, 1, 14], "fileunit": [0, 1], "unitlessarrai": 0, "last": [0, 1, 2, 13], "referenceunit": [0, 1], "volum": [0, 1, 2, 10, 13, 16, 18], "numberunit": [0, 1, 2, 13], "3site_id": 0, "gucfacility_id": 0, "c1comment": [0, 2, 13], "There": [0, 1, 4, 13], "mani": [0, 1, 2, 13], "known": [0, 1, 2, 13], "unknown": [0, 1, 2, 13], "issu": [0, 1, 2, 8, 13], "pleas": [0, 1, 2, 3, 5, 6, 7, 8, 9, 12, 13, 14, 18], "do": [0, 1, 4, 12, 13, 14], "befor": [0, 1, 2, 3, 13, 15, 16, 18], "contact": [0, 1, 2, 13], "translat": [0, 1, 2, 13], "respons": [0, 1, 2, 13], "scolli": [0, 1, 2, 13], "anl": [0, 1, 2, 13], "govattribut": [0, 1, 2, 13], "facil": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 16], "system": [0, 1, 2, 13, 15], "oper": [0, 1, 2, 13], "engin": [0, 1, 2, 12, 13], "team": [0, 1, 2, 13], "precipit": [0, 1, 4, 12, 15, 16], "product": [0, 1, 2, 13], "code": [0, 1, 2, 10, 13], "courtesi": [0, 1, 2, 13], "scott": [0, 1, 2, 13], "giangrand": [0, 1, 2, 13], "bnl": [0, 1, 2, 13], "0vap_nam": 0, "cmacknown_issu": [0, 1], "fals": [0, 1, 2, 5, 8, 9, 13, 14, 17, 18], "jump": [0, 1, 2, 13], "insect": [0, 1, 2, 13], "region": [0, 1, 2, 13, 14], "still": [0, 1, 2, 13], "old": [0, 1, 2, 13, 18], "some": [0, 1, 2, 3, 13], "below": [0, 1, 2, 13, 15], "layer": [0, 1, 2, 13], "develop": [0, 1, 2, 13], "robert": [0, 1, 2, 13], "jackson": [0, 1, 2, 13], "zachari": [0, 1, 2, 13], "sherman": [0, 1, 2, 13], "colli": [0, 1, 3, 6, 7, 8, 9, 13, 14], "mentor": [0, 1, 2, 13], "bradlei": 0, "isom": 0, "pnnl": 0, "iosif": 0, "lindenmai": 0, "refer": [0, 1, 2, 13, 14, 15, 16], "see": [0, 1, 2, 13], "xsapr": 0, "instrument": [0, 1, 4, 13, 16], "handbooksourc": 0, "atmospher": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 14], "radiat": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14], "measur": [0, 1, 2, 3, 6, 7, 8, 9, 12, 13, 14], "program": [0, 13, 14], "x": [0, 1, 3, 4, 5, 6, 9, 15, 18], "band": [0, 1, 4, 5, 15], "scan": [0, 1, 2, 16, 18], "institut": [0, 1, 13], "u": [0, 1, 2, 3, 6, 7, 8, 9, 13, 14], "depart": [0, 1, 2, 3, 6, 7, 8, 9, 13, 14], "energi": [0, 1, 2, 3, 6, 7, 8, 9, 13, 14], "facilityplatform_id": 0, "xsaprcmacppidod_vers": 0, "xsaprcmacppi": 0, "0input_datastream": 0, "nsaxsaprcfrppic1": 0, "a1data_level": 0, "c1datastream": 0, "c1location_descript": 0, "alaskadoi": 0, "1781398command_lin": 0, "202203field_nam": 0, "snow_rate_m2009_2histori": [0, 1], "03t11": 0, "40": [0, 2, 6, 13, 15, 16, 17, 18], "214741": 0, "art": [0, 1, 6, 7, 8, 9, 13, 14], "defin": [0, 14], "object": [0, 1, 2, 5, 8, 13, 14, 16], "io": [0, 1, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18], "read": [0, 2, 3, 7, 8, 9, 14], "to_datetim": [0, 2, 12, 13, 16, 17, 18], "timestamp": [0, 16], "647226079": 0, "fig": [0, 2, 3, 5, 6, 7, 9, 13, 14, 16, 17, 18], "ax": [0, 2, 3, 5, 6, 7, 9, 13, 14, 15, 16, 17, 18], "subplot": [0, 2, 5, 6, 7, 13, 16, 17, 18], "displai": [0, 3, 5, 7, 13, 14, 17, 18], "graph": [0, 3, 5, 7, 9, 13, 14, 17, 18], "radardisplai": [0, 3, 5, 7, 13], "vmin": [0, 3, 5, 6, 7, 9, 13, 16, 17, 18], "cmap": [0, 2, 3, 5, 6, 7, 9, 13, 14, 16, 17, 18], "pyart_budrd12": 0, "save": [0, 13], "savefig": [0, 5, 13, 14, 15, 17, 18], "xprecipradar_cmac2_velocity_textur": 0, "png": [0, 5, 13, 14, 15, 17, 18], "figsiz": [0, 3, 5, 7, 9, 13, 14, 16, 17, 18], "subplots_adjust": [0, 2, 18], "wspace": [0, 2], "hspace": [0, 2, 13], "ncmap": 0, "listedcolormap": [0, 17, 18], "red": [0, 6, 14], "green": [0, 13, 14], "aqua": 0, "grai": [0, 9, 13, 17, 18], "yellow": 0, "orang": 0, "plum": 0, "label": [0, 4, 5, 6, 13, 15, 16, 17, 18], "mult": 0, "trip": 0, "No": [0, 2, 13, 14], "scatter": [0, 7, 13, 15, 18], "clutter": [0, 1, 13], "ntick": 0, "25": [0, 1, 2, 5, 7, 9, 13], "75": [0, 2, 13, 16], "ticklab": [0, 13], "tick": [0, 5], "equvial": 0, "factor": [0, 1, 2, 13, 17, 18], "pyart_homeyerrainbow": [0, 2, 3, 5, 6, 13, 14, 16, 18], "correl": [0, 1, 2, 13], "coeffici": [0, 16], "vmax": [0, 3, 5, 6, 7, 9, 13, 16, 17, 18], "xprecipradar_cmac2_multipanel": 0, "fig2": [0, 13], "ax2": [0, 5, 6, 7, 9, 13, 18], "rdbu_r": 0, "dealias": 0, "xprecipradar_cmac2_veloc": 0, "fig3": [0, 13], "ax3": [0, 5, 7, 9, 13, 18], "xprecipradar_cmac2_reflect": 0, "fig4": 0, "ax4": [0, 5, 13, 18], "pyart_langrainbow12": 0, "xprecipradar_cmac2_diff_reflect": 0, "axc": 0, "px1": 0, "50": [0, 2, 3, 7, 9, 13, 17, 18], "plain": [0, 16], "xprecipradar_cmac2_snowfal": 0, "netcdf4": [1, 12], "you": [1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14], "python": [1, 3, 6, 7, 8, 9, 13, 14], "toolkit": [1, 3, 6, 7, 8, 9, 13, 14], "an": [1, 2, 3, 7, 8, 9, 11, 13, 14, 15, 16, 18], "open": [1, 2, 3, 6, 7, 8, 9, 13, 14], "sourc": [1, 2, 3, 6, 7, 8, 9, 13, 14, 16], "librari": [1, 3, 6, 7, 8, 9, 13, 14], "work": [1, 3, 6, 7, 8, 9, 13, 14, 15, 17, 18], "weather": [1, 2, 3, 6, 7, 8, 9, 13, 14, 18], "partli": [1, 3, 6, 7, 8, 9, 13, 14], "support": [1, 3, 4, 5, 6, 7, 8, 9, 13, 14, 17, 18], "part": [1, 3, 6, 7, 8, 9, 13, 14, 16], "offic": [1, 3, 6, 7, 8, 9, 13, 14], "scienc": [1, 3, 6, 7, 8, 9, 13, 14], "If": [1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14], "softwar": [1, 3, 6, 7, 8, 9, 13, 14], "prepar": [1, 3, 6, 7, 8, 9, 12, 13, 14], "public": [1, 3, 6, 7, 8, 9, 12, 13, 14], "cite": [1, 3, 6, 7, 8, 9, 12, 13, 14], "jj": [1, 3, 6, 7, 8, 9, 13, 14], "helmu": [1, 3, 6, 7, 8, 9, 13, 14], "sm": [1, 3, 6, 7, 8, 9, 13, 14], "jor": [1, 3, 6, 7, 8, 9, 13, 14], "2016": [1, 3, 6, 7, 8, 9, 13, 14], "10": [1, 2, 3, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "5334": [1, 3, 6, 7, 8, 9, 13, 14], "119": [1, 3, 6, 7, 8, 9, 13, 14], "queri": 1, "api": 1, "dim": [1, 2, 3, 13, 16, 17, 18], "8": [1, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "string_length": 1, "192": 1, "create_obj_from_arm_dod": [1, 2], "xprecipradarcmacppi": [1, 2, 13], "version": [1, 5, 13, 18], "0": [1, 3, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "fill_valu": [1, 14], "9999": [1, 2], "666": 1, "667": 1, "48": [1, 2, 8, 13, 15, 16, 18], "3": [1, 5, 6, 7, 8, 12, 13, 14, 15, 16, 17, 18], "radial": [1, 2, 13], "dod_vers": [1, 2, 13], "input_datastream": [1, 2, 13], "http": [1, 2, 8, 9, 11, 12, 13, 14, 15], "www": [1, 2, 13, 15], "capabl": [1, 2, 13], "xprec": [1, 2, 13], "connect": [1, 2, 8, 13], "organ": [1, 2, 13], "colorado": [1, 2, 4, 11, 13], "state": [1, 2, 4, 13], "univers": [1, 2, 4, 13], "xprecipradars2": 1, "1rang": 1, "8string_length": 1, "192coordin": 1, "int640long_nam": 1, "second": [1, 8], "startunit": [1, 2, 13], "sinc": [1, 2, 8, 13, 18], "00zstandard_nam": 1, "timecalendar": 1, "standardarrai": 1, "int640": 1, "5": [1, 3, 6, 8, 9, 12, 13, 14, 15, 16, 17, 18], "663": 1, "664": 1, "665": 1, "667long_nam": 1, "volumeunit": [1, 2, 13], "meterstandard_nam": 1, "6891meters_between_g": 1, "9999long_nam": 1, "angl": [1, 2, 13], "true": [1, 2, 3, 4, 5, 7, 8, 9, 13, 14, 16, 17, 18], "northunit": [1, 2, 13], "degree_fillvalu": [1, 2], "0axi": 1, "radial_azimuth_coordinatestandard_nam": 1, "sensor_to_target_azimuth_anglearrai": 1, "horizont": [1, 13, 17, 18], "planeunit": 1, "0standard_nam": [1, 2, 13], "sensor_to_target_elevation_angleaxi": 1, "equaivalent_radar_reflectiivity_factorunit": 1, "dbz_fillvalu": [1, 2], "32768": [1, 8, 13, 14], "equivalent_reflectivity_factorcoordin": [1, 2, 13], "rangearrai": [1, 2], "veloc": [1, 2, 13], "posit": [1, 2, 13], "motion": [1, 2, 13], "awai": [1, 2, 13], "instrumentunit": [1, 2, 13], "s_fillvalu": [1, 2], "radial_velocity_of_scatterers_away_from_instrumentscoordin": [1, 2, 13], "spectral": [1, 2, 13], "widthunit": [1, 2, 13], "doppler_spectrum_widthcoordin": [1, 2, 13], "differenti": [1, 2, 13], "db_fillvalu": [1, 2], "log_differential_reflectivity_hvcoordin": [1, 2, 13], "differential_phase_hvcoordin": [1, 2, 13], "cross": [1, 2, 13], "polar": [1, 2, 13, 14], "ratiounit": [1, 2, 13], "1_fillvalu": [1, 2], "cross_correlation_ratio_hvcoordin": [1, 2, 13], "normal": [1, 2, 13], "also": [1, 2, 13, 15, 16], "sqiunit": [1, 2, 13], "normalized_coherent_powercoordin": [1, 2, 13], "equival": [1, 2, 13, 16], "reflect": [1, 2, 13], "hvunit": [1, 2, 13], "equivalent_reflectivity_factor_hvcoordin": [1, 2, 13], "1coordin": [1, 13], "rangecom": 1, "interpolated_profilemissing_valu": 1, "9999arrai": 1, "heightmissing_valu": 1, "signal": [1, 2, 13], "nois": [1, 2, 13], "signal_to_noise_ratiocoordin": [1, 2, 13], "radial_velocity_of_scatterers_away_from_instrumentcoordin": [1, 2, 13], "rangemissing_valu": 1, "1note": [1, 2, 13], "6": [1, 7, 9, 12, 13, 14, 15, 16, 17, 18], "0flag_valu": [1, 2, 13], "6flag_mean": [1, 2, 13], "terrain_blockagearrai": 1, "correct": [1, 7, 8, 13, 14, 16], "corrected_radial_velocity_of_scatterers_away_from_instrumentcoordin": 1, "rangevalid_min": 1, "5valid_max": 1, "5arrai": 1, "km_fillvalu": [1, 2], "specific_differential_phase_hvcoordin": [1, 2, 13], "1e": [1, 14], "20standard_nam": 1, "corrected_log_differential_reflectivity_hvcoordin": [1, 2, 13], "corrected_equivalent_reflectivity_factorcoordin": [1, 2, 13], "heightarrai": 1, "0coordin": [1, 2, 13], "20coordin": 1, "rainfal": [1, 2, 13, 16], "rate": [1, 2, 3, 7, 13, 15], "hr_fillvalu": [1, 2], "rangeleast_significant_digit": 1, "8arrai": [1, 2, 13], "snowfal": [1, 2], "h_fillvalu": [1, 2], "snowfall_ratecoordin": 1, "699a": [1, 13], "2arrai": 1, "28arrai": 1, "39arrai": 1, "index": [1, 3, 8, 13, 16], "number": [1, 2, 3, 4, 8, 9, 13, 14, 18], "basedunit": 1, "target": [1, 2, 13], "fix": [1, 8], "angleunit": 1, "sweepunit": 1, "end": [1, 2, 13], "mode": [1, 17], "1arrai": 1, "nyquist_velocity_fillvalu": 1, "degree_n_fillvalu": [1, 2], "degree_e_fillvalu": [1, 2], "m_fillvalu": [1, 2], "timepandasindexpandasindex": [1, 13], "int64index": 1, "rangepandasindexpandasindex": 1, "7": [1, 12, 13, 14, 17, 18], "9": [1, 2, 5, 12, 13, 14, 16, 18], "658": 1, "659": 1, "660": 1, "661": 1, "662": 1, "length": [1, 2, 13, 17, 18], "instrument_parametersprocess_vers": [1, 2, 13], "platform_id": [1, 2, 13], "data_level": [1, 2, 13], "facilityrefer": [1, 13], "handbookdoi": [1, 2, 13], "1883164comment": 1, "process": [1, 13, 14, 16], "lp": [1, 2, 13], "vap_nam": [1, 2, 13], "maxwel": [1, 2, 13], "grover": [1, 2, 13], "joseph": [1, 2, 13], "brien": [1, 2], "xprecipradarmentor": [1, 2, 13], "list": [1, 13, 15, 18], "xprecipradarsourc": [1, 2, 13], "1844501": [1, 13], "00field_nam": 1, "doubl": 1, "_fillvalu": [1, 2, 8], "singl": [1, 2, 4, 7, 13, 14, 16], "int16": 1, "1e20": 1, "str_": 1, "joe": 1, "nmask": 1, "dataarrai": [1, 8, 13, 16], "profil": 1, "degc": 1, "standard_nam": [1, 2, 13, 14, 15, 16], "missing_valu": 1, "9999xarrai": 1, "999e": [1, 2], "03arrai": 1, "blank": 1, "hold": [1, 2], "all": [1, 13, 14], "convert": [1, 2, 3, 8, 13, 14, 15, 16], "new_dod": 1, "add": [1, 7, 8, 12, 13, 14, 16, 17, 18], "attr": [1, 2, 15, 16, 18], "empti": 1, "loop": [1, 8, 13], "updat": [1, 2, 8, 13, 16], "fillvalu": [1, 8], "type": [1, 2, 8, 13, 14, 18], "var": [1, 2, 3, 8], "print": [1, 2, 3, 8, 9, 13, 14], "multidimension": 1, "can": [1, 2, 3, 4, 8, 14, 15, 16, 18], "t": [1, 2, 13, 14], "have": [1, 3, 8, 15, 16], "len": [1, 2, 8, 9, 13, 14, 16], "charact": 1, "won": 1, "within": [1, 2, 6, 13, 16, 17, 18], "condit": [1, 8], "value_when_condition_is_not_met": [1, 8], "so": [1, 2, 8], "everi": [1, 8], "mvc": [1, 8], "opposit": [1, 8], "mask": [1, 5, 7, 8, 14], "append": [1, 2, 8, 13, 14, 16], "make": [1, 2, 13, 16, 17, 18], "sure": [1, 2, 13, 16, 17, 18], "chang": 1, "astyp": [1, 8, 12], "delet": [1, 8], "set": [1, 2, 5, 8, 9, 13, 16, 18], "del": [1, 2, 8, 13, 14], "els": [1, 2, 5, 8, 13, 14], "most": [1, 2, 13], "one": [1, 2, 13, 16], "dimension": [1, 3], "elif": [1, 5, 14], "don": 1, "want": [1, 4, 14], "repeat": 1, "For": 1, "three": 1, "277e": 1, "u21": 1, "03long_nam": [1, 2], "degreeaxi": 1, "degreestandard_nam": [1, 13], "float641": [1, 2], "20": [1, 2, 3, 5, 6, 7, 9, 13, 14, 15, 16, 17, 18], "20long_nam": 1, "e": [1, 2, 7, 12], "dbcoordin": [1, 13], "kmcoordin": [1, 13], "degreearrai": 1, "meta": [1, 13, 18], "to_netcdf": [1, 2, 3, 8, 9, 16], "sail_cmac_dod": 1, "mask_and_scal": [1, 8], "01_fillvalu": 1, "0long_nam": [1, 2], "startstandard_nam": 1, "float320": [1, 2, 13], "0_fillvalu": 1, "sensor_to_target_azimuth_angl": 1, "radial_elevation_coordin": 1, "terrain_blockag": 1, "1536": 1, "datetimeindex": [1, 13], "freq": [1, 13], "none": [1, 2, 4, 5, 8, 9, 13, 14, 17, 18], "float64index": [1, 13], "dod_v2": 1, "cmac_dod_v2": 1, "class": [1, 2, 5, 13, 18], "_netcdf4": 1, "root": 1, "group": 1, "model": [1, 18], "format": [1, 2, 12], "hdf5": 1, "handbook": 1, "1883164": [1, 2, 13], "known_issu": [1, 13], "size": [1, 2, 13, 17, 18], "order": [2, 5, 7, 13, 14], "evalu": [2, 13, 17], "campaign": [2, 6, 11, 16, 17], "retriev": [2, 5, 7], "contain": [2, 8, 13], "abov": [2, 3, 13, 14, 16, 18], "our": [2, 13, 14, 15, 17, 18], "interest": [2, 4, 13], "gaug": [2, 12], "wbpluvio2": [2, 12], "1338194": [2, 12], "1786358": 2, "ld": [2, 13], "1779709": 2, "balloon": 2, "born": 2, "sound": 2, "sondewnpn": 2, "1595321": 2, "915rwpprecipmomenthigh": 2, "datetim": [2, 8, 9, 15, 16, 17, 18], "date": [2, 13, 15, 16, 17, 18], "dateformatt": [2, 13, 15, 16, 17, 18], "yyyi": 2, "dd": [2, 13], "radar_dir": 2, "output": [2, 3, 15, 18], "download": [2, 8, 12, 14], "insitu_dir": 2, "inprogress": 2, "usernam": [2, 18], "token": [2, 18], "live": [2, 18], "servic": 2, "via": 2, "With": 2, "your": [2, 18], "find": [2, 3, 10], "here": [2, 3, 11, 14, 15, 18], "adc": 2, "armliv": 2, "arm_usernam": [2, 18], "getenv": 2, "arm_token": [2, 18], "subset_point": [2, 16], "lat": [2, 3, 4, 9, 13, 14, 16, 17, 18], "lon": [2, 3, 4, 9, 13, 14, 16, 17, 18], "subset": [2, 3, 8, 13], "column_list": [2, 16], "zip": [2, 13, 16], "sea": [2, 13], "level": [2, 3, 8, 13, 17, 18], "throughout": 2, "tropospher": 2, "sond": 2, "futur": [2, 8, 9, 18], "da": [2, 13, 16], "util": [2, 8, 12, 14, 15, 16, 18], "columnsect": [2, 16], "get_field_loc": [2, 13, 16], "interp": [2, 13, 16], "arang": [2, 5, 8, 13, 16, 17, 18], "round": [2, 5, 13], "10100": 2, "100": [2, 13, 15, 16, 18], "base": [2, 3, 8, 13, 14, 17, 18], "off": 2, "start": [2, 3, 4, 6, 13, 16], "dt": [2, 8, 16], "concaten": [2, 13, 14], "across": [2, 3], "concat": [2, 16], "coorespond": 2, "individu": [2, 8], "descript": 2, "minimum": [2, 3, 9], "gate": [2, 13, 14], "splash": [2, 13, 16], "identif": 2, "east": [2, 4, 17, 18], "match_datasets_act": 2, "discard": 2, "resampl": [2, 13, 15, 18], "sum": [2, 13], "synchron": 2, "packag": [2, 5, 7, 14, 16, 18], "paramet": [2, 3, 13, 14, 17, 18], "should": [2, 18], "includ": [2, 4, 13, 17, 18], "string": [2, 13, 14], "skip": 2, "filenam": [2, 8, 9, 17], "input": [2, 17, 18], "mathemat": 2, "default": [2, 4, 5, 7, 13, 14, 17, 18], "period": [2, 13], "boolean": 2, "determin": [2, 5, 8, 13], "sync": 2, "grd_d": 2, "armfil": 2, "read_netcdf": [2, 15, 18], "cleanup_qc": 2, "drop_vari": 2, "lazi": 2, "comput": [2, 3, 5, 13, 16, 18], "base_tim": 2, "forc": 2, "datapoint": 2, "min": [2, 13, 14, 18], "data_var": 2, "method": [2, 3, 4, 5, 6, 8, 9, 13], "linear": [2, 13, 15, 16], "ha": 2, "conflict": 2, "rename_var": 2, "rwp_signal_to_noise_ratio": 2, "keep": [2, 16], "help": [2, 3, 13], "distingish": 2, "between": [2, 13, 15], "split": [2, 8, 13], "5min": [2, 13], "close": [2, 3, 13, 16, 18], "right": [2, 5, 13, 15, 16, 17, 18], "keep_attr": [2, 13], "assign_coord": [2, 13, 16], "coord": [2, 13, 14], "dict": [2, 13], "expand_dim": [2, 13, 16], "identfi": 2, "global": [2, 13], "lost": 2, "descriptor": 2, "possibl": 2, "two": [2, 4, 13], "kettle_pond": [2, 13, 16], "9731488": [2, 13, 16], "9415427": [2, 13, 16], "brush_creek": [2, 13, 16], "920259": [2, 13, 16], "8596282": [2, 13, 16], "avery_point": [2, 13, 16], "9965928": [2, 13, 16], "9705885": [2, 13, 16], "pumphouse_sit": [2, 13, 16], "9502476": [2, 13, 16], "9226741": [2, 13, 16], "roaring_judi": [2, 13, 16], "8530215": [2, 16], "7170576": [2, 16], "987": [2, 13, 16], "9267": [2, 13], "snodgrass": [2, 13], "978929": [2, 13], "926572": [2, 13], "togeth": [2, 4, 10, 13, 16, 18], "grab": [2, 13], "file_list": [2, 13, 16, 17, 18], "sort": [2, 3, 5, 7, 8, 12, 13, 15, 16, 17, 18], "000239": [2, 13, 16], "001319": [2, 13, 16], "003439": [2, 13, 16], "004519": [2, 13, 16], "005039": [2, 13, 16], "011159": [2, 13], "013839": [2, 13], "015439": [2, 13], "021039": [2, 13], "021559": [2, 13], "ds_list": [2, 16], "023159": 2, "023719": 2, "024239": 2, "030920": [2, 3, 18], "032520": [2, 3, 18], "033040": [2, 3, 18], "033600": [2, 3, 18], "034120": [2, 3, 18], "034640": [2, 3, 18], "035720": [2, 3], "040240": 2, "041320": 2, "041840": 2, "042400": 2, "042920": 2, "050120": 2, "053320": 2, "053840": 2, "054401": 2, "055440": 2, "061601": 2, "062121": 2, "064801": 2, "065321": 2, "070401": 2, "071441": 2, "072521": 2, "073041": 2, "073601": 2, "075721": 2, "081321": 2, "081841": 2, "082401": 2, "082921": 2, "084001": 2, "084521": 2, "090642": 2, "093842": 2, "094922": 2, "095442": 2, "101602": 2, "102122": 2, "103722": 2, "112002": 2, "112522": 2, "113602": 2, "115723": 2, "120243": 2, "120803": 2, "123443": 2, "124003": 2, "125043": 2, "125603": 2, "130123": 2, "131203": 2, "131723": 2, "132243": 2, "134923": 2, "140003": 2, "142123": 2, "153044": 2, "153604": 2, "154644": 2, "155724": 2, "161844": 2, "163444": 2, "164524": 2, "165044": 2, "170124": 2, "171204": 2, "172244": 2, "173324": 2, "173844": 2, "174924": 2, "175445": 2, "181044": 2, "182125": 2, "182645": 2, "184245": 2, "185325": 2, "185845": 2, "190405": 2, "190925": 2, "192005": 2, "192525": 2, "193045": 2, "195205": 2, "195725": 2, "200805": 2, "201325": 2, "203445": 2, "204005": 2, "205606": 2, "210646": 2, "211726": 2, "220006": 2, "220526": 2, "222126": 2, "223206": 2, "223726": 2, "224806": 2, "225846": 2, "230926": 2, "232006": 2, "232526": 2, "233607": 2, "235727": 2, "cpu": [2, 8, 16], "12min": [2, 16], "sy": [2, 5, 7, 8, 16], "54": [2, 13], "total": [2, 8, 13], "13min": 2, "wall": [2, 8, 16], "14min": 2, "26": [2, 13], "sel": [2, 6, 8, 9, 12, 13, 15, 16, 18], "slice": [2, 6, 8, 12, 13, 18], "3300": 2, "4500": [2, 13], "quadmesh": [2, 3, 6, 18], "0x15ae18f10": 2, "sens": 2, "118": 2, "70": [2, 13], "u14": 2, "34": [2, 13], "na": 2, "93": 2, "107": [2, 13, 17, 18], "118site": 2, "7height": 2, "70coordin": 2, "float643": [2, 13], "249e": [2, 13], "005e": [2, 13], "heightdescript": 2, "meter": [2, 3, 13, 14, 17], "center": [2, 5, 13, 17, 18], "locationarrai": 2, "3249": [2, 13], "3349": [2, 13], "3449": [2, 13], "3549": [2, 13], "3649": [2, 13], "3749": [2, 13], "3849": [2, 13], "3949": [2, 13], "4049": [2, 13], "4149": [2, 13], "4249": [2, 13], "4349": [2, 13], "4449": [2, 13], "4549": [2, 13], "4649": [2, 13], "4749": [2, 13], "4849": [2, 13], "4949": [2, 13], "5049": [2, 13], "5149": [2, 13], "5249": [2, 13], "5349": [2, 13], "5449": [2, 13], "5549": [2, 13], "5649": [2, 13], "5749": [2, 13], "5849": [2, 13], "5949": [2, 13], "6049": [2, 13], "6149": [2, 13], "6249": [2, 13], "6349": [2, 13], "6449": [2, 13], "6549": [2, 13], "6649": [2, 13], "6749": [2, 13], "6849": [2, 13], "6949": [2, 13], "7049": [2, 13], "7149": [2, 13], "7249": [2, 13], "7349": [2, 13], "7449": [2, 13], "7549": [2, 13], "7649": [2, 13], "7749": [2, 13], "7849": [2, 13], "7949": [2, 13], "8049": [2, 13], "8149": [2, 13], "8249": [2, 13], "8349": [2, 13], "8449": [2, 13], "8549": [2, 13], "8649": [2, 13], "8749": [2, 13], "8849": [2, 13], "8949": [2, 13], "9049": [2, 13], "9149": [2, 13], "9249": [2, 13], "9349": [2, 13], "9449": [2, 13], "9549": [2, 13], "9649": [2, 13], "9749": [2, 13], "9849": [2, 13], "9949": [2, 13], "10049": [2, 13], "14t00": [2, 13, 15, 18], "06": [2, 13, 18], "concatenationdescript": 2, "gatearrai": 2, "17": [2, 8, 9, 12, 13, 14], "14t01": [2, 13], "16": [2, 8, 9, 13, 17, 18], "42": [2, 12, 13, 16], "58": [2, 13], "36": [2, 13, 15, 16, 18], "41": [2, 13, 16], "14t03": [2, 13], "29": [2, 12, 13], "09": [2, 13, 16], "45": [2, 13, 15, 16, 18], "14t04": [2, 13], "22": [2, 12, 13], "33": [2, 8, 13], "14t05": [2, 13], "05": [2, 9, 12, 13], "37": [2, 13], "14t06": [2, 13], "57": [2, 13], "30": [2, 5, 7, 12, 13, 15, 16, 17, 18], "14t07": [2, 13], "18": [2, 3, 5, 12, 13, 16, 18], "14t08": [2, 13], "44": [2, 13, 15, 16, 18], "14t09": [2, 13, 15], "51": [2, 13, 14], "53": [2, 12, 13, 14], "14t10": [2, 13], "31": [2, 12, 13], "14t11": [2, 13], "14t12": [2, 13], "14t13": [2, 13], "32": [2, 13], "21": [2, 13, 16], "14t14": [2, 13], "14t15": [2, 13], "14t16": [2, 13], "14t17": [2, 13, 18], "14t18": [2, 13], "14t19": [2, 13], "02": [2, 12, 13, 14, 18], "56": [2, 12, 13, 15, 16, 18], "14t20": [2, 13], "14t21": [2, 13], "14t22": [2, 13], "35": [2, 5, 13], "14t23": [2, 13], "55": [2, 12, 13], "15t00": 2, "identifersarrai": 2, "float64nan": [2, 13], "82": 2, "316": 2, "nan": [2, 3, 12, 13], "nanunit": 2, "81999969": 2, "31648953": 2, "10779893": 2, "05952826": 2, "97489854": 2, "73341511": 2, "30825315": 2, "06749179": 2, "93107905": 2, "84339817": 2, "41896141": 2, "24047607": 2, "19": [2, 5, 7, 13], "11138189": 2, "23780284": 2, "16765685": 2, "92000008": 2, "84000015": 2, "80514278": 2, "90999985": 2, "14783067": 2, "18759306": 2, "14999962": 2, "10398186": 2, "40704339": 2, "28064785": 2, "53648465": 2, "08120593": 2, "87388508": 2, "03048569": 2, "02765943": 2, "73831865": 2, "50603496": 2, "05127251": 2, "16807962": 2, "74842282": 2, "62554882": 2, "47551063": 2, "83998237": 2, "957761": 2, "4364079": 2, "97140561": 2, "75076925": 2, "59143882": 2, "12294777": 2, "95099764": 2, "09767179": 2, "32891421": 2, "73620301": 2, "23004115": 2, "93758999": 2, "01108051": 2, "08425652": 2, "89201876": 2, "99e": 2, "99000000e": 2, "22842531e": 2, "08106716e": 2, "50910034e": 2, "06551213e": 2, "58765939e": 2, "29957409e": 2, "22843782e": 2, "01529010e": 2, "68276547e": 2, "60999932e": 2, "02195144e": 2, "29708401e": 2, "78712845e": 2, "07787582e": 2, "58179381e": 2, "88353219e": 2, "38710085e": 2, "38478018e": 2, "84406397e": 2, "18489355e": 2, "723": 2, "945": 2, "72313261e": 2, "94521916e": 2, "64077369e": 2, "66025513e": 2, "52790001e": 2, "35619493e": 2, "30185108e": 2, "34631925e": 2, "39442602e": 2, "33644228e": 2, "54023688e": 2, "22815469e": 2, "56346229e": 2, "40023401e": 2, "31930082e": 2, "17253632e": 2, "08631870e": 2, "26874471e": 2, "41713546e": 2, "01083139e": 2, "54012609e": 2, "98969500e": 2, "56772003e": 2, "83642566e": 2, "81229978e": 2, "71970760e": 2, "72776620e": 2, "14497870e": 2, "91175989e": 2, "64093429e": 2, "128": [2, 9, 13], "66": [2, 8, 14], "94": 2, "32599258": 2, "94012996": 2, "104": 2, "15218989": 2, "98": [2, 16], "95949075": 2, "327": 2, "50664688": 2, "274": 2, "91695297": 2, "52865903": 2, "0267886": 2, "233": [2, 5], "82960237": 2, "101": 2, "40374094": 2, "102": 2, "38336946": 2, "124": 2, "70658576": 2, "82576292": 2, "78166027": 2, "14142405": 2, "210": 2, "7710162": 2, "353": 2, "77016448": 2, "342": 2, "00584653": 2, "61": 2, "95795905": 2, "99077346": 2, "69283065": 2, "140": 2, "7436992": 2, "246": 2, "09510138": 2, "139": 2, "59054037": 2, "315": 2, "84865017": 2, "212": 2, "66277956": 2, "292": 2, "30180737": 2, "231": [2, 5], "35807351": 2, "85": [2, 13], "45987434": 2, "203": 2, "35780229": 2, "8448": 2, "8739": 2, "44771128e": 2, "73862805e": 2, "94877481e": 2, "89414924e": 2, "99380072e": 2, "13956193e": 2, "95876644e": 2, "94376618e": 2, "14005694e": 2, "13857231e": 2, "40221613e": 2, "88435599e": 2, "96081772e": 2, "98057476e": 2, "34169890e": 2, "32643878e": 2, "95857605e": 2, "99340293e": 2, "16037804e": 2, "30085697e": 2, "84233782e": 2, "66666287e": 2, "24832237e": 2, "07525477e": 2, "52559980e": 2, "35356055e": 2, "86753201e": 2, "05972443e": 2, "96713342e": 2, "25898647e": 2, "97": 2, "9612": 2, "96999997": 2, "96118338": 2, "94081721": 2, "96057445": 2, "11420001": 2, "14346343": 2, "95999998": 2, "9612553": 2, "96683114": 2, "9508172": 2, "10789999": 2, "09999999": 2, "11123405": 2, "13251064": 2, "93826027": 2, "64774175": 2, "35023398": 2, "11949997": 2, "08897562": 2, "1049787": 2, "96674664": 2, "768": 2, "76836845e": 2, "58196087e": 2, "49226638e": 2, "95344338e": 2, "82728000e": 2, "78696588e": 2, "66961466e": 2, "31130019e": 2, "88642299e": 2, "81306186e": 2, "12104147e": 2, "74641430e": 2, "39973789e": 2, "91350430e": 2, "18722988e": 2, "06688283e": 2, "37485994e": 2, "94660406e": 2, "72187284e": 2, "59477157e": 2, "74759839e": 2, "57818002e": 2, "34555053e": 2, "36941074e": 2, "73216009e": 2, "97473659e": 2, "85639758e": 2, "36445975e": 2, "58022412e": 2, "66800558e": 2, "8458": 2, "1long_nam": 2, "flagcoordin": 2, "84578254": 2, "025": 2, "007": [2, 13], "interpolated_profilelong_nam": 2, "profilearrai": 2, "02489149": 2, "00664871": 2, "00644346": 2, "00498955": 2, "0312439": 2, "99862265": 2, "0108487": 2, "00585198": 2, "03686548": 2, "00033004": 2, "2624767": 2, "20459192": 2, "24478044": 2, "21020775": 2, "25761667": 2, "22537902": 2, "26517108": 2, "20358836": 2, "24960372": 2, "22534105": 2, "21064839": 2, "504": 2, "62": 2, "50351016": 2, "02739037": 2, "96952766": 2, "82489854": 2, "58341539": 2, "23": [2, 12, 13], "23763593": 2, "9887468": 2, "90892088": 2, "9617442": 2, "40280164": 2, "15047592": 2, "02195622": 2, "08570317": 2, "00990096": 2, "2372564": 2, "02969251": 2, "95090042": 2, "348": 2, "363": 2, "radial_velocity_of_scatterers_away_from_instrumentlong_nam": 2, "velocitycoordin": 2, "34760833": 2, "36289549": 2, "301518": 2, "61680673": 2, "22938283": 2, "97800901": 2, "6256861": 2, "64153505": 2, "18866136": 2, "44449815": 2, "24774887": 2, "32391028": 2, "33656745": 2, "28420224": 2, "1155082": 2, "25700009": 2, "55066581": 2, "61873211": 2, "12399423": 2, "97992035": 2, "33351278": 2, "17077991": 2, "48014308": 2, "76671444": 2, "3655372": 2, "48115689": 2, "62090783": 2, "32464634": 2, "52300875": 2, "60383135": 2, "537": 2, "824": 2, "scatterervalid_max": 2, "53734763": 2, "82366835": 2, "11489414": 2, "87659471": 2, "25106487": 2, "68311657": 2, "519": 2, "875": [2, 13], "51907816": 2, "87505424": 2, "96451906": 2, "28795881": 2, "93434608": 2, "14877457": 2, "90425293": 2, "32425956": 2, "68023146": 2, "94900991": 2, "52440266": 2, "87806457": 2, "96362425": 2, "28847755": 2, "93466513": 2, "1488073": 2, "39031814": 2, "59989327": 2, "93915884": 2, "81107424": 2, "74909365": 2, "65848637": 2, "83824951": 2, "92616895": 2, "79236812": 2, "85058195": 2, "39203247": 2, "59354396": 2, "94086844": 2, "81614524": 2, "corrected_radial_velocity_of_scatterers_away_from_instrumentlong_nam": 2, "velocityvalid_max": 2, "7valid_min": [2, 13], "7coordin": [2, 13], "differential_phase_hvlong_nam": 2, "shiftcoordin": 2, "shiftvalid_max": 2, "0valid_min": [2, 13], "phasevalid_max": 2, "specific_differential_phase_hvlong_nam": 2, "corrected_log_differential_reflectivity_hvlong_nam": 2, "reflectivitycoordin": 2, "56346229": 2, "40023401": 2, "corrected_equivalent_reflectivity_factorlong_nam": 2, "heightlong_nam": 2, "levelarrai": 2, "specific_attenuationlong_nam": 2, "attenuationvalid_max": 2, "dblong_nam": 2, "attenuationcoordin": 2, "kmlong_nam": 2, "rainfall_ratelong_nam": 2, "rainfall_ratevalid_max": [2, 13], "snowfall_ratelong_nam": 2, "valid_max": [2, 15, 16], "500valid_min": [2, 13], "07163114": 2, "79107443": 2, "plainsvalid_max": 2, "06866118": 2, "55328488": 2, "1valid_max": 2, "74404754": 2, "96398841": 2, "2valid_max": 2, "18400756": 2, "76009843": 2, "float6438": 2, "86": 2, "72": 2, "93long_nam": 2, "siteunit": 2, "northarrai": 2, "eastarrai": 2, "discard_var": 2, "time_offset": 2, "equivalent_radar_reflectivity_ott": 2, "laserband_amplitud": 2, "qc_equivalent_radar_reflectivity_ott": 2, "qc_laserband_amplitud": 2, "sensor_temperatur": 2, "heating_curr": 2, "qc_heating_curr": 2, "sensor_voltag": 2, "qc_sensor_voltag": 2, "moment1": 2, "moment2": 2, "moment3": 2, "moment4": 2, "moment5": 2, "moment6": 2, "alt": [2, 13, 14], "load_cell_temp": 2, "heater_statu": 2, "elec_unit_temp": 2, "supply_volt": 2, "orifice_temp": 2, "volt_min": 2, "ptemp": 2, "time_bound": 2, "logger_volt": 2, "qc_logger_volt": 2, "logger_temp": 2, "qc_logger_temp": 2, "height_bound": 2, "modul": 2, "web": 2, "Not": 2, "found": [2, 13], "result": 2, "download_data": [2, 15, 18], "gucwbpluvio2m1": [2, 12, 13, 18], "a1": [2, 12, 13, 18], "000000": [2, 12, 13, 18], "npluvio": 2, "pluv_sit": 2, "gucwbpluvio2": 2, "call": [2, 4, 13, 16], "accumul": 2, "test": [2, 6, 8], "correctli": 2, "bucket_rt": [2, 13], "line": [2, 3, 6, 13, 17, 18], "line2d": [2, 6], "0x159ddc5b0": 2, "gucmetm1": [2, 13], "b1": [2, 8, 9, 13, 14, 16, 18], "cdf": [2, 18], "nmet": 2, "met_sit": 2, "gucmet": 2, "pwd_cumul_snow": [2, 13], "0x159de7d30": 2, "gucldm1": [2, 13, 18], "nld": 2, "ld_site": 2, "gucld": 2, "guclds2": 2, "ld_2": 2, "ld2_site": 2, "saniti": 2, "verifi": 2, "axarr": 2, "liquid_water_distribution_mean": [2, 13], "0x1481e26b0": 2, "guc915rwpprecipmomenthighm1": [2, 13], "a0": [2, 13], "url": 2, "statu": [2, 8, 9], "error": [2, 3, 7, 13, 18], "nrwp": 2, "rwp_site": 2, "guc915rwpprecipmomenthigh": 2, "doppler_veloc": [2, 13], "gucsondewnpnm1": [2, 13], "113200": 2, "115700": 2, "233000": 2, "search": 2, "nsond": 2, "sonde_list": 2, "nfile": 2, "wa": [2, 13, 14, 15, 17, 18], "g": 2, "ob": 2, "shape": [2, 13, 14, 18], "ds_sond": 2, "sonde_sit": 2, "gucsondewnpn": 2, "0x153e5b130": 2, "definit": [2, 13], "Will": [2, 13], "which": [2, 3, 4, 5, 7, 8, 13, 17, 18], "necessari": 2, "mdim": 2, "particle_s": [2, 13, 18], "raw_fall_veloc": [2, 13], "out_d": [2, 3], "xprecipradarradclss": [2, 13], "c2": [2, 13], "transform": [2, 13, 16, 17, 18], "consist": [2, 13], "transpos": 2, "suppli": 2, "dod": 2, "mai": 2, "062": [2, 13], "121": [2, 13], "v_wind": [2, 13], "wstat": [2, 13], "asc": [2, 13], "j": [2, 12, 13, 14], "118height": 2, "70site": [2, 13], "8particle_s": [2, 13], "32raw_fall_veloc": [2, 13], "32coordin": [2, 13], "04arrai": [2, 13], "187": [2, 13], "312": [2, 13], "437": [2, 13], "562": [2, 13], "687": [2, 13], "812": [2, 13], "937": [2, 13], "375": [2, 13], "625": [2, 13], "125": [2, 13], "65": [2, 13, 16], "95": [2, 13, 14, 16], "nanlong_nam": [2, 13], "equaival": [2, 13], "factorunit": [2, 13], "999999": 2, "rangesourc": [2, 13], "c1arrai": 2, "72636585": 2, "96758446": 2, "9337979": 2, "84486603": 2, "24007766": 2, "81337317": 2, "6936225": 2, "03943419": 2, "57713021": 2, "46009315": 2, "06915687": 2, "47852138": 2, "41579192": 2, "87201837": 2, "03685529e": 2, "37358587e": 2, "05535844e": 2, "25400256e": 2, "82427587e": 2, "86631615e": 2, "07116997e": 2, "31617026e": 2, "99945852e": 2, "31062895e": 2, "46900026e": 2, "72607752e": 2, "27885439e": 2, "0469331": 2, "92305943": 2, "80084311": 2, "87880195": 2, "6697407": 2, "36773662": 2, "271": 2, "93664734": 2, "89913246e": 2, "86740491e": 2, "98946131e": 2, "91062963e": 2, "98000026e": 2, "72922131e": 2, "46880552e": 2, "93425158": 2, "95151344": 2, "94425157": 2, "9036623": 2, "77961": 2, "43160390e": 2, "06975213e": 2, "80643284e": 2, "78260997e": 2, "42095936e": 2, "02568279e": 2, "42380933e": 2, "degc_fillvalu": 2, "interpolated_profilesourc": [2, 13], "99916278": 2, "22329579": 2, "02361069": 2, "94303243": 2, "78379846": 2, "14211258": 2, "161333": 2, "62534888": 2, "39637728": 2, "61258041": 2, "31099301": 2, "28332395": 2, "28895862": 2, "90383218": 2, "52435537": 2, "73562328": 2, "terrain_blockagesourc": [2, 13], "61621754": 2, "42515785": 2, "17556306": 2, "90299974": 2, "67899042": 2, "1751076": 2, "32474269": 2, "95073851": 2, "91648484": 2, "corrected_radial_velocity_of_scatterers_away_from_instrumentvalid_max": [2, 13], "differential_phase_hvvalid_max": [2, 13], "07116997": 2, "72607752": 2, "heightsourc": [2, 13], "specific_attenuationvalid_max": [2, 13], "snowfall_ratevalid_max": [2, 13], "3066064": 2, "40165278": 2, "11663596": 2, "54075172": 2, "75818776": 2, "44635936": 2, "50638925": 2, "37988589": 2, "intensity_rt": [2, 13], "float640": 2, "heavi": [2, 13], "alarmunit": [2, 13], "3000": [2, 13], "0threshold": [2, 13], "hrabsolute_accuraci": [2, 13], "plu": [2, 13], "minu": [2, 13], "6comment_1": [2, 13], "onli": [2, 3, 7, 13, 17, 18], "exce": [2, 13], "threshold": [2, 5, 13], "record": [2, 13], "ani": [2, 13, 14], "report": [2, 13], "hr": [2, 13, 15, 16, 18], "a1arrai": 2, "accum_rtnrt": [2, 13], "amount": [2, 13], "sampl": [2, 6, 13, 18], "interv": [2, 13], "exceed": [2, 13], "05mm": [2, 13], "fine": [2, 13], "hourunit": [2, 13], "mm_fillvalu": 2, "500": [2, 3, 4, 9, 13, 15, 16], "mmabsolute_accuraci": [2, 13], "1equat": [2, 13], "The": [2, 4, 5, 10, 11, 13, 14, 15, 17, 18], "minut": [2, 13, 18], "real": [2, 13], "doe": [2, 4, 13], "reach": [2, 13], "non": [2, 13], "same": [2, 13], "equat": [2, 13, 16], "accum_nrt": [2, 13], "1288": 2, "2112": 2, "06186667": 2, "delai": [2, 13], "minuteunit": [2, 13], "hour": [2, 5, 7, 13, 16, 17, 18], "long": [2, 13], "given": [2, 5, 13, 15], "occur": [2, 13], "past": [2, 13], "onc": [2, 3, 13, 16], "either": [2, 13], "hourcom": [2, 13], "2208": 2, "0524": 2, "accum_total_nrt": [2, 13], "float64252": 2, "devic": [2, 13], "252": 2, "45001221": 2, "254": 2, "98160889": 2, "256": [2, 13], "22081055": 2, "257": 2, "30440796": 2, "280": 2, "30001831": 2, "61e": 2, "unfilt": [2, 13], "content": [2, 13], "resetunit": [2, 13], "1800": [2, 13, 18], "increas": [2, 13], "less": [2, 13], "than": [2, 13, 16, 17, 18], "increasesourc": [2, 13], "1609": 2, "59864258": 2, "1610": 2, "1611": 2, "1613": 2, "22408203": 2, "90402344": 2, "1614": 2, "78804687": 2, "1615": 2, "22128581": 2, "1638": 2, "bucket_nrt": [2, 13], "45733073": 2, "69074219": 2, "1612": 2, "82398926": 2, "65196289": 2, "49200195": 2, "91068848": 2, "intensity_rtnrt": [2, 12, 13, 18], "intens": [2, 13], "upon": [2, 13], "accum_rtnrtunit": [2, 13], "30000": [2, 9, 13], "6equat": [2, 13], "60comment": [2, 13], "72800011": 2, "67199982": 2, "7119999": 2, "atmos_pressur": [2, 13], "float64354": 2, "pressureunit": [2, 13], "kpa_fillvalu": 2, "surface_air_pressuresourc": [2, 13], "b1arrai": [2, 13], "354": 2, "91715271": 2, "97465739": 2, "355": 2, "05001831": 2, "01548177": 2, "08836792": 2, "09997559": 2, "359": 2, "8500061": 2, "84249878": 2, "81364695": 2, "78997803": 2, "83333588": 2, "88585256": 2, "93548126": 2, "98582204": 2, "360": [2, 5, 13], "03322591": 2, "temp_mean": [2, 13], "temperatur": [2, 13], "meanunit": [2, 13], "air_temperaturesourc": [2, 13], "09038353": 2, "54097332": 2, "43320009": 2, "07520023": 2, "05183994": 2, "0999199": 2, "46672035": 2, "85595947": 2, "90187996": 2, "79073263": 2, "79389942": 2, "44999981": 2, "63298343": 2, "31370072": 2, "3607498": 2, "90031637": 2, "06794999": 2, "63583322": 2, "31454667": 2, "temp_std": [2, 13], "2666": 2, "deviationunit": [2, 13], "0sourc": 2, "26657334": 2, "26691999": 2, "20532667": 2, "22641332": 2, "21723999": 2, "21973332": 2, "21752001": 2, "21688001": 2, "22648": 2, "21313333": 2, "25510001": 2, "32824999": 2, "27086667": 2, "22709999": 2, "24075001": 2, "29553333": 2, "3009": 2, "3380833": 2, "25832002": 2, "rh_mean": [2, 13], "float64308": 2, "rel": [2, 13, 18], "humid": [2, 13], "relative_humiditysourc": [2, 13], "308": 2, "40584798": 2, "1053536": 2, "35002309": 2, "458": 2, "05599325": 2, "459": 2, "59197632": 2, "461": 2, "70932943": 2, "477": 2, "59999878": 2, "485": 2, "84396606": 2, "479": 2, "9319873": 2, "478": 2, "64798828": 2, "127": [2, 8, 9, 14], "6805069": 2, "149": 2, "06499481": 2, "146": 2, "13866018": 2, "145": 2, "74949951": 2, "167": 2, "57334518": 2, "193": 2, "37132924": 2, "202": 2, "91649017": 2, "213": 2, "0858256": 2, "220": 2, "91518311": 2, "rh_std": [2, 13], "float642": 2, "404": 2, "40418996": 2, "28075986": 2, "17251332": 2, "71521332": 2, "58603999": 2, "60641332": 2, "65215997": 2, "59043996": 2, "61148": 2, "66414666": 2, "47390003": 2, "97849989": 2, "26928333": 2, "96059997": 2, "80499999": 2, "00775007": 2, "71995": 2, "79683335": 2, "58834663": 2, "vapor_pressure_mean": [2, 13], "vapor": [2, 13], "pressur": [2, 13], "calculatedunit": [2, 13], "water_vapor_partial_pressure_in_airsourc": [2, 13], "96957995": 2, "09102667": 2, "32710325": 2, "39158664": 2, "39979986": 2, "41018658": 2, "43544002": 2, "46152011": 2, "46992002": 2, "46930669": 2, "93798333": 2, "07350001": 2, "07053333": 2, "07805003": 2, "20441666": 2, "30396658": 2, "29534992": 2, "31141663": 2, "35394675": 2, "vapor_pressure_std": [2, 13], "01522": 2, "01521667": 2, "01150667": 2, "01075667": 2, "01146667": 2, "0135": 2, "00868333": 2, "00745": 2, "00541667": 2, "006": 2, "005": 2, "00775": 2, "wspd_arith_mean": [2, 13], "float6412": 2, "speed": [2, 13], "arithmet": [2, 13], "34554363": 2, "18824053": 2, "80318997": 2, "82461306": 2, "53800005": 2, "53325343": 2, "01096006": 2, "41987986": 2, "41915983": 2, "94351977": 2, "91038362": 2, "81475019": 2, "05993341": 2, "66340017": 2, "71866814": 2, "24324961": 2, "30305018": 2, "06558299": 2, "76426699": 2, "wspd_vec_mean": [2, 13], "float6411": 2, "vector": [2, 13, 17, 18], "90151355": 2, "03848016": 2, "59260342": 2, "80234664": 2, "50368021": 2, "51602653": 2, "95744": 2, "36195995": 2, "27535938": 2, "67589312": 2, "74444931": 2, "72975063": 2, "94308292": 2, "53030024": 2, "55991729": 2, "07980083": 2, "19969959": 2, "95574991": 2, "4548002": 2, "wdir_vec_mean": [2, 13], "015e": 2, "direct": [2, 13], "wind_from_directionsourc": [2, 13], "1014": 2, "53865967": 2, "1148": 2, "81733398": 2, "706": 2, "89902588": 2, "1538": 2, "63200521": 2, "1528": 2, "32804687": 2, "460": 2, "20413167": 2, "1160": 2, "92": 2, "1230": 2, "55201172": 2, "1662": 2, "87835449": 2, "498": 2, "11467855": 2, "1438": 2, "13671265": 2, "1352": 2, "82504272": 2, "1529": 2, "61840007": 2, "1639": 2, "91997681": 2, "1640": 2, "74996948": 2, "1620": 2, "87173665": 2, "1603": 2, "91998901": 2, "1591": 2, "39162191": 2, "1526": 2, "34404622": 2, "wdir_vec_std": [2, 13], "float6471": 2, "69": 2, "71": [2, 13], "68630033": 2, "30753286": 2, "61893723": 2, "04652033": 2, "21868179": 2, "1570787": 2, "69831757": 2, "87564152": 2, "67": [2, 15, 16, 18], "79447632": 2, "83": 2, "92852743": 2, "08993047": 2, "54649973": 2, "03831746": 2, "59799938": 2, "40250174": 2, "44693222": 2, "49799995": 2, "72358513": 2, "64311025": 2, "pwd_err_cod": [2, 13], "pwd": [2, 13], "pwd_mean_vis_1min": [2, 13], "float647": 2, "201e": 2, "visibilityunit": [2, 13], "visibility_in_airsourc": [2, 13], "72013": 2, "14220": 2, "10177": 2, "15722": 2, "42666667": 2, "22775": 2, "7851": 2, "5536": 2, "99387": 2, "08333333": 2, "100000": 2, "pwd_mean_vis_10min": [2, 13], "float649": 2, "271e": 2, "92709": 2, "37666667": 2, "17871": 2, "26666667": 2, "11428": 2, "81666667": 2, "8147": 2, "14005": 2, "11877": 2, "02666667": 2, "4909": 2, "pwd_pw_code_inst": [2, 13], "float64162": 2, "instantan": [2, 13], "present": 2, "codeunit": [2, 13], "162": [2, 18], "29333333": 2, "358": 2, "88": [2, 18], "84": 2, "pwd_pw_code_15min": [2, 13], "float64251": 2, "251": [2, 8], "52333333": 2, "425": 2, "430": 2, "pwd_pw_code_1hr": [2, 13], "float64144": 2, "144": 2, "pwd_precip_rate_mean_1min": [2, 13], "287": 2, "rateunit": [2, 13], "lwe_precipitation_ratesourc": [2, 13], "28706661e": 2, "05813339e": 2, "93503334e": 2, "43413310e": 2, "68000054e": 2, "35733324e": 2, "87760029e": 2, "41159997e": 2, "00080000e": 2, "65119947e": 2, "00000000e": 2, "pwd_cumul_rain": [2, 13], "float64418": 2, "liquid": [2, 13, 15, 16], "precipitationunit": [2, 13], "418": 2, "47854075": 2, "419": 2, "04801839": 2, "92595174": 2, "420": 2, "78053792": 2, "89679443": 2, "421": 2, "29971558": 2, "424": 2, "33319092": 2, "16201172": 2, "07078735": 2, "67426066": 2, "462": 2, "29998779": 2, "float644": 2, "176e": 2, "snowunit": [2, 13], "4175": 2, "71333333": 2, "4181": 2, "97333333": 2, "4190": 2, "75666667": 2, "4199": 2, "68": 2, "4200": 2, "4205": 2, "90666667": 2, "4235": 2, "4244": 2, "4252": 2, "4258": 2, "4615": 2, "org_precip_rate_mean": [2, 13], "1068": 2, "org": [2, 12, 13, 14, 15], "06803327e": 2, "53653369e": 2, "84413321e": 2, "67213345e": 2, "11599922e": 2, "91324006e": 2, "72952000e": 2, "55559969e": 2, "21340000e": 2, "55558675e": 2, "tbrg_precip_tot": [2, 13], "tbrg": [2, 13], "totalunit": [2, 13], "tbrg_precip_total_corr": [2, 13], "correctedunit": [2, 13], "precip_r": [2, 13, 18], "6511": 2, "intensityunit": [2, 13], "51086689e": 2, "00385333e": 2, "80504661e": 2, "69600004e": 2, "59900000e": 2, "72440046e": 2, "06888006e": 2, "50075987e": 2, "55047981e": 2, "62396017e": 2, "50910399e": 2, "90029304e": 2, "64768002e": 2, "weather_cod": [2, 13], "float64172": 2, "synop": [2, 13], "wawa": [2, 13], "tabl": [2, 13, 16], "4680unit": [2, 13], "172": 2, "247": 2, "135": 2, "37333333": 2, "number_detected_particl": [2, 13], "float64434": 2, "particl": [2, 13, 18], "detectedunit": [2, 13], "count_fillvalu": 2, "34066667e": 2, "56893333e": 2, "38405000e": 2, "84457333e": 2, "85253333e": 2, "64280000e": 2, "35940000e": 2, "02976000e": 2, "23356000e": 2, "81076000e": 2, "86906667e": 2, "18493333e": 2, "mor_vis": [2, 13], "37e": 2, "553e": 2, "optic": [2, 13], "43703": 2, "63333333": 2, "95532": 2, "59333333": 2, "8397": 2, "71145": 2, "4612": 2, "99999": 2, "11361": 2, "21220": 2, "3567": 2, "76": 2, "29193": 2, "70666667": 2, "3096": 2, "47570": 2, "snow_depth_intens": [2, 13], "new": [2, 3, 13, 18], "heightunit": [2, 13], "valid": [2, 13], "short": [2, 13], "its": [2, 13], "purpos": [2, 13], "provid": [2, 3, 4, 13], "railwai": [2, 13], "road": [2, 13], "safeti": [2, 13], "It": [2, 3, 13, 17, 18], "wmo": [2, 13], "nor": [2, 13], "guid": [2, 13], "96": 2, "80666667": 2, "89333333": 2, "17333333": 2, "class_size_width": [2, 13], "fall_velocity_calcul": [2, 13], "277": 2, "822": 2, "351": [2, 5, 18], "fall": [2, 13], "after": [2, 13], "lhermiteunit": [2, 13], "27700001": 2, "82200003": 2, "35099995": 2, "19999981": 2, "raw_spectrum": [2, 13], "raw": [2, 8, 13], "drop": [2, 13, 18], "distributionunit": [2, 13], "liquid_water_cont": [2, 13], "float64312": 2, "water": [2, 13, 15, 16], "contentunit": [2, 13], "3_fillvalu": 2, "12348969e": 2, "32090449e": 2, "62446473e": 2, "06777109e": 2, "96168814e": 2, "07699032e": 2, "22793631e": 2, "63764633e": 2, "59445455e": 2, "44384792e": 2, "68750806e": 2, "95109573e": 2, "82020264e": 2, "equivalent_radar_reflect": [2, 13], "float6497": 2, "ingestunit": [2, 13], "70357459e": 2, "33962568e": 2, "31198292e": 2, "26871859e": 2, "23034760e": 2, "65289728e": 2, "08531131e": 2, "intercept_paramet": [2, 13], "float64623": 2, "intercept": [2, 13], "assum": [2, 13, 17, 18], "ideal": [2, 13], "marshal": [2, 13], "palmer": [2, 13], "623": 2, "91405629": 2, "2599": 2, "37180501": 2, "5219": 2, "2559375": 2, "61558268": 2, "3443": 2, "29441732": 2, "6217": 2, "69508464": 2, "9475": 2, "95332031": 2, "7242": 2, "7003125": 2, "11106": 2, "74410156": 2, "27708": 2, "265625": 2, "42622": 2, "610625": 2, "20520": 2, "53497396": 2, "38593": 2, "33619792": 2, "slope_paramet": [2, 13], "596": 2, "59618416": 2, "37153338": 2, "68033747": 2, "37863337": 2, "42953428": 2, "78833961": 2, "51272865": 2, "71870224": 2, "35737396": 2, "52822281": 2, "78678829": 2, "80705187": 2, "23670334": 2, "median_volume_diamet": [2, 13], "077": 2, "median": [2, 13], "diamet": [2, 13], "0774117": 2, "22024515": 2, "90189689": 2, "85330668": 2, "5465818": 2, "40557567": 2, "87035583": 2, "66985622": 2, "00972444": 2, "32413797": 2, "30939663": 2, "66265531": 2, "56595044": 2, "714": 2, "distribut": [2, 7, 8, 9, 13, 18], "7138003": 2, "86947741": 2, "42168531": 2, "0199528": 2, "76466685": 2, "62188092": 2, "75788097": 2, "53935268": 2, "46018994": 2, "16254684": 2, "96664444": 2, "53150527": 2, "15635012": 2, "number_density_drop": [2, 13, 18], "258": 2, "722": 2, "densiti": [2, 13, 18], "correspond": [2, 13], "particular": [2, 13], "18399745": 2, "181": [2, 12], "54513377": 2, "diameter_min": [2, 13], "8463": 2, "smallest": [2, 13], "observedunit": [2, 13], "84628668": 2, "21076004": 2, "74916673": 2, "18645334": 2, "74166673": 2, "59488001": 2, "02999997": 2, "09824002": 2, "56000006": 2, "diameter_max": [2, 13], "largest": [2, 13], "67166667": 2, "56333333": 2, "80541667": 2, "76666667": 2, "49166667": 2, "77": 2, "63": 2, "89": [2, 13], "87666667": 2, "33666667": 2, "beam_numb": [2, 13], "a0arrai": 2, "beam_tilt_angl": [2, 13], "tilt": [2, 13], "verticalunit": [2, 13], "beam_azimuth_angl": [2, 13], "directionunit": [2, 13], "spectral_width": [2, 13], "peakunit": [2, 13], "spectral_shape_scor": [2, 13], "score": [2, 13], "bad": [2, 13], "good": [2, 13], "signal_pow": [2, 13], "magnitud": [2, 13], "signal_to_other_ratio": [2, 13], "select": [2, 3, 13], "peak": [2, 13], "other": [2, 4, 5, 13, 14, 17, 18], "100_fillvalu": 2, "signific": [2, 13], "noise_pow": [2, 13], "floorunit": [2, 13], "dc_power": [2, 13], "zero": [2, 13], "multi_peak_steering_veloc": [2, 13], "multi": [2, 13], "steer": [2, 13], "multi_peak_average_signific": [2, 13], "averag": [2, 13], "significanceunit": [2, 13], "multi_peak_cumulative_signific": [2, 13], "multi_peak_strongest_percentag": [2, 13], "strongest": [2, 13], "percentageunit": [2, 13], "multi_peak_partial_bonus_begin": [2, 13], "partial": [2, 13, 14], "bonu": [2, 13], "beginunit": [2, 13], "multi_peak_partial_bonus_end": [2, 13], "endunit": [2, 13], "multi_peak_full_bonus_begin": [2, 13], "full": [2, 3, 8, 13], "multi_peak_full_bonus_end": [2, 13], "cluster_average_signific": [2, 13], "cluster": [2, 9, 13], "cluster_cumulative_signific": [2, 13], "cluster_consistency_rank": [2, 13], "rankunit": [2, 13], "rwp_quality_flag": [2, 13], "qualiti": [2, 13, 15], "1flag_mask": [2, 13], "64": [2, 9, 13], "512": [2, 13], "1024flag_mean": [2, 13], "no_peak": [2, 13], "weak": [2, 13], "low_snr": [2, 13], "too_strong": [2, 13], "bad_shap": [2, 13], "ground_clutt": [2, 13], "large_oth": [2, 13], "too_narrow": [2, 13], "too_wid": [2, 13], "cluster_weak_a": [2, 13], "cluster_weak_cbit_1_descript": [2, 13], "foundbit_2_descript": [2, 13], "too": [2, 13], "lowbit_3_descript": [2, 13], "ratio": [2, 12, 13, 15, 16], "lowbit_4_descript": [2, 13], "highbit_5_descript": [2, 13], "low": [2, 13], "scorebit_6_descript": [2, 13], "contaminationbit_7_descript": [2, 13], "lowbit_8_descript": [2, 13], "narrowbit_9_descript": [2, 13], "widebit_10_descript": [2, 13], "lowbit_11_descript": [2, 13], "lowsourc": [2, 13], "number_coherent_integr": [2, 13], "q": [2, 13], "pairunit": [2, 13], "number_incoherent_integr": [2, 13], "incoher": [2, 13], "number_fft_point": [2, 13], "point": [2, 3, 4, 7, 13, 17, 18], "fast": [2, 13], "fourier": [2, 13], "transformunit": [2, 13], "interpulse_period": [2, 13], "pulsesunit": [2, 13], "ns_fillvalu": 2, "clock_phase_posit": [2, 13], "sirp": [2, 13], "clock": [2, 13], "positionunit": [2, 13], "clock_phase_good_count": [2, 13], "countunit": [2, 13], "pre": [2, 13], "hpa_fillvalu": 2, "1100": [2, 13], "0valid_delta": [2, 13], "0resolut": [2, 13], "air_pressuresourc": [2, 13], "177712": 2, "79007975": 2, "136821": 2, "18875": 2, "62991": 2, "653125": 2, "tdry": [2, 13], "dry": [2, 13, 16], "bulb": [2, 13], "temperatureunit": [2, 13], "1864": 2, "09348551": 2, "6389": 2, "42951172": 2, "17317": 2, "1153125": 2, "dp": [2, 13], "dewpoint": [2, 13], "110": [2, 13, 15, 16, 18], "dew_point_temperaturesourc": [2, 13], "5870": 2, "55179214": 2, "12338": 2, "72182292": 2, "22307": 2, "1984375": 2, "wspd": [2, 13], "speedunit": [2, 13], "wind_speedsourc": [2, 13], "1146": 2, "89177859": 2, "5390": 2, "36779948": 2, "9651": 2, "8240625": 2, "78823": 2, "91666667": 2, "103595": 2, "54666667": 2, "99429": 2, "rh": [2, 13], "humidityunit": [2, 13], "10065": 2, "68155924": 2, "4648": 2, "71153646": 2, "6848": 2, "76585938": 2, "u_wind": [2, 13], "eastward": [2, 13], "componentunit": [2, 13], "1calcul": [2, 13], "sin": [2, 13, 17, 18], "eastward_windsourc": [2, 13], "04518716": 2, "1370": 2, "23122721": 2, "4552": 2, "12089844": 2, "northward": [2, 13], "co": [2, 13, 17, 18], "northward_windsourc": [2, 13], "959": 2, "15482417": 2, "5210": 2, "86289062": 2, "8338": 2, "76898437": 2, "statusunit": [2, 13], "ascent": [2, 13], "1sourc": [2, 13], "1512": 2, "22495524": 2, "1239": 2, "31066406": 2, "47602539": 2, "90valid_max": [2, 13], "90standard_nam": [2, 13], "latitudecom": [2, 13], "stationarrai": 2, "180valid_max": [2, 13], "180standard_nam": [2, 13], "longitudecom": [2, 13], "altitudesourc": [2, 13], "1028387": 2, "49365234": 2, "1928635": 2, "3502378": 2, "1884520insitut": [2, 13], "facilitycom": [2, 13], "radclssknown_issu": [2, 13], "plan": [2, 13], "indic": [2, 13, 16], "pluvio_statu": [2, 12, 13, 18], "maintenance_flag": [2, 13], "reset_flag": [2, 13], "raw_fall_velocityhistori": [2, 13], "pathlib": [3, 8], "proj": [3, 5, 7, 8, 13, 14, 15, 16, 17, 18], "proj_create_from_databas": [3, 7], "ccsopen": [3, 5, 7, 16, 18], "home": [3, 5, 7, 14, 16, 18], "mgrover": [3, 5, 16, 18], "sail": [3, 8, 9, 10, 15, 16, 17, 18], "dev": [3, 5, 13, 14, 16, 18], "share": [3, 5, 7, 8, 12, 13, 15, 16, 17, 18], "fail": [3, 7, 18], "gpf": [3, 5, 7, 8, 13, 15, 16, 17, 18], "atm124": [3, 5, 7, 8, 13, 15, 16, 17, 18], "ppi": [3, 13], "figur": [3, 5, 6, 7, 9, 14, 16, 17, 18], "add_subplot": [3, 13], "111": [3, 6, 13, 17, 18], "xlim": [3, 5, 6, 7, 13, 14, 15, 17, 18], "ylim": [3, 5, 6, 7, 13, 14, 15, 16, 17, 18], "compute_number_of_point": 3, "extent": [3, 13, 17, 18], "resolut": [3, 5, 13, 14], "int": [3, 8, 13, 16, 17, 18], "z_grid_limit": 3, "5_000": [3, 17], "y_grid_limit": 3, "20_000": 3, "x_grid_limit": 3, "grid_resolut": 3, "250": [3, 13, 17], "we": [3, 4, 5, 6, 7, 8, 15, 16, 17, 18], "x_grid_point": 3, "y_grid_point": 3, "z_grid_point": 3, "160": 3, "map": [3, 5, 8, 9, 13, 17, 18], "grid_shap": 3, "grid_limit": 3, "to_xarrai": [3, 9, 12], "isel": [3, 9, 13, 15, 16, 18], "y": [3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18], "0x7f33c6f78eb0": 3, "would": [3, 16], "more": [3, 14], "height_expand": 3, "four": 3, "vertic": [3, 13, 14, 17, 18], "miss": 3, "fillna": [3, 13], "10_000": [3, 6, 18], "next": [3, 4], "argmin": 3, "look": [3, 5], "min_index": 3, "skipna": 3, "domain": [3, 4, 16], "notic": 3, "how": [3, 6, 13, 15], "top": [3, 13, 17, 18], "5000": [3, 13], "wherea": 3, "comprehens": 3, "snow_field": 3, "built": [3, 13], "subset_d": 3, "now": [3, 8, 15, 16], "let": [3, 4, 15, 16], "revis": 3, "show": [3, 13, 15, 16, 17, 18], "pipelin": 3, "grid_radar": 3, "subset_lowest_vertical_level": 3, "additional_field": 3, "out_path": [3, 8], "f": [3, 5, 7, 15, 16, 17, 18], "dan": 3, "stem": 3, "finish": 3, "write": 3, "In": [4, 13, 15], "notebook": [4, 6, 8, 15, 18], "take": [4, 14, 15, 16], "surfac": 4, "studi": 4, "lower": [4, 17], "hydrometeorologi": 4, "observ": [4, 13, 15, 18], "geopanda": [4, 5, 7, 13, 16, 17, 18], "gpd": [4, 5, 7, 13, 16, 17, 18], "fiona": [4, 5, 7, 13, 16, 17, 18], "hvplot": [4, 6, 12, 17, 18], "holoview": [4, 12], "hv": [4, 12, 17, 18], "drvsupport": [4, 5, 7, 13, 17, 18], "supported_driv": [4, 5, 7, 13, 17, 18], "libkml": [4, 5, 7, 13, 17, 18], "rw": [4, 5, 7, 13, 17, 18], "enabl": [4, 5, 7, 13, 17, 18], "kml": [4, 5, 7, 13, 17, 18], "disabl": [4, 5, 7, 13, 17, 18], "extens": [4, 12, 18], "bokeh": [4, 12, 18], "river": [4, 17, 18], "watersh": [4, 13], "crest": 4, "butt": 4, "noaa": 4, "recent": 4, "out": 4, "websit": [4, 11], "laboratori": [4, 16], "variou": 4, "focus": 4, "etc": 4, "east_riv": [4, 5, 13, 17, 18], "read_fil": [4, 5, 13, 17, 18], "splash_loc": [4, 17, 18], "splash_instru": [4, 17, 18], "arm_doe_loc": 4, "asset": 4, "amf_sensor_loc": [4, 17, 18], "sail_instru": [4, 17, 18], "come": 4, "extract": [4, 5, 13, 16], "geometri": 4, "both": 4, "static": [4, 13], "dynam": 4, "interact": 4, "east_river_plot": 4, "polygon": 4, "800": 4, "hover": 4, "tile": [4, 8, 13, 17], "esrirefer": 4, "xlabel": [4, 5, 18], "ylabel": [4, 5, 15, 18], "geo": 4, "splash_location_plot": 4, "cycl": [4, 13, 14], "category20": 4, "splash_overlai": 4, "main": [4, 8, 13, 17, 18], "mobil": 4, "larg": 4, "arm_doe_plot": 4, "sail_overlai": 4, "siteamf_sensor_loc": 4, "amf_sensor_plot": 4, "hover_col": 4, "black": [4, 13, 17, 18], "arm_asset_plot": 4, "ad": [4, 14], "them": [4, 10], "specifi": 4, "column": [4, 13, 16], "col": [4, 12], "xband": [5, 15, 18], "investig": 5, "cartopi": [5, 7, 9, 13, 14, 17, 18], "cr": [5, 7, 9, 13, 14, 17, 18], "ccr": [5, 7, 9, 13, 14, 17, 18], "lib": [5, 7, 13, 14, 16, 17, 18], "site": [5, 7, 14, 15, 17, 18], "dai": [5, 7, 18], "month": [5, 7, 8, 18], "year": [5, 7, 15], "2022": [5, 7, 12, 13, 15, 18], "gucxprecipradars2": [5, 7, 8, 17], "glue_fil": [5, 7, 8, 17], "_glu": [5, 7, 8], "xprecipradar_guc_volume_": [5, 7, 8], "nyquist_valu": [5, 7], "max": [5, 7, 13, 14, 18], "vel_textur": [5, 7], "calculate_velocity_textur": [5, 7], "vel_field": [5, 7], "nyq": [5, 7], "add_field": [5, 7, 14, 16], "replace_exist": [5, 7, 14, 16], "python3": [5, 7, 14, 16, 18], "simple_moment_calcul": 5, "298": 5, "deprecationwarn": [5, 6, 7, 8, 13, 14, 18], "median_filt": 5, "scipi": 5, "ndimag": 5, "namespac": 5, "deprec": [5, 6, 7, 14, 18], "vel_texture_field": 5, "hist": [5, 6, 7], "bin": [5, 6, 7, 13, 14], "histogram": 5, "150": [5, 13], "frequenc": 5, "axvlin": [5, 13, 18], "propos": 5, "count": [5, 18], "legend": [5, 6, 13, 15, 16, 17, 18], "0x7f0965b9d670": 5, "gatefilt": [5, 17, 18], "exclude_abov": [5, 7], "pyart_bal": 5, "phidp_textur": [5, 7], "texture_of_complex_phas": [5, 7], "phidp_field": [5, 7], "phidp_texture_field": [5, 7], "pyart_wild25": 5, "0x7f09659455b0": 5, "refl_field": [5, 7], "psidp_field": [5, 7], "attach": 5, "exit": 5, "choos": 5, "maesaka": [5, 6], "schneeb": 5, "vulpiani": 5, "_for_kdp": [5, 7], "r_kdp": [5, 7], "kdp_maesaka": [5, 6, 7], "kdp_schneeb": 5, "kdp_vulpiani": 5, "wrong": 5, "kdp_field_nam": 5, "kdp_": 5, "core": [5, 7, 9, 16, 18], "fromnumer": [5, 7], "758": [5, 7], "userwarn": [5, 7, 14, 16, 18], "warn": [5, 7, 8, 9, 13, 14, 16, 17, 18], "partit": [5, 7], "ignor": [5, 7, 8, 13, 17], "maskedarrai": [5, 7], "kth": [5, 7], "axi": [5, 7, 14, 16], "kind": [5, 7, 13], "pyart_carbone42": [5, 6, 7], "60": [5, 6, 7, 13, 14], "radarmapdisplai": [5, 13, 14, 17, 18], "lat_cent": 5, "lon_cent": 5, "project": [5, 9, 11, 13, 14, 17, 18], "case": 5, "platecarre": [5, 9, 13, 17, 18], "lat_tick": 5, "lon_tick": 5, "ax1": [5, 7, 9, 13, 18], "plot_ppi_map": [5, 13, 14, 17, 18], "10m": 5, "lat_lin": [5, 13], "lon_lin": [5, 13], "linewidth": [5, 9, 13, 17, 18], "edgecolor": [5, 13, 17, 18], "k": [5, 6, 12, 13, 15, 17, 18], "facecolor": [5, 13, 17, 18], "linestyl": [5, 9, 13, 17, 18], "basin": [5, 17, 18], "loc": [5, 13, 15, 16, 17, 18], "fontsiz": [5, 9, 13, 15, 16, 17, 18], "14": [5, 8, 13, 15, 17, 18], "232": 5, "234": 5, "ax5": [5, 13], "235": 5, "ax6": [5, 13], "236": 5, "tight_layout": 5, "phidp_kdp_comparison_sail": 5, "dpi": [5, 13, 15, 17, 18], "300": [5, 12, 13, 15, 17, 18], "transpar": 5, "mpl": [5, 18], "gridlin": [5, 9, 13, 17, 18], "451": [5, 18], "xlabels_top": [5, 17, 18], "top_label": [5, 13, 18], "toggl": [5, 18], "visibl": [5, 18], "instead": [5, 6, 7, 18], "487": [5, 18], "ylabels_right": [5, 17, 18], "right_label": [5, 13, 18], "74": [5, 18], "distutil": [5, 18], "loosevers": [5, 18], "setuptool": [5, 18], "_distutil": [5, 18], "explor": 6, "visual": 6, "analyz": 6, "dual": 6, "pol": 6, "xradar": 6, "xd": 6, "frozen": [6, 7], "importlib": [6, 7], "_bootstrap": [6, 7], "283": [6, 7], "load_modul": [6, 7], "slate": [6, 7], "remov": [6, 7], "exec_modul": [6, 7], "open_cfradial1_datatre": 6, "first_dim": 6, "auto": 6, "first_sweep": 6, "sweep_0": 6, "to_dataset": [6, 13, 17], "geo_d": 6, "get_x_y_z": 6, "0x298061150": 6, "drop_dupl": 6, "329": 6, "340": [6, 16], "10000": [6, 13], "kdp_lp": [6, 7], "azimuth_subset": 6, "336": 6, "nearest": [6, 9, 13], "0x299c7cf40": 6, "tab": 6, "blue": [6, 13], "twinx": 6, "phidp_uf": 6, "phidp_lp": [6, 7], "braut": 7, "analysi": 7, "env2": 7, "extract_sweep": [7, 13, 17, 18], "phase_proc_lp": 7, "ncp_field": 7, "rhv_field": 7, "offset": [7, 8], "flatten": 7, "dbz_sel": 7, "zdr_sel": 7, "kdp_lp_sel": 7, "kdp_maesaka_sel": 7, "set_titl": [7, 13, 18], "grid": [7, 9], "c": [7, 15, 17, 18], "alpha": [7, 9, 13, 17, 18], "set_ylim": [7, 9, 13, 16, 18], "set_xlabel": [7, 13, 16, 18], "set_ylabel": [7, 13, 16, 18], "zdrc": 7, "v": 7, "set_xlim": [7, 13, 18], "repres": 8, "portal": [8, 15], "filterwarn": [8, 13, 17], "categori": [8, 13], "tempfil": [8, 9], "shutil": [8, 9], "client": [8, 9], "localclust": [8, 9], "progress": [8, 13], "glue_fix": 8, "requir": 8, "encod": [8, 13], "fill": 8, "99800": 8, "radar_glu": 8, "b_radar": 8, "radar_list": 8, "rad": 8, "join_radar": 8, "volume_from_list": 8, "base_radar": 8, "vlist": 8, "base_dir": 8, "sw": 8, "except": 8, "fix_tim": 8, "through": [8, 13, 14], "timedelta64": 8, "origin": [8, 13, 15], "new_tim": 8, "send": 8, "back": [8, 16], "granul": [8, 9], "dvolum": 8, "n_tilt": 8, "nc_file": 8, "_nc": 8, "out_dir": 8, "base_rad": 8, "join": [8, 9], "out_radar": 8, "ff": 8, "strptime": 8, "h": [8, 9, 13, 15, 16, 17, 18], "sz": 8, "fromtimestamp": 8, "mktime": 8, "timedelta": [8, 9], "strform": 8, "strftime": [8, 9, 17, 18], "write_cfradi": [8, 14], "arm_time_vari": 8, "success": 8, "failur": 8, "free": 8, "up": [8, 13, 16], "memori": [8, 9], "temporarydirectori": 8, "tmpdir": 8, "tmp_path": 8, "load": [8, 13], "milisecond": 8, "millisecond": 8, "copi": [8, 9, 15, 16], "all_fil": [8, 9], "listdir": [8, 9], "base_scan_ppi": 8, "1_ppi": 8, "ppi_pattern": 8, "base_scan": 8, "in_volum": 8, "base_scan_index": 8, "20220301": [8, 12], "004845": 8, "004845_278032_22_1_ppi": 8, "004916": 8, "004916_278034_22_2_ppi": 8, "004949": 8, "004949_278035_22_4_ppi": 8, "005020": 8, "005020_278036_22_6_ppi": 8, "005053": 8, "005053_278037_22_8_ppi": 8, "005124": 8, "005124_278038_22_10_ppi": 8, "005156": 8, "005156_278039_22_12_ppi": 8, "005229": 8, "005229_278040_22_15_ppi": 8, "202203_glu": [8, 15, 16, 18], "xprecipradar_guc_volume_20220301": 8, "smaller": 8, "just": 8, "6b38fc35": 8, "d1cd": 8, "11ee": 8, "aa6b": 8, "b8cb29b120a2": 8, "dashboard": [8, 9], "8787": [8, 9], "launch": 8, "jupyterlab": 8, "info": 8, "d5f460ae": 8, "worker": [8, 9], "thread": 8, "gib": 8, "run": [8, 18], "schedul": [8, 9], "8ee07010": 8, "a59b": 8, "4d9e": 8, "9820": 8, "fab289c28b05": 8, "comm": 8, "tcp": [8, 9], "34455": 8, "43873": 8, "37303": 8, "nanni": 8, "34077": 8, "local": [8, 13, 15], "tmp": [8, 14, 18], "scratch": 8, "space": 8, "6_zfrvvd": 8, "my_data": [8, 9], "gather": [8, 9], "07": [8, 12, 13, 18], "4min": 8, "nexradaw": 9, "featur": [9, 13, 17, 18], "cfeatur": [9, 13, 17, 18], "naturalearthfeatur": 9, "pytz": 9, "deepcopi": 9, "math": [9, 13, 17, 18], "atan2": [9, 13, 17, 18], "inlin": [9, 13, 17], "custom_plotfunc": 9, "tt": [9, 13], "arg": [9, 13], "kwarg": [9, 13], "89838028": 9, "94321442": 9, "map_panel_ax": 9, "80": [9, 13, 14], "x_cut_panel_ax": 9, "y_cut_panel_ax": 9, "add_ax": [9, 13, 18], "1000": [9, 13, 16, 17], "pcolormesh": 9, "cm_colorblind": 9, "homeyerrainbow": 9, "add_colorbar": [9, 13, 18], "gl": [9, 13, 17, 18], "draw_label": [9, 13, 17, 18], "add_featur": 9, "coastlin": 9, "y_axi": 9, "get_yaxi": 9, "set_label_text": 9, "8000": [9, 13], "xlabel_styl": [9, 13, 17, 18], "ylabel_styl": [9, 13, 17, 18], "eagl": 9, "cpol": 9, "202112_glu": 9, "grid_from_radar": 9, "601": 9, "weighting_funct": 9, "barnes2": 9, "xgrid": 9, "set_index": [9, 12], "figm": 9, "gtime": 9, "fname": 9, "xprecipradar_guc_grid_": 9, "202112": 9, "xprecipradar_guc_grid_20211215": 9, "181231": 9, "dask": [9, 13, 18], "scale": [9, 13, 17, 18], "adapt": 9, "maximum": 9, "44800": 9, "tb": 9, "contract": 10, "per": [10, 13, 18], "file": [10, 12, 14, 15, 17, 18], "common": 10, "analys": 10, "done": 10, "nest": [10, 13], "sponsor": 11, "link": 11, "offici": 11, "document": 11, "And": 11, "lbl": 11, "discoveri": [12, 15, 18], "download_arm_data": 12, "mgrover4": [12, 15, 18], "176e1559b67be630": 12, "2021": 12, "20220317": 12, "20220318": 12, "20220319": 12, "20220320": 12, "20220321": 12, "20220322": 12, "20220323": 12, "20220324": 12, "20220325": 12, "20220326": 12, "20220327": 12, "20220328": 12, "20220329": 12, "20220330": 12, "20220331": 12, "20220224": 12, "20211201": 12, "20211202": 12, "20211203": 12, "20211206": 12, "20211207": 12, "20211208": 12, "20211209": 12, "20211216": 12, "20211217": 12, "20211218": 12, "20211222": 12, "20211224": 12, "20211225": 12, "20211226": 12, "20211227": 12, "20211228": 12, "20211229": 12, "20220102": 12, "20220109": 12, "20220110": 12, "20220112": 12, "20220111": 12, "20220113": 12, "20220116": 12, "20220122": 12, "20220124": 12, "20220127": 12, "20220130": 12, "20220131": 12, "20220202": 12, "20220201": 12, "20220204": 12, "20220205": 12, "20220213": 12, "20220217": 12, "20220221": 12, "20220219": 12, "20220220": 12, "20211204": 12, "20211205": 12, "20211211": 12, "20211210": 12, "20211213": 12, "20211212": 12, "20211214": 12, "20211215": 12, "20211219": 12, "20211220": 12, "20211221": 12, "20211223": 12, "20211231": 12, "20211230": 12, "20220101": 12, "20220103": 12, "20220104": 12, "20220106": 12, "20220105": 12, "20220107": 12, "20220108": 12, "20220114": 12, "20220115": 12, "20220117": 12, "20220118": 12, "20220120": 12, "20220119": 12, "20220121": 12, "20220123": 12, "20220125": 12, "20220126": 12, "20220128": 12, "20220129": 12, "20220203": 12, "20220207": 12, "20220206": 12, "20220209": 12, "20220208": 12, "20220210": 12, "20220211": 12, "20220212": 12, "20220215": 12, "20220214": 12, "20220216": 12, "20220218": 12, "20220223": 12, "20220222": 12, "20220226": 12, "20220225": 12, "20220227": 12, "20220228": 12, "20220304": 12, "20220302": 12, "20220303": 12, "20220306": 12, "20220305": 12, "20220307": 12, "20220308": 12, "20220309": 12, "20220310": 12, "20220311": 12, "20220312": 12, "20220313": 12, "20220315": 12, "20220316": 12, "wang": 12, "jane": 12, "cromwel": 12, "sturm": 12, "irv": 12, "delamer": 12, "mockaiti": 12, "weigh": [12, 13], "bucket": [12, 13], "open_mfdataset": [12, 13], "gauge_precip_accum": [12, 13, 18], "accumulate_precip": [12, 13, 15, 18], "intensity_rtnrt_accumul": [12, 13, 18], "200": [12, 13, 16, 18], "metpi": [12, 17, 18], "doc": [12, 13], "googl": 12, "com": 12, "spreadsheet": 12, "1s7xzpt0iojk0bwt34bkvyt9xzpbi1tv6q28m3zqimp": 12, "edit": 12, "usp": 12, "df": 12, "read_excel": 12, "export": 12, "gid": 12, "xlsx": 12, "sheet_nam": 12, "sheet1": 12, "temp": 12, "\u00bac": 12, "\u00baf": 12, "cm": [12, 17, 18], "inch": [12, 16], "7\u00bd": 12, "11\u00bd": 12, "div": 12, "12\u00bd": 12, "8\u00bd": 12, "9\u00bd": 12, "5\u00bd": 12, "178": 12, "\u00bd": 12, "13\u00bd": 12, "179": 12, "2\u00bd": 12, "27": [12, 13], "086614": 12, "874016": 12, "nat": 12, "182": 12, "183": 12, "row": 12, "swe_inch": 12, "float": [12, 13, 14], "accum_cm": 12, "centimet": 12, "convers": [12, 13], "swe_mm": 12, "accum_mm": 12, "strip": 12, "gothic_d": 12, "dropna": [12, 15, 16, 18], "depth": 12, "mpl_toolkit": 13, "axes_grid1": 13, "make_axes_locat": 13, "gridspec": 13, "podpac": [13, 17], "datalib": [13, 17], "terraintil": [13, 17], "clinspac": [13, 17], "act": [13, 15, 16, 17, 18], "wradlib": [13, 14], "wrl": [13, 14], "movi": 13, "futurewarn": 13, "min_lat": [13, 17, 18], "max_lat": [13, 17, 18], "min_lon": [13, 17, 18], "max_lon": [13, 17, 18], "zoom": [13, 17, 18], "zoom_min_lat": 13, "zoom_max_lat": 13, "zoom_min_lon": 13, "zoom_max_lon": 13, "node": [13, 17], "tile_format": [13, 17], "geotiff": [13, 14, 17], "get": [13, 14, 16, 17], "eval": [13, 17], "956158": 13, "amf2": 13, "kettl": 13, "pond": 13, "brush": 13, "creek": 13, "averi": 13, "pumphous": 13, "obtain": 13, "zach": 13, "zssherman": 13, "big": 13, "github": 13, "avail": 13, "request": 13, "obrienj": 13, "tif_fil": [13, 14], "xprecip": 13, "gc_latlon_bear_dist": [13, 17, 18], "lat1": [13, 17, 18], "lon1": [13, 17, 18], "bear": [13, 17, 18], "dist": [13, 17, 18], "decim": [13, 17, 18], "well": [13, 17, 18], "distanc": [13, 17, 18], "lat2": [13, 17, 18], "lon2": [13, 17, 18], "final": [13, 17, 18], "destin": [13, 17, 18], "cannot": [13, 17, 18], "re": [13, 17, 18], "6371": [13, 17, 18], "lat1r": [13, 17, 18], "deg2rad": [13, 17, 18], "lon1r": [13, 17, 18], "bearr": [13, 17, 18], "lat2r": [13, 17, 18], "arcsin": [13, 14, 17, 18], "lon2r": [13, 17, 18], "rad2deg": [13, 17, 18], "add_scale_lin": [13, 17, 18], "fontweight": [13, 17, 18], "automat": [13, 17, 18], "scalar": [13, 14, 17, 18], "draw": [13, 17, 18], "instanc": [13, 17, 18], "being": [13, 17, 18], "text": [13, 16, 17, 18], "frac_lat": [13, 17, 18], "bottom": [13, 17, 18], "frac_lon": [13, 17, 18], "left": [13, 17, 18], "e1": [13, 17, 18], "get_ext": [13, 17, 18], "center_lon": [13, 17, 18], "center_lat": [13, 17, 18], "longer": [13, 17, 18], "shorten": [13, 17, 18], "best": [13, 17, 18], "effect": [13, 17, 18], "hash": [13, 17, 18], "edg": [13, 17, 18], "lat1a": [13, 17, 18], "lon1a": [13, 17, 18], "lat1b": [13, 17, 18], "lon1b": [13, 17, 18], "lat2a": [13, 17, 18], "lon2a": [13, 17, 18], "lat2b": [13, 17, 18], "lon2b": [13, 17, 18], "horizontalalign": [13, 17, 18], "verticalalign": [13, 17, 18], "plot_eastriv": 13, "ncolor": 13, "scale_color": 13, "bar": [13, 17, 18], "bold": [13, 17, 18], "gca": [13, 17, 18], "xaxi": [13, 15, 16, 17, 18], "set_major_loc": [13, 17, 18], "nullloc": [13, 17, 18], "elevation_contour": [13, 17], "2_700": [13, 17], "4_200": [13, 17], "contour": [13, 17], "dem": 13, "grei": [13, 17], "clabel": [13, 17], "fmt": [13, 17], "rightside_up": [13, 17], "beam_block": [13, 14], "radar_height_offset": [13, 14], "beam_width": [13, 14], "tif_nam": [13, 14], "tower": [13, 14], "pbb_all": [13, 14], "cbb_all": [13, 14], "bech": [13, 14], "codina": [13, 14], "lorent": [13, 14], "bebbington": [13, 14], "2003": [13, 14, 18], "sensit": [13, 14], "blockag": 13, "refract": [13, 14], "gradient": [13, 14], "atmo": [13, 14], "ocean": [13, 14], "technol": [13, 14], "845": [13, 14], "855": [13, 14], "heistermann": [13, 14], "jacobi": [13, 14], "pfaff": [13, 14], "2013": [13, 14], "technic": [13, 14], "hydrol": [13, 14], "earth": [13, 14], "syst": [13, 14], "sci": [13, 14], "863": [13, 14], "871": [13, 14], "5194": [13, 14], "hess": [13, 14], "languag": [13, 14], "journal": [13, 14], "p": [13, 14], "e25": [13, 14], "readi": [13, 14], "rasterfil": [13, 14], "data_rast": [13, 14], "open_rast": [13, 14], "rastervalu": [13, 14], "rastercoord": [13, 14], "georef": [13, 14], "extract_raster_dataset": [13, 14], "nodata": [13, 14], "rastervalues_": [13, 14], "rastercoords_": [13, 14], "sitecoord": [13, 14], "pbb_arrai": [13, 14], "cbb_arrai": [13, 14], "_rang": [13, 14], "beamradiu": [13, 14], "half_power_radiu": [13, 14], "index_start": [13, 14], "index_end": [13, 14], "rg": [13, 14], "azg": [13, 14], "meshgrid": [13, 14], "eleg": [13, 14], "nrai": [13, 14], "nbin": [13, 14], "ngate": [13, 14], "bw": [13, 14], "half": [13, 14], "range_r": [13, 14], "el": [13, 14], "sweep_centroid": [13, 14], "spherical_to_proj": [13, 14], "polcoord": [13, 14], "rlimit": [13, 14], "clip": [13, 14], "insid": [13, 14], "bound": [13, 14], "box": [13, 14], "ind": [13, 14], "find_bbox_indic": [13, 14], "polarvalu": [13, 14], "ipol": [13, 14], "cart_to_irregular_splin": [13, 14], "prefilt": [13, 14], "pbb": 13, "qual": [13, 14], "beam_block_frac": [13, 14], "ma": [13, 14], "masked_invalid": [13, 14], "cbb": 13, "cum_beam_block_frac": [13, 14], "sail_mosa": 13, "nradar": 13, "accum": 13, "moasic": 13, "side": 13, "wish": 13, "datset": 13, "3rd": 13, "mountain": 13, "radar0": 13, "time_max": [13, 18], "time_min": [13, 18], "radar_tim": 13, "unix": 13, "get_gate_lat_lon_alt": 13, "reflecitivti": 13, "site_lat": 13, "site_lon": 13, "date_form": [13, 15, 16, 18], "detail": [13, 14], "placement": 13, "gs0": 13, "gs00": 13, "subgridspec": 13, "775": 13, "textur": 13, "embellish": 13, "spectral_r": 13, "marker": [13, 14, 15, 18], "label2": 13, "z_h": 13, "cbar_kwarg": 13, "reflectivti": [13, 16], "3500": 13, "4000": 13, "laser": 13, "disdromt": 13, "psd": 13, "lognorm": [13, 18], "label3": 13, "6500": 13, "divid": 13, "cax": [13, 18], "append_ax": 13, "pad": 13, "set_vis": 13, "cbax": 13, "115": 13, "cbar2": [13, 18], "colorbar": [13, 18], "orient": [13, 18], "set_label": [13, 17, 18], "m3": 13, "sharex": [13, 18], "axd": 13, "sidea": 13, "disdromet": 13, "pluvio": [13, 15, 16], "set_major_formatt": [13, 15, 16, 18], "snow_rate_m2009_1_accumul": 13, "add_legend": 13, "hhz": 13, "precipti": 13, "squire_grid": 13, "setup": 13, "myf": 13, "frame": 13, "inher": 13, "pass": 13, "argument": 13, "combined_data": 13, "da_a": 13, "da_b": 13, "da_c": 13, "da_d": 13, "precip_rate_accumul": [13, 18], "throw": 13, "isn": 13, "overlai": 13, "gucxprecipradarcmacs2": 13, "cmac2": 13, "rad_d": 13, "200height": 13, "s2": 13, "112000": 13, "hrvalid_min": 13, "1600": 13, "mmvalid_min": 13, "current": [13, 15], "kpastandard_nam": 13, "standard": 13, "degcsourc": 13, "kpasourc": 13, "wind": 13, "ssourc": 13, "degreesourc": 13, "mmsourc": 13, "countsourc": 13, "meteorolog": [13, 17], "hrcomment": 13, "51200": 13, "1638400": 13, "3sourc": 13, "dbzsourc": 13, "100sourc": 13, "rwp": 13, "ground": [13, 18], "combin": [13, 16], "nssourc": 13, "hpavalid_min": 13, "degcvalid_min": 13, "svalid_min": 13, "degreevalid_min": 13, "valid_min": [13, 15, 16], "degree_nvalid_min": 13, "situ": 13, "station": 13, "degree_evalid_min": 13, "heightpandasindexpandasindex": 13, "sitepandasindexpandasindex": 13, "particle_sizepandasindexpandasindex": 13, "06199999898672104": 13, "18700000643730164": 13, "31200000643730164": 13, "43700000643730164": 13, "5619999766349792": 13, "6869999766349792": 13, "8119999766349792": 13, "9369999766349792": 13, "062000036239624": 13, "187000036239624": 13, "raw_fall_velocitypandasindexpandasindex": 13, "05000000074505806": 13, "15000000596046448": 13, "3499999940395355": 13, "44999998807907104": 13, "550000011920929": 13, "6499999761581421": 13, "8500000238418579": 13, "949999988079071": 13, "100000023841858": 13, "2999999523162842": 13, "7000000476837158": 13, "899999976158142": 13, "200000047683716": 13, "5999999046325684": 13, "4000000953674316": 13, "799999952316284": 13, "400000095367432": 13, "199999809265137": 13, "800000190734863": 13, "599999904632568": 13, "399999618530273": 13, "600000381469727": 13, "799999237060547": 13, "moment": 13, "antenna": 13, "rad_2": 13, "1min": 13, "asfreq": 13, "rad_3": 13, "ld_precip_accum": 13, "radar_accum": 13, "radar_acum_2": 13, "ld_match": 13, "pluvio_match": 13, "radar_match": 13, "fuchsia": 13, "purpl": 13, "cyan": 13, "nsite": 13, "obrien_ams2023_radclss_loc": 13, "col_rai": 13, "get_column_rai": 13, "309": 13, "plot_azimuth_to_rhi": 13, "subtract": 13, "ones": [13, 14], "nlabel": 13, "circ": 13, "mark": 13, "926": 13, "limit": 13, "obrien_ams2023_radclss_columnextract": 13, "radar_beam_width_v": 13, "npolar": 13, "977": 13, "fill_between": 13, "zorder": 13, "obrien_ams2023_radclss_columnextract_withterrain": 13, "store": [13, 15, 16], "mdm": 13, "figb": 13, "nout": 13, "sail_mosaic_": 13, "squire_list": 13, "gucxprecipradarsquirem1": 13, "accummul": 13, "merg": 13, "161": 13, "2e": 13, "975e": 13, "chunksiz": [13, 18], "ndarrai": [13, 18], "u2": 13, "lowest_height": 13, "01614": 13, "093": 13, "400y": 13, "161x": 13, "161height": 13, "70particle_s": 13, "04standard_nam": 13, "projection_y_coordinatelong_nam": 13, "plane": 13, "originaxi": 13, "yunit": 13, "marrai": 13, "20000": 13, "19750": 13, "19500": 13, "19250": 13, "19000": 13, "18750": 13, "18500": 13, "18250": 13, "18000": 13, "17750": 13, "17500": 13, "17250": 13, "17000": 13, "16750": 13, "16500": 13, "16250": 13, "16000": 13, "15750": 13, "15500": 13, "15250": 13, "15000": 13, "14750": 13, "14500": 13, "14250": 13, "14000": 13, "13750": 13, "13500": 13, "13250": 13, "13000": 13, "12750": 13, "12500": 13, "12250": 13, "12000": 13, "11750": 13, "11500": 13, "11250": 13, "11000": 13, "10750": 13, "10500": 13, "10250": 13, "9750": 13, "9500": 13, "9250": 13, "9000": 13, "8750": 13, "8500": 13, "8250": 13, "7750": 13, "7500": 13, "7250": 13, "7000": 13, "6750": 13, "6250": 13, "6000": 13, "5750": 13, "5500": 13, "5250": 13, "4750": 13, "4250": 13, "3750": 13, "3250": 13, "2750": 13, "2500": 13, "2250": 13, "2000": [13, 16], "1750": 13, "1500": 13, "1250": 13, "750": [13, 17], "projection_x_coordinatelong_nam": 13, "xunit": 13, "float64dask": [13, 18], "chunk": [13, 18], "byte": [13, 18], "kib": [13, 18], "995": 13, "originunit": 13, "projection_z_coordinateaxi": 13, "zposit": 13, "mib": 13, "405": 13, "412": 13, "corrected_equivalent_reflectivity_factorarrai": 13, "8valid_min": 13, "rangestandard_nam": 13, "rainfall_r": 13, "lowest": 13, "gateunit": 13, "mmarrai": 13, "01614198": 13, "03292079": 13, "04442855": 13, "05358108": 13, "08204609": 13, "08762004": 13, "08780094": 13, "08900494": 13, "12429593": 13, "17015492": 13, "23218022": 13, "27899058": 13, "34548867": 13, "37602138": 13, "41070759": 13, "45490829": 13, "51973941": 13, "56406843": 13, "70041173": 13, "83790781": 13, "52743962": 13, "23595869": 13, "22276242": 13, "67819099": 13, "04386581": 13, "32529189": 13, "64649445": 13, "97498138": 13, "18837525": 13, "25049411": 13, "3089719": 13, "36119333": 13, "40518764": 13, "46182919": 13, "51787864": 13, "59741345": 13, "62117969": 13, "63308687": 13, "65123555": 13, "67798084": 13, "68246273": 13, "79169232": 13, "11222407": 13, "61275167": 13, "09456041": 13, "34209497": 13, "09269013": 13, "ypandasindexpandasindex": 13, "xpandasindexpandasindex": 13, "1884979comment": 13, "c1field": 13, "lonhistori": 13, "build": 13, "mov_parallel": 13, "input_check": 13, "framedim": 13, "pixelwidth": 13, "pixelheight": 13, "4800": 13, "1980": 13, "artist": 13, "put": 13, "whose": 13, "underscor": 13, "when": 13, "need": [13, 15, 16, 17, 18], "went": 13, "preview": 13, "sail_squire_moas": 13, "mov": 13, "overwrite_exist": 13, "gif_resolution_factor": 13, "framer": 13, "gif": [13, 17], "ffmpeg": 13, "sail_squire_radclss_moas": 13, "copyright": 13, "clang": 13, "configur": 13, "prefix": 13, "runner": 13, "miniforge3": 13, "conda": 13, "bld": 13, "ffmpeg_1674566267822": 13, "_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl": 13, "arm64": 13, "appl": 13, "darwin20": 13, "cxx": 13, "nm": 13, "openssl": 13, "demux": 13, "dash": 13, "hardcod": 13, "libfreetyp": 13, "libfontconfig": 13, "libopenh264": 13, "compil": 13, "arch": 13, "darwin": 13, "host": 13, "_build_env": 13, "x86_64": 13, "darwin13": 13, "neon": 13, "gnutl": 13, "libmp3lam": 13, "libvpx": 13, "pthread": 13, "gpl": 13, "libx264": 13, "libx265": 13, "libaom": 13, "libsvtav1": 13, "libxml2": 13, "pic": 13, "version3": 13, "zlib": 13, "libopu": 13, "pkg": 13, "config": [13, 18], "libavutil": 13, "libavcodec": 13, "libavformat": 13, "libavdevic": 13, "libavfilt": 13, "libswscal": 13, "libswresampl": 13, "libpostproc": 13, "mp4": 13, "m4a": 13, "3gp": 13, "3g2": 13, "mj2": 13, "metadata": [13, 15, 16], "major_brand": 13, "qt": 13, "minor_vers": 13, "compatible_brand": 13, "lavf59": 13, "durat": 13, "bitrat": 13, "301": 13, "kb": 13, "stream": 13, "0x1": 13, "video": 13, "h264": 13, "avc1": 13, "0x31637661": 13, "yuv420p": 13, "3000x1500": 13, "sar": 13, "dar": 13, "fp": 13, "tbr": 13, "12288": 13, "tbn": 13, "handler_nam": 13, "videohandl": 13, "vendor_id": 13, "ffmp": 13, "lavc59": 13, "nativ": 13, "press": 13, "stop": 13, "34m": 13, "swscaler": 13, "0x150008000": 13, "0m": 13, "0x150018000": 13, "33mno": 13, "acceler": 13, "colorspac": 13, "bgr8": 13, "0x150028000": 13, "0x150038000": 13, "0x150048000": 13, "0x150058000": 13, "0x150068000": 13, "0x150078000": 13, "0x150088000": 13, "0x150098000": 13, "0x1500a8000": 13, "0x1500b8000": 13, "0moutput": 13, "pc": 13, "gbr": 13, "lsize": 13, "15692kb": 13, "966": 13, "5kbit": 13, "2x": 13, "audio": 13, "0kb": 13, "subtitl": 13, "header": 13, "mux": 13, "overhead": 13, "000124": 13, "zsherman": 14, "xprecipradar_guc_volume_20220217": 14, "230559": 14, "kei": [14, 15, 16, 18], "dict_kei": 14, "snr": [14, 18], "anaconda3": 14, "env": 14, "pyart_env": 14, "2320": 14, "alia": 14, "builtin": 14, "To": 14, "silenc": 14, "itself": 14, "modifi": 14, "behavior": 14, "safe": [14, 16], "guidanc": 14, "devdoc": 14, "releas": 14, "html": [14, 15], "self": 14, "globe": 14, "semimajor_axi": 14, "wgs84_semimajor_axi": 14, "2321": 14, "semiminor_axi": 14, "281": 14, "overrid": 14, "lambert": 14, "conform": 14, "masked_arrai": 14, "19995117": 14, "nsweep": 14, "tif": 14, "dsm_mosaic_min_phase_m": 14, "tch_mosaic_min_phase_m": 14, "pbb_to_dict": 14, "function": 14, "turn": 14, "dictionari": [14, 16], "pbb_dict": 14, "cbb_to_dict": 14, "cbb_dict": 14, "cbb_flags_to_dict": 14, "range_to_measurement_volum": 14, "projection_range_coordin": 14, "spacing_is_const": 14, "meters_to_center_of_first_g": 14, "830795": 14, "meters_between_g": 14, "94095": 14, "radial_range_coordin": 14, "12830795e": 14, "28898468e": 14, "05110168e": 14, "69920502e": 14, "26932999e": 14, "86873947e": 14, "46814896e": 14, "06755859e": 14, "66696808e": 14, "26637756e": 14, "86578705e": 14, "46519653e": 14, "06460571e": 14, "66401489e": 14, "26342529e": 14, "86283447e": 14, "46224365e": 14, "06165344e": 14, "66106323e": 14, "02604724e": 14, "08598816e": 14, "14592908e": 14, "20587012e": 14, "26581104e": 14, "32575195e": 14, "38569299e": 14, "44563379e": 14, "50557483e": 14, "56551587e": 14, "62545667e": 14, "68539771e": 14, "74533862e": 14, "80527954e": 14, "86522058e": 14, "92516150e": 14, "98510242e": 14, "04504346e": 14, "10498413e": 14, "16492529e": 14, "22486621e": 14, "28480713e": 14, "34474829e": 14, "40468896e": 14, "46462988e": 14, "52457104e": 14, "58451196e": 14, "64445288e": 14, "70439380e": 14, "76433472e": 14, "82427563e": 14, "88421680e": 14, "94415771e": 14, "00409839e": 14, "06403955e": 14, "12398047e": 14, "18392139e": 14, "24386255e": 14, "30380322e": 14, "36374414e": 14, "42368530e": 14, "48362622e": 14, "54356714e": 14, "60350806e": 14, "66344897e": 14, "72338989e": 14, "78333105e": 14, "84327197e": 14, "90321265e": 14, "96315381e": 14, "02309473e": 14, "08303564e": 14, "14297656e": 14, "20291748e": 14, "26285889e": 14, "32279932e": 14, "38274023e": 14, "44268115e": 14, "50262207e": 14, "56256299e": 14, "62250439e": 14, "68244531e": 14, "74238623e": 14, "80232715e": 14, "86226807e": 14, "92220850e": 14, "98214990e": 14, "04209082e": 14, "10203174e": 14, "16197266e": 14, "22191357e": 14, "28185449e": 14, "34179590e": 14, "40173682e": 14, "46167773e": 14, "52161816e": 14, "58155908e": 14, "64150000e": 14, "70144141e": 14, "76138232e": 14, "82132324e": 14, "88126416e": 14, "94120508e": 14, "00114600e": 14, "06108740e": 14, "12102783e": 14, "18096875e": 14, "24090967e": 14, "30085059e": 14, "36079150e": 14, "42073291e": 14, "48067383e": 14, "54061475e": 14, "60055566e": 14, "66049658e": 14, "72043701e": 14, "78037842e": 14, "84031934e": 14, "90026025e": 14, "96020117e": 14, "02014209e": 14, "08008301e": 14, "14002441e": 14, "19996533e": 14, "25990625e": 14, "31984668e": 14, "37978760e": 14, "43972852e": 14, "49966992e": 14, "55961084e": 14, "61955176e": 14, "67949268e": 14, "73943359e": 14, "79937451e": 14, "85931543e": 14, "91925635e": 14, "97919727e": 14, "03913818e": 14, "09907910e": 14, "15902002e": 14, "21896094e": 14, "27890234e": 14, "33884277e": 14, "39878418e": 14, "45872559e": 14, "51866602e": 14, "57860742e": 14, "63854785e": 14, "69848926e": 14, "75842969e": 14, "81837012e": 14, "87831152e": 14, "93825195e": 14, "99819336e": 14, "05813379e": 14, "11807520e": 14, "17801660e": 14, "23795703e": 14, "29789844e": 14, "35783887e": 14, "41778027e": 14, "47772168e": 14, "53766211e": 14, "59760352e": 14, "65754395e": 14, "71748535e": 14, "77742578e": 14, "83736719e": 14, "89730859e": 14, "95724805e": 14, "00171895e": 14, "00771299e": 14, "01370713e": 14, "01970117e": 14, "02569531e": 14, "03168945e": 14, "03768350e": 14, "04367764e": 14, "04967168e": 14, "05566582e": 14, "06165996e": 14, "06765400e": 14, "07364814e": 14, "07964219e": 14, "08563633e": 14, "09163047e": 14, "09762451e": 14, "10361865e": 14, "10961270e": 14, "11560674e": 14, "12160078e": 14, "12759492e": 14, "13358906e": 14, "13958311e": 14, "14557725e": 14, "15157129e": 14, "15756543e": 14, "16355947e": 14, "16955361e": 14, "17554775e": 14, "18154180e": 14, "18753594e": 14, "19352998e": 14, "19952412e": 14, "20551826e": 14, "21151230e": 14, "21750645e": 14, "22350049e": 14, "22949453e": 14, "23548857e": 14, "24148271e": 14, "24747686e": 14, "25347090e": 14, "25946504e": 14, "26545908e": 14, "27145322e": 14, "27744736e": 14, "28344141e": 14, "28943555e": 14, "29542959e": 14, "30142373e": 14, "30741777e": 14, "31341191e": 14, "31940605e": 14, "32540010e": 14, "33139424e": 14, "33738828e": 14, "34338242e": 14, "34937646e": 14, "35537051e": 14, "36136465e": 14, "36735869e": 14, "37335283e": 14, "37934688e": 14, "38534102e": 14, "39133516e": 14, "39732920e": 14, "40332334e": 14, "40931738e": 14, "41531152e": 14, "42130566e": 14, "42729971e": 14, "43329385e": 14, "43928789e": 14, "44528203e": 14, "45127607e": 14, "45727021e": 14, "46326436e": 14, "46925830e": 14, "47525244e": 14, "48124648e": 14, "48724062e": 14, "49323477e": 14, "49922881e": 14, "50522295e": 14, "51121699e": 14, "51721113e": 14, "52320518e": 14, "52919932e": 14, "53519346e": 14, "54118750e": 14, "54718164e": 14, "55317568e": 14, "55916982e": 14, "56516396e": 14, "57115801e": 14, "57715215e": 14, "58314609e": 14, "58914023e": 14, "59513428e": 14, "60112842e": 14, "60712256e": 14, "61311660e": 14, "61911074e": 14, "62510479e": 14, "63109893e": 14, "63709307e": 14, "64308711e": 14, "64908125e": 14, "65507539e": 14, "66106934e": 14, "66706348e": 14, "67305762e": 14, "67905176e": 14, "68504570e": 14, "69103984e": 14, "69703398e": 14, "70302812e": 14, "70902207e": 14, "71501641e": 14, "72101035e": 14, "72700449e": 14, "73299844e": 14, "73899277e": 14, "74498672e": 14, "75098086e": 14, "75697500e": 14, "76296895e": 14, "76896309e": 14, "77495703e": 14, "78095137e": 14, "78694531e": 14, "79293945e": 14, "79893359e": 14, "80492773e": 14, "81092168e": 14, "81691602e": 14, "82290996e": 14, "82890410e": 14, "83489805e": 14, "84089238e": 14, "84688633e": 14, "85288047e": 14, "85887461e": 14, "86486875e": 14, "87086270e": 14, "87685684e": 14, "88285098e": 14, "88884492e": 14, "89483906e": 14, "90083320e": 14, "90682734e": 14, "91282129e": 14, "91881543e": 14, "92480957e": 14, "93080371e": 14, "93679766e": 14, "94279199e": 14, "94878594e": 14, "95478008e": 14, "96077402e": 14, "96676836e": 14, "97276230e": 14, "97875645e": 14, "98475059e": 14, "99074473e": 14, "99673867e": 14, "00273281e": 14, "00872695e": 14, "01472090e": 14, "02071504e": 14, "02670918e": 14, "03270332e": 14, "03869727e": 14, "04469160e": 14, "05068555e": 14, "05667969e": 14, "06267363e": 14, "06866797e": 14, "07466191e": 14, "08065605e": 14, "08665020e": 14, "09264434e": 14, "09863828e": 14, "10463262e": 14, "11062656e": 14, "11662051e": 14, "12261465e": 14, "12860879e": 14, "13460293e": 14, "14059688e": 14, "14659121e": 14, "15258516e": 14, "15857930e": 14, "16457324e": 14, "17056758e": 14, "17656152e": 14, "18255566e": 14, "18854980e": 14, "19454395e": 14, "20053789e": 14, "20653203e": 14, "21252617e": 14, "21852031e": 14, "22451426e": 14, "23050859e": 14, "23650254e": 14, "24249648e": 14, "24849062e": 14, "25448477e": 14, "26047891e": 14, "26647285e": 14, "27246719e": 14, "27846113e": 14, "28445527e": 14, "29044941e": 14, "29644355e": 14, "30243750e": 14, "30843164e": 14, "31442578e": 14, "32041992e": 14, "32641387e": 14, "33240820e": 14, "33840215e": 14, "34439629e": 14, "35039023e": 14, "35638438e": 14, "36237852e": 14, "36837246e": 14, "37436680e": 14, "38036074e": 14, "38635488e": 14, "39234883e": 14, "39834316e": 14, "40433711e": 14, "41033125e": 14, "41632539e": 14, "42231953e": 14, "42831348e": 14, "43430781e": 14, "44030176e": 14, "44629590e": 14, "45228984e": 14, "45828418e": 14, "46427812e": 14, "47027207e": 14, "47626641e": 14, "48226035e": 14, "48825449e": 14, "49424844e": 14, "50024277e": 14, "50623672e": 14, "51223086e": 14, "51822500e": 14, "52421914e": 14, "53021309e": 14, "53620723e": 14, "54220137e": 14, "54819551e": 14, "55418945e": 14, "56018379e": 14, "56617773e": 14, "57217188e": 14, "57816602e": 14, "58416016e": 14, "59015410e": 14, "59614805e": 14, "60214238e": 14, "60813633e": 14, "61413047e": 14, "62012461e": 14, "62611875e": 14, "63211270e": 14, "63810684e": 14, "64410098e": 14, "65009512e": 14, "65608906e": 14, "66208340e": 14, "66807734e": 14, "67407148e": 14, "68006543e": 14, "68605977e": 14, "69205371e": 14, "69804785e": 14, "70404199e": 14, "71003594e": 14, "71603008e": 14, "72202402e": 14, "72801836e": 14, "73401230e": 14, "74000645e": 14, "74600059e": 14, "75199473e": 14, "75798867e": 14, "76398301e": 14, "76997695e": 14, "77597109e": 14, "78196504e": 14, "78795938e": 14, "79395332e": 14, "79994746e": 14, "80594160e": 14, "81193574e": 14, "81792969e": 14, "82392363e": 14, "82991797e": 14, "83591191e": 14, "84190605e": 14, "84790020e": 14, "85389434e": 14, "85988828e": 14, "86588262e": 14, "87187656e": 14, "87787070e": 14, "88386465e": 14, "88985898e": 14, "89585293e": 14, "90184707e": 14, "90784121e": 14, "91383535e": 14, "91982930e": 14, "92582344e": 14, "93181758e": 14, "93781172e": 14, "94380566e": 14, "94979980e": 14, "95579395e": 14, "96178789e": 14, "96778203e": 14, "97377617e": 14, "97977031e": 14, "98576426e": 14, "99175859e": 14, "99775254e": 14, "00374668e": 14, "00974062e": 14, "01573496e": 14, "02172891e": 14, "02772305e": 14, "03371719e": 14, "03971133e": 14, "04570527e": 14, "05169961e": 14, "05769355e": 14, "06368750e": 14, "06968164e": 14, "07567578e": 14, "08166992e": 14, "08766387e": 14, "09365820e": 14, "09965215e": 14, "10564629e": 14, "11164023e": 14, "11763457e": 14, "12362852e": 14, "12962266e": 14, "13561680e": 14, "14161094e": 14, "14760488e": 14, "15359902e": 14, "15959316e": 14, "16558730e": 14, "17158125e": 14, "17757539e": 14, "18356953e": 14, "18956348e": 14, "19555781e": 14, "20155176e": 14, "20754590e": 14, "21353984e": 14, "21953418e": 14, "22552812e": 14, "23152227e": 14, "23751641e": 14, "24351055e": 14, "24950449e": 14, "25549863e": 14, "26149277e": 14, "26748691e": 14, "27348086e": 14, "27947500e": 14, "28546914e": 14, "29146328e": 14, "29745742e": 14, "30345117e": 14, "30944570e": 14, "31543945e": 14, "32143359e": 14, "32742773e": 14, "33342188e": 14, "33941602e": 14, "34541016e": 14, "35140430e": 14, "35739805e": 14, "36339258e": 14, "36938633e": 14, "37538047e": 14, "38137461e": 14, "38736875e": 14, "39336289e": 14, "39935703e": 14, "40535078e": 14, "41134531e": 14, "41733945e": 14, "42333320e": 14, "42932734e": 14, "43532148e": 14, "44131562e": 14, "44730977e": 14, "45330391e": 14, "45929766e": 14, "46529219e": 14, "47128594e": 14, "47728008e": 14, "48327422e": 14, "48926836e": 14, "49526250e": 14, "50125664e": 14, "50725039e": 14, "51324492e": 14, "51923906e": 14, "52523281e": 14, "53122695e": 14, "53722109e": 14, "54321523e": 14, "54920938e": 14, "55520312e": 14, "56119727e": 14, "56719180e": 14, "57318555e": 14, "57917969e": 14, "58517383e": 14, "59116797e": 14, "59716211e": 14, "60315625e": 14, "60915000e": 14, "61514453e": 14, "62113867e": 14, "62713242e": 14, "63312656e": 14, "63912109e": 14, "64511484e": 14, "65110898e": 14, "65710273e": 14, "66309688e": 14, "66909141e": 14, "67508516e": 14, "68107930e": 14, "68707344e": 14, "69306758e": 14, "69906172e": 14, "70505586e": 14, "71104961e": 14, "71704414e": 14, "72303828e": 14, "72903203e": 14, "73502617e": 14, "74102070e": 14, "74701445e": 14, "75300859e": 14, "75900234e": 14, "76499688e": 14, "77099102e": 14, "77698477e": 14, "78297891e": 14, "78897305e": 14, "79496719e": 14, "80096133e": 14, "80695547e": 14, "81294922e": 14, "81894375e": 14, "82493789e": 14, "83093164e": 14, "83692578e": 14, "84292031e": 14, "84891406e": 14, "85490820e": 14, "86090195e": 14, "86689648e": 14, "87289062e": 14, "87888438e": 14, "88487852e": 14, "89087266e": 14, "89686680e": 14, "90286094e": 14, "90885508e": 14, "91484883e": 14, "92084336e": 14, "92683750e": 14, "93283125e": 14, "93882539e": 14, "94481953e": 14, "95081367e": 14, "95680781e": 14, "96280156e": 14, "96879609e": 14, "97479023e": 14, "98078398e": 14, "98677812e": 14, "99277266e": 14, "99876641e": 14, "00476055e": 14, "01075469e": 14, "01674844e": 14, "02274297e": 14, "02873711e": 14, "init_gate_altitud": 14, "init_gate_longitude_latitud": 14, "0511017": 14, "99205": 14, "126": 14, "933": 14, "186": 14, "87395": 14, "ipykernel_24697": 14, "2466937760": 14, "runtimewarn": 14, "invalid": 14, "encount": 14, "sqrt": 14, "numer": 14, "ya": 14, "pi": 14, "partial_beam_blockag": 14, "cumulative_beam_blockag": 14, "plot_ppi": 14, "markers": 14, "markeredgecolor": 14, "markerfacecolor": 14, "pbb_sail_zoom": 14, "beam_block_flag": 14, "complete_block_thresh": 14, "cutoff": 14, "complet": 14, "anyth": 14, "complete_block_thr": 14, "consid": 14, "integ": 14, "depict": 14, "cbb_flag_dict": 14, "continu": 14, "pop": 14, "flag_radar": 14, "exampl": 15, "walk": 15, "though": 15, "ka": 15, "access": [15, 18], "kazr_fil": 15, "guckazrcfrcorgem1": 15, "c0": 15, "000001": 15, "glu": 15, "xprecip_fil": 15, "xprecipradar_guc_volume_20220314": [15, 16, 18], "kazr_radar": 15, "march": [15, 18], "xband_d": 15, "sail_snowfall_retrievals_march_14_2022": [15, 16, 18], "kazr_lowest_reflect": 15, "qc_reflect": 15, "snow_rate_from_d": [15, 16], "swe_ratio": [15, 16], "A": [15, 16, 18], "snow_field_nam": [15, 16], "snow_z": [15, 16], "reflectivity_field": [15, 16], "equivil": [15, 16], "similar": [15, 16], "estim": [15, 16], "Then": [15, 16], "later": [15, 16], "z_lin": [15, 16], "relat": [15, 16], "field_attr": [15, 16], "snowfall_r": [15, 16], "snowfall_rate_from_z": [15, 16], "zs_relationship_dict": [15, 16, 18], "wolf_and_snid": [15, 16, 18], "wsr_88d_high_plain": [15, 16, 18], "130": [15, 16, 18], "wsr_88d_intermountain_west": [15, 16, 18], "114": [15, 16, 18], "136": [15, 16, 18], "zs_field": [15, 18], "ds_resampl": [15, 18], "1t": [15, 18], "xband_ref": 15, "kaband_ref": 15, "kazr_xband_ref": 15, "wx": 15, "gothicwx": 15, "relationship_nam": [15, 16, 18], "a_coefficeint": [15, 16, 18], "b_coefficeint": [15, 16, 18], "relationship_equ": [15, 16, 18], "_accumul": [15, 18], "826": [15, 18], "kazr_snowfal": 15, "event": 16, "notat": 16, "expon": 16, "swe": 16, "ex": 16, "becom": 16, "solv": 16, "frac": 16, "snow_rat": 16, "templat": 16, "add_field_lik": 16, "differ": 16, "9586": 16, "986": 16, "9565": 16, "oak": 16, "ridg": 16, "orlcf": 16, "These": 16, "been": 16, "whole": 16, "000759": 16, "001839": 16, "002359": 16, "002919": 16, "003959": 16, "process_point": 16, "ds_all": 16, "extra": 16, "qpe": 16, "est_rain_rate_z": 16, "est_rainfall_r": 16, "matt": 16, "constant": 16, "he": 16, "coor_ad": 16, "ncolumn": 16, "duplic": 16, "uniqu": 16, "return_index": 16, "xarri": 16, "2600": 16, "177": 16, "dot_product": 16, "larger": 16, "9min": 16, "10min": 16, "describ": 16, "bukov\u010di\u0107": 16, "2018": 16, "intermountain": 16, "west": 16, "1992": 16, "410": 16, "240": 16, "boucher": 16, "wieler": 16, "1985": 16, "229": 16, "fujiyoshi": 16, "427": 16, "puhakka": 16, "1975": 16, "1050": 16, "sekhon": 16, "srivastava": 16, "1780": 16, "plug": 16, "min_valu": 16, "max_valu": 16, "ds_at_sit": [16, 18], "site_nam": [16, 18], "tight": [16, 17, 18], "get_xaxi": 16, "set_ticklabel": [16, 17, 18], "suptitl": 16, "cumsum": 16, "bulletin": 17, "american": 17, "societi": 17, "submiss": 17, "uscounti": [17, 18], "try": [17, 18], "plot_reflectivity_sail": 17, "out_directori": 17, "give": [17, 18], "radar_plot": [17, 18], "embelish": [17, 18], "colorbar_label": [17, 18], "z_": [17, 18], "cbar": [17, 18], "amf": [17, 18], "third_sweep": [17, 18], "time_in_label": [17, 18], "time_in_fil": 17, "b_": 17, "d_": 17, "cbar_elev": 17, "2_000": 17, "ppi_4deg_": 17, "bbox_inch": [17, 18], "202204_glu": 17, "xprecipradar_guc_volume_20220412": 17, "ppi_animation_april14": 17, "ppi_imag": 17, "imageio": 17, "v2": 17, "get_writ": 17, "april": 17, "ref": 17, "anim": 17, "6deg": 17, "writer": 17, "imag": [17, 18], "imread": 17, "append_data": 17, "030359": 18, "031440": 18, "031959": 18, "035200": 18, "0300": 18, "0x7ff2580d9ac0": 18, "regist": 18, "registr": 18, "page": 18, "start_dat": 18, "end_dat": 18, "laser_disdrometer_fil": 18, "startdat": 18, "enddat": 18, "laser_disdrometer_d": 18, "pluvio_fil": 18, "pluvio_d": 18, "disdrometer_precip_r": 18, "qc_precip_r": 18, "gauge_precip_r": 18, "disdrometer_precip_accum": 18, "1063": 18, "u6": 18, "1063coordin": 18, "int64100arrai": 18, "2405": 18, "task": 18, "ppi_4deg_march14_0300": 18, "ipykernel_187": 18, "1384334602": 18, "fixedformatt": 18, "fixedloc": 18, "sharei": 18, "dbz_plot": 18, "dsd_plot": 18, "relationship": 18, "intercomparison": 18, "comparison": 18, "gothic": 18, "0000": 18, "xtick": 18, "rotat": 18, "ytick": 18, "cbar_ax": 18, "715": 18, "165": 18, "cbar_ax2": 18, "get_tick": 18, "ppi_precip_estimate_pluvio": 18, "592557654": 18, "169": 18, "datetimetickformatt": 18, "apply_formatt": 18, "element": 18, "handl": 18, "formatt": 18, "hourmin": 18, "cnorm": 18, "log": 18, "clim": 18, "opt": 18, "hook": 18, "param": 18, "image01564": 18, "evenli": 18, "toler": 18, "001": 18, "irregularli": 18, "higher": 18, "image_rtol": 18, "rtol": 18, "constructor": 18, "properti": 18, "259": 18, "elementwis": 18, "rais": 18}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"figur": [0, 13], "sail": [0, 2, 4, 5, 6, 11, 13, 14], "cmac2": [0, 2], "0": [0, 2], "technic": 0, "document": 0, "process": [0, 2, 8, 18], "keyword": 0, "3": [0, 2], "radial": 0, "veloc": [0, 5], "textur": [0, 5], "14": [0, 2, 16], "march": [0, 2, 16], "2022": [0, 2, 16], "case": [0, 2, 12], "5": [0, 2], "gate": 0, "id": 0, "6": [0, 2], "raw": [0, 18], "de": 0, "alias": 0, "7": [0, 2], "lp": [0, 7], "techniqu": 0, "8": [0, 2], "uncorrect": 0, "correct": [0, 2], "reflect": [0, 15, 16, 17, 18], "9": 0, "differenti": [0, 5], "10": 0, "estim": [0, 3, 13, 18], "snowfal": [0, 13, 15, 16, 18], "rate": [0, 16, 18], "grab": 1, "cmac": [1, 13], "dod": 1, "via": 1, "act": [1, 2, 12], "i": [1, 2, 14], "o": [1, 13], "creat": [1, 3, 7], "encod": 1, "netcdf": 1, "output": 1, "modifi": 1, "datatyp": 1, "fill": 1, "valu": [1, 3, 15], "initi": 1, "write": 1, "file": [1, 2, 3, 5, 7, 8, 13, 16], "read": [1, 4, 5, 6, 13, 16, 17, 18], "It": 1, "back": 1, "test": 1, "extract": 2, "radar": [2, 10, 11, 16, 18], "column": [2, 3, 12], "In": 2, "situ": 2, "sensor": [2, 4, 17, 18], "radclss": [2, 13], "dataset": [2, 3, 6, 16], "current": 2, "list": [2, 3, 16], "support": [2, 10], "ground": [2, 3], "observ": 2, "import": [2, 3, 4, 5, 6, 12, 15, 16, 17, 18], "defin": [2, 8, 13, 16], "variabl": 2, "function": [2, 3, 8, 13, 15, 16, 17, 18], "locat": [2, 4, 8, 13, 17, 18], "site": [2, 4, 12, 13, 16], "avail": [2, 16], "csu": [2, 10, 16], "x": [2, 10, 13, 16], "band": [2, 10, 13, 16], "precipit": [2, 3, 13, 18], "moment": 2, "antenna": 2, "coordin": 2, "version": 2, "2": 2, "contrast": 2, "merg": [2, 8, 16], "previous": 2, "us": [2, 3, 6, 7, 12, 13], "have": 2, "been": 2, "beam": [2, 14], "blockag": [2, 14], "clutter": 2, "well": 2, "undergon": 2, "addit": 2, "z": [2, 15, 16], "": [2, 15, 16], "relationship": [2, 15, 16], "explor": [2, 5], "ar": 2, "appli": [2, 3, 5, 15, 16, 18], "dure": 2, "data": [2, 3, 4, 5, 6, 12, 15, 16, 17, 18], "therefor": 2, "all": [2, 8, 12], "we": 2, "need": [2, 14], "do": 2, "now": 2, "combin": [2, 4], "instrument": [2, 17, 18], "form": 2, "daili": 2, "timeseri": [2, 16, 18], "dictionari": 2, "remov": 2, "from": [2, 5], "each": [2, 3, 16], "datastream": 2, "1": 2, "add": [2, 4], "pluvio": [2, 12, 17, 18], "weigh": 2, "bucket": 2, "surfac": [2, 3, 11, 13], "meteorolog": 2, "station": [2, 15], "met": 2, "match": 2, "laser": [2, 18], "disdromet": [2, 18], "m1": [2, 13], "4": 2, "second": 2, "s2": 2, "wind": 2, "profil": 2, "high": 2, "power": 2, "note": 2, "rwp": 2, "miss": 2, "discoveri": 2, "alert": 2, "unavail": 2, "radiosond": 2, "There": 2, "could": 2, "multipl": 2, "launch": 2, "per": 2, "dai": 2, "success": 2, "meta": 2, "standard": 2, "save": 2, "grid": 3, "qc": [3, 18], "d": [3, 13], "quantit": 3, "squir": [3, 13], "retriev": [3, 16, 17], "load": [3, 12, 15], "py": 3, "art": 3, "plot": [3, 4, 6, 13, 15, 16, 17, 18], "nearest": 3, "neighbor": 3, "interpol": 3, "setup": [3, 15, 16, 17, 18], "helper": [3, 8, 13, 16, 17, 18], "configur": 3, "our": [3, 4, 12, 16], "grid_from_radar": 3, "visual": [3, 4, 5, 12], "determin": 3, "lowest": 3, "height": [3, 16], "thi": 3, "snow": [3, 12], "field": [3, 5, 7, 11, 13, 16], "closest": 3, "wrap": 3, "up": [3, 6], "loop": [3, 16], "through": [3, 6, 16], "workflow": 3, "splash": 4, "latitud": 4, "longitud": 4, "datafram": 4, "arm": [4, 10], "A": [4, 13], "closer": 4, "look": [4, 16], "amf": 4, "dual": 5, "pol": 5, "east": [5, 13], "river": [5, 13], "watersh": [5, 17, 18], "date": [5, 12], "calcul": [5, 14, 15, 18], "phase": 5, "specif": 5, "kdp": [5, 6, 7], "investig": 6, "phidp": 6, "convect": 6, "core": 6, "georefer": 6, "ppi": [6, 8, 17], "clean": 6, "azimuth": 6, "individu": 6, "sector": 6, "select": [6, 7, 12], "singl": [6, 8], "rai": [6, 13], "an": 6, "compar": [7, 12, 15], "dbz": 7, "zdr": 7, "maesaka": 7, "method": [7, 18], "gatefilt": 7, "comput": [7, 12], "giangrand": 7, "get": 7, "numpi": 7, "arrai": 7, "reason": 7, "rang": [7, 14], "glu": 8, "scan": 8, "within": 8, "desir": 8, "directori": 8, "try": [8, 13], "volum": 8, "verifi": 8, "start": 8, "dask": 8, "cluster": 8, "glue": 8, "join": 10, "sweep": 10, "atmospher": [11, 13], "integr": [11, 13], "laboratori": [11, 13], "analysi": 11, "analyz": 12, "entir": 12, "season": 12, "access": 12, "xarrai": 12, "accumul": [12, 13, 15], "gothic": [12, 15], "convert": 12, "unit": 12, "millimet": 12, "set": 12, "index": 12, "colorado": 12, "water": 12, "liquid": [12, 18], "equival": 12, "swe": 12, "present": 13, "am": 13, "annual": 13, "meet": 13, "denver": 13, "2023": 13, "experi": 13, "author": 13, "joe": 13, "brien": 13, "domain": 13, "tif": 13, "input": 13, "b": 13, "c": 13, "rhi": 13, "view": 13, "pyart": 13, "util": 13, "columnsect": 13, "find": 13, "over": 13, "extra": 13, "terrain": 13, "e": 13, "mosaic": 13, "f": 13, "xmovi": 13, "fix": 14, "offset": 14, "otherwis": 14, "cumul": 14, "wrong": 14, "pbb": 14, "cbb": 14, "see": 14, "diminish": 14, "angl": 14, "increas": 14, "check": 15, "calibr": 15, "download": [15, 18], "kazr": 15, "comparison": 15, "both": [15, 18], "differ": [15, 18], "total": [15, 16, 18], "weather": 15, "point": 16, "subset": [16, 18], "given": 16, "end": 16, "across": 16, "time": 16, "bam": 17, "paper": 17, "dem": 17, "descript": 18, "precip": 18, "rain": 18, "gaug": 18, "flag": 18, "interact": 18, "dsd": 18}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Figures for the SAIL CMAC2.0 Technical Document": [[0, "figures-for-the-sail-cmac2-0-technical-document"]], "Processing Keywords": [[0, "processing-keywords"]], "Figure 3: Radial Velocity Texture - 14 March 2022 case": [[0, "figure-3-radial-velocity-texture-14-march-2022-case"]], "Figure 5: Gate ID - 14 March 2022 case": [[0, "figure-5-gate-id-14-march-2022-case"]], "Figure 6: Raw and De-aliased Radial Velocities": [[0, "figure-6-raw-and-de-aliased-radial-velocities"]], "Figure 7: LP Technique": [[0, "figure-7-lp-technique"]], "Figure 8: Uncorrected and Corrected Reflectivity": [[0, "figure-8-uncorrected-and-corrected-reflectivity"]], "Figure 9: Uncorrected and Corrected Differential Reflectivity": [[0, "figure-9-uncorrected-and-corrected-differential-reflectivity"]], "Figure 10: Estimated Snowfall Rates": [[0, "figure-10-estimated-snowfall-rates"]], "Grab the CMAC DOD via ACT I/O": [[1, "grab-the-cmac-dod-via-act-i-o"]], "Create the Encodings for NetCDF output": [[1, "create-the-encodings-for-netcdf-output"]], "Modify the Datatype and Fill Values for the Initial DOD": [[1, "modify-the-datatype-and-fill-values-for-the-initial-dod"]], "Write the File / Read It Back in to Test": [[1, "write-the-file-read-it-back-in-to-test"]], "Extracted Radar Columns and In-Situ Sensors (RadCLss) Dataset": [[2, "extracted-radar-columns-and-in-situ-sensors-radclss-dataset"]], "14 March 2022 Case": [[2, "march-2022-case"]], "Current List of Supported In-Situ Ground Observations": [[2, "current-list-of-supported-in-situ-ground-observations"]], "Imports": [[2, "imports"], [3, "imports"], [4, "imports"], [5, "imports"], [6, "imports"], [12, "imports"], [15, "imports"], [16, "imports"], [17, "imports"], [18, "imports"]], "Define Processing Variables": [[2, "define-processing-variables"]], "Define Functions": [[2, "define-functions"]], "Define the Location of the SAIL Sites.": [[2, "define-the-location-of-the-sail-sites"]], "List the Available CSU X-Band Corrected Precipitation Radar Moments in Antenna Coordinates Version 2 (CMAC2.0) Files": [[2, "list-the-available-csu-x-band-corrected-precipitation-radar-moments-in-antenna-coordinates-version-2-cmac2-0-files"]], "In contrast to the Merged CSU X-Band files previously used, the CSU X-Band CMAC2.0 files have been corrected for beam blockage and clutter, as well as, undergone additional processing.": [[2, "in-contrast-to-the-merged-csu-x-band-files-previously-used-the-csu-x-band-cmac2-0-files-have-been-corrected-for-beam-blockage-and-clutter-as-well-as-undergone-additional-processing"]], "Z-S Relationships previously explored are applied during the CMAC2.0 processing of the CSU X-Band data. Therefore, all we need to do now is extract the radar columns and combine with ground instruments.": [[2, "z-s-relationships-previously-explored-are-applied-during-the-cmac2-0-processing-of-the-csu-x-band-data-therefore-all-we-need-to-do-now-is-extract-the-radar-columns-and-combine-with-ground-instruments"]], "Combine all Extracted Radar Columns to Form Daily Timeseries": [[2, "combine-all-extracted-radar-columns-to-form-daily-timeseries"]], "Define Dictionary of Variables to Remove from Each Datastream": [[2, "define-dictionary-of-variables-to-remove-from-each-datastream"]], "1) Add in the Pluvio Weighing Bucket Data": [[2, "add-in-the-pluvio-weighing-bucket-data"]], "2) Add the Surface Meteorological Station (MET) to the Matched Dataset": [[2, "add-the-surface-meteorological-station-met-to-the-matched-dataset"]], "3) Add the Laser Disdrometer to the Matched Dataset - M1 Sites": [[2, "add-the-laser-disdrometer-to-the-matched-dataset-m1-sites"]], "4) Add Second Laser Disdrometer - S2 Site": [[2, "add-second-laser-disdrometer-s2-site"]], "5) Add the Radar Wind Profiler (High Powered)": [[2, "add-the-radar-wind-profiler-high-powered"]], "NOTE: RWP Data are missing for March 14, 2022; ACT Discovery will alert if data are unavailable": [[2, "note-rwp-data-are-missing-for-march-14-2022-act-discovery-will-alert-if-data-are-unavailable"]], "6) Add the Radiosonde Data": [[2, "add-the-radiosonde-data"]], "Note: There could be multiple launches per day and not all are successful.": [[2, "note-there-could-be-multiple-launches-per-day-and-not-all-are-successful"]], "7) Define the Meta Data Standards for Matched Dataset": [[2, "define-the-meta-data-standards-for-matched-dataset"]], "8) Save the DataSet": [[2, "save-the-dataset"]], "Grid QC\u2019d Dataset - Surface QUantitatIve pRecipitation Estimation (SQUIRE)": [[3, "grid-qcd-dataset-surface-quantitative-precipitation-estimation-squire"]], "Retrieve List of Files (QC\u2019d Data)": [[3, "retrieve-list-of-files-qcd-data"]], "Load Data into Py-ART and Plot": [[3, "load-data-into-py-art-and-plot"]], "Grid Using Nearest Neighbor Interpolation": [[3, "grid-using-nearest-neighbor-interpolation"]], "Setup a Helper Function and Configure our Grid": [[3, "setup-a-helper-function-and-configure-our-grid"]], "Create our Grid using grid_from_radars": [[3, "create-our-grid-using-grid-from-radars"]], "Visualize our Grid": [[3, "visualize-our-grid"]], "Determine the Lowest Height in Each Column": [[3, "determine-the-lowest-height-in-each-column"]], "Apply this to our snow fields": [[3, "apply-this-to-our-snow-fields"]], "Visualize our closest-to-ground snow value": [[3, "visualize-our-closest-to-ground-snow-value"]], "Wrap this Up into a Function": [[3, "wrap-this-up-into-a-function"]], "Loop Through and Apply this Workflow": [[3, "loop-through-and-apply-this-workflow"]], "Plot the SAIL and SPLASH Locations": [[4, "plot-the-sail-and-splash-locations"]], "Read in the Data": [[4, "read-in-the-data"], [18, "read-in-the-data"]], "Add Latitudes/Longitudes to the Dataframes": [[4, "add-latitudes-longitudes-to-the-dataframes"]], "Visualize our Data": [[4, "visualize-our-data"], [12, "visualize-our-data"]], "SPLASH Sensor Locations": [[4, "splash-sensor-locations"]], "ARM Sensor Sites": [[4, "arm-sensor-sites"]], "A Closer Look at the AMF Site": [[4, "a-closer-look-at-the-amf-site"]], "Combine our Plots": [[4, "combine-our-plots"]], "Explore Dual-Pol Data from SAIL": [[5, "explore-dual-pol-data-from-sail"]], "Read the East River Watershed File": [[5, "read-the-east-river-watershed-file"]], "Read in a date": [[5, "read-in-a-date"]], "Calculate Velocity Texture": [[5, "calculate-velocity-texture"]], "Visualize the velocity field": [[5, "visualize-the-velocity-field"]], "Apply Differential Phase Texture": [[5, "apply-differential-phase-texture"]], "Calculate Specific Differential Phase (KDP)": [[5, "calculate-specific-differential-phase-kdp"]], "Investigate KDP and PhiDP through a Convective Core near SAIL": [[6, "investigate-kdp-and-phidp-through-a-convective-core-near-sail"]], "Read the Data": [[6, "read-the-data"]], "Georeference the Dataset": [[6, "georeference-the-dataset"]], "Plot PPIs": [[6, "plot-ppis"]], "Clean up the Azimuths": [[6, "clean-up-the-azimuths"]], "Plot individual sectors": [[6, "plot-individual-sectors"]], "Select a single ray, using an azimuth": [[6, "select-a-single-ray-using-an-azimuth"]], "Comparing DBZ, ZDR and KDP (LP and Maesaka) methods.": [[7, "comparing-dbz-zdr-and-kdp-lp-and-maesaka-methods"]], "Select files": [[7, "select-files"]], "Create gatefilter": [[7, "create-gatefilter"]], "Compute KDP using Maesaka method": [[7, "compute-kdp-using-maesaka-method"]], "Compute KDP using Giangrande LP method": [[7, "compute-kdp-using-giangrande-lp-method"]], "Get the fields in Numpy array": [[7, "get-the-fields-in-numpy-array"]], "Select reasonable DBZ range": [[7, "select-reasonable-dbz-range"]], "Gluing and Merging": [[8, "gluing-and-merging"]], "Define Helper Functions": [[8, "define-helper-functions"], [13, "define-helper-functions"]], "Locate all the PPI scans within the Desired Directories": [[8, "locate-all-the-ppi-scans-within-the-desired-directories"]], "Try Single Volume to Verify Process": [[8, "try-single-volume-to-verify-process"]], "Start a Dask Cluster": [[8, "start-a-dask-cluster"]], "Glue the Files": [[8, "glue-the-files"]], "Join sweeps of the ARM Supported CSU X-Band Radar": [[10, "join-sweeps-of-the-arm-supported-csu-x-band-radar"]], "Surface Atmosphere Integrated Field Laboratory (SAIL) Radar Analysis": [[11, "surface-atmosphere-integrated-field-laboratory-sail-radar-analysis"]], "Analyze the Pluvio Data - Entire Season + Case Selection": [[12, "analyze-the-pluvio-data-entire-season-case-selection"]], "Data Access": [[12, "data-access"]], "Load Data into Xarray and Compute Accumulation Using ACT": [[12, "load-data-into-xarray-and-compute-accumulation-using-act"]], "Entire Season": [[12, "entire-season"]], "Compare with the Gothic Site": [[12, "compare-with-the-gothic-site"]], "Convert all units to millimeters and set the date column as the index": [[12, "convert-all-units-to-millimeters-and-set-the-date-column-as-the-index"]], "Visualize the Gothic Colorado Snow Accumulation and Snow Water Liquid Equivalent (SWE)": [[12, "visualize-the-gothic-colorado-snow-accumulation-and-snow-water-liquid-equivalent-swe"]], "Figures for Presentation in AMS Annual Meeting in Denver 2023": [[13, "figures-for-presentation-in-ams-annual-meeting-in-denver-2023"]], "X-Band Precipitation Estimates for the Surface Atmosphere Integrated Field Laboratory (SAIL) Field Experiment": [[13, "x-band-precipitation-estimates-for-the-surface-atmosphere-integrated-field-laboratory-sail-field-experiment"]], "Presenting Author: Joe O\u2019Brien": [[13, "presenting-author-joe-obrien"]], "Read in the East River Domain file": [[13, "read-in-the-east-river-domain-file"]], "Read the TIF file": [[13, "read-the-tif-file"]], "A) RadCLss Input and Snowfall Accumulation": [[13, "a-radclss-input-and-snowfall-accumulation"]], "B) RadCLss Location Figure": [[13, "b-radclss-location-figure"]], "C) RadCLss RHI View": [[13, "c-radclss-rhi-view"]], "Use pyart.util.columnsect functions (used in RadClSS) to find rays over M1 site.": [[13, "use-pyart-util-columnsect-functions-used-in-radclss-to-find-rays-over-m1-site"]], "D) Extra RHI View with terrain plot": [[13, "d-extra-rhi-view-with-terrain-plot"]], "E) SAIL CMAC/RadCLss Mosaic": [[13, "e-sail-cmac-radclss-mosaic"]], "F) SAIL SQUIRE/RadCLss Mosaic": [[13, "f-sail-squire-radclss-mosaic"]], "Try XMovie": [[13, "try-xmovie"]], "Beam Blockage for SAIL": [[14, "beam-blockage-for-sail"]], "Needed to fix range offset otherwise cumulative beam blockage is wrong": [[14, "needed-to-fix-range-offset-otherwise-cumulative-beam-blockage-is-wrong"]], "Calculate PBB and CBB": [[14, "calculate-pbb-and-cbb"]], "See the blockage diminish as fixed angle increases": [[14, "see-the-blockage-diminish-as-fixed-angle-increases"]], "Check Reflectivity Calibration": [[15, "check-reflectivity-calibration"]], "Download the KAZR data": [[15, "download-the-kazr-data"]], "Load in the Data": [[15, "load-in-the-data"]], "Setup Functions to Calculate Snowfall": [[15, "setup-functions-to-calculate-snowfall"]], "Apply the Z(S) relationships": [[15, "apply-the-z-s-relationships"]], "Calculate Accumulated Snowfall": [[15, "calculate-accumulated-snowfall"]], "Plot a Reflectivity Comparison": [[15, "plot-a-reflectivity-comparison"]], "Plot Both Reflectivity Values": [[15, "plot-both-reflectivity-values"]], "Plot the Difference in Reflectivity": [[15, "plot-the-difference-in-reflectivity"]], "Compare Snowfall Totals with Gothic Weather Station": [[15, "compare-snowfall-totals-with-gothic-weather-station"]], "Snowfall Retrievals CSU X-Band Radar March 14, 2022": [[16, "snowfall-retrievals-csu-x-band-radar-march-14-2022"]], "Setup Helper Functions": [[16, "setup-helper-functions"], [17, "setup-helper-functions"], [18, "setup-helper-functions"]], "Define the Point Retrievals": [[16, "define-the-point-retrievals"]], "List the Available Files": [[16, "list-the-available-files"]], "Read Data + Subset at Points": [[16, "read-data-subset-at-points"]], "Loop through and subset the radar fields at the given points": [[16, "loop-through-and-subset-the-radar-fields-at-the-given-points"]], "Merge the datasets at the end across time": [[16, "merge-the-datasets-at-the-end-across-time"]], "Apply our Z-S Relationships": [[16, "apply-our-z-s-relationships"]], "Plot Reflectivity at Each Site": [[16, "plot-reflectivity-at-each-site"]], "Define our Z-S Relationships": [[16, "define-our-z-s-relationships"]], "Apply our Z(S) Relationships to the Dataset": [[16, "apply-our-z-s-relationships-to-the-dataset"]], "Reflectivity with Height at Each Site": [[16, "reflectivity-with-height-at-each-site"]], "Look at a Timeseries of Snowfall Rates and Totals": [[16, "look-at-a-timeseries-of-snowfall-rates-and-totals"]], "Plot PPI data for BAMS Paper": [[17, "plot-ppi-data-for-bams-paper"]], "Read the Watershed and Instrumentation Locations": [[17, "read-the-watershed-and-instrumentation-locations"], [18, "read-the-watershed-and-instrumentation-locations"]], "Retrieve the DEM Data": [[17, "retrieve-the-dem-data"]], "Plot the Reflectivity with the Pluvio Sensor and Watershed Locations": [[17, "plot-the-reflectivity-with-the-pluvio-sensor-and-watershed-locations"], [18, "plot-the-reflectivity-with-the-pluvio-sensor-and-watershed-locations"]], "Plot a Description of the Liquid Precip Estimation Method": [[18, "plot-a-description-of-the-liquid-precip-estimation-method"]], "Read in the Raw Radar Data": [[18, "read-in-the-raw-radar-data"]], "Read in the Processed Radar Data Subset for the Different Instruments": [[18, "read-in-the-processed-radar-data-subset-for-the-different-instruments"]], "Download + Read Rain Gauge and Pluvio and Laser Disdrometer Data": [[18, "download-read-rain-gauge-and-pluvio-and-laser-disdrometer-data"]], "Apply QC Flags to both precip rates": [[18, "apply-qc-flags-to-both-precip-rates"]], "Calculate the Total Precipitation Rates": [[18, "calculate-the-total-precipitation-rates"]], "Plot a Timeseries of Reflectivity and Snowfall at the Pluvio Sensor": [[18, "plot-a-timeseries-of-reflectivity-and-snowfall-at-the-pluvio-sensor"]], "Interactive DSD Plot": [[18, "interactive-dsd-plot"]]}, "indexentries": {}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"1) Add in the Pluvio Weighing Bucket Data": [[2, "add-in-the-pluvio-weighing-bucket-data"]], "14 March 2022 Case": [[2, "march-2022-case"]], "2) Add the Surface Meteorological Station (MET) to the Matched Dataset": [[2, "add-the-surface-meteorological-station-met-to-the-matched-dataset"]], "3) Add the Laser Disdrometer to the Matched Dataset - M1 Sites": [[2, "add-the-laser-disdrometer-to-the-matched-dataset-m1-sites"]], "4) Add Second Laser Disdrometer - S2 Site": [[2, "add-second-laser-disdrometer-s2-site"]], "5) Add the Radar Wind Profiler (High Powered)": [[2, "add-the-radar-wind-profiler-high-powered"]], "6) Add the Radiosonde Data": [[2, "add-the-radiosonde-data"]], "7) Define the Meta Data Standards for Matched Dataset": [[2, "define-the-meta-data-standards-for-matched-dataset"]], "8) Save the DataSet": [[2, "save-the-dataset"]], "A Closer Look at the AMF Site": [[4, "a-closer-look-at-the-amf-site"]], "A) RadCLss Input and Snowfall Accumulation": [[13, "a-radclss-input-and-snowfall-accumulation"]], "ARM Sensor Sites": [[4, "arm-sensor-sites"]], "Add Latitudes/Longitudes to the Dataframes": [[4, "add-latitudes-longitudes-to-the-dataframes"]], "Analyze the Pluvio Data - Entire Season + Case Selection": [[12, "analyze-the-pluvio-data-entire-season-case-selection"]], "Apply Differential Phase Texture": [[5, "apply-differential-phase-texture"]], "Apply QC Flags to both precip rates": [[18, "apply-qc-flags-to-both-precip-rates"]], "Apply our Z(S) Relationships to the Dataset": [[16, "apply-our-z-s-relationships-to-the-dataset"]], "Apply our Z-S Relationships": [[16, "apply-our-z-s-relationships"]], "Apply the Z(S) relationships": [[15, "apply-the-z-s-relationships"]], "Apply this to our snow fields": [[3, "apply-this-to-our-snow-fields"]], "B) RadCLss Location Figure": [[13, "b-radclss-location-figure"]], "Beam Blockage for SAIL": [[14, "beam-blockage-for-sail"]], "C) RadCLss RHI View": [[13, "c-radclss-rhi-view"]], "Calculate Accumulated Snowfall": [[15, "calculate-accumulated-snowfall"]], "Calculate PBB and CBB": [[14, "calculate-pbb-and-cbb"]], "Calculate Specific Differential Phase (KDP)": [[5, "calculate-specific-differential-phase-kdp"]], "Calculate Velocity Texture": [[5, "calculate-velocity-texture"]], "Calculate the Total Precipitation Rates": [[18, "calculate-the-total-precipitation-rates"]], "Check Reflectivity Calibration": [[15, "check-reflectivity-calibration"]], "Clean up the Azimuths": [[6, "clean-up-the-azimuths"]], "Combine all Extracted Radar Columns to Form Daily Timeseries": [[2, "combine-all-extracted-radar-columns-to-form-daily-timeseries"]], "Combine our Plots": [[4, "combine-our-plots"]], "Compare Snowfall Totals with Gothic Weather Station": [[15, "compare-snowfall-totals-with-gothic-weather-station"]], "Compare with the Gothic Site": [[12, "compare-with-the-gothic-site"]], "Comparing DBZ, ZDR and KDP (LP and Maesaka) methods.": [[7, "comparing-dbz-zdr-and-kdp-lp-and-maesaka-methods"]], "Compute KDP using Maesaka method": [[7, "compute-kdp-using-maesaka-method"]], "Compute KDP using Giangrande LP method": [[7, "compute-kdp-using-giangrande-lp-method"]], "Convert all units to millimeters and set the date column as the index": [[12, "convert-all-units-to-millimeters-and-set-the-date-column-as-the-index"]], "Create gatefilter": [[7, "create-gatefilter"]], "Create our Grid using grid_from_radars": [[3, "create-our-grid-using-grid-from-radars"]], "Create the Encodings for NetCDF output": [[1, "create-the-encodings-for-netcdf-output"]], "Current List of Supported In-Situ Ground Observations": [[2, "current-list-of-supported-in-situ-ground-observations"]], "D) Extra RHI View with terrain plot": [[13, "d-extra-rhi-view-with-terrain-plot"]], "Data Access": [[12, "data-access"]], "Define Dictionary of Variables to Remove from Each Datastream": [[2, "define-dictionary-of-variables-to-remove-from-each-datastream"]], "Define Functions": [[2, "define-functions"]], "Define Helper Functions": [[8, "define-helper-functions"], [13, "define-helper-functions"]], "Define Processing Variables": [[2, "define-processing-variables"]], "Define our Z-S Relationships": [[16, "define-our-z-s-relationships"]], "Define the Location of the SAIL Sites.": [[2, "define-the-location-of-the-sail-sites"]], "Define the Point Retrievals": [[16, "define-the-point-retrievals"]], "Determine the Lowest Height in Each Column": [[3, "determine-the-lowest-height-in-each-column"]], "Download + Read Rain Gauge and Pluvio and Laser Disdrometer Data": [[18, "download-read-rain-gauge-and-pluvio-and-laser-disdrometer-data"]], "Download the KAZR data": [[15, "download-the-kazr-data"]], "E) SAIL CMAC/RadCLss Mosaic": [[13, "e-sail-cmac-radclss-mosaic"]], "Entire Season": [[12, "entire-season"]], "Explore Dual-Pol Data from SAIL": [[5, "explore-dual-pol-data-from-sail"]], "Extracted Radar Columns and In-Situ Sensors (RadCLss) Dataset": [[2, "extracted-radar-columns-and-in-situ-sensors-radclss-dataset"]], "F) SAIL SQUIRE/RadCLss Mosaic": [[13, "f-sail-squire-radclss-mosaic"]], "Figure 10: Estimated Snowfall Rates": [[0, "figure-10-estimated-snowfall-rates"]], "Figure 3: Radial Velocity Texture - 14 March 2022 case": [[0, "figure-3-radial-velocity-texture-14-march-2022-case"]], "Figure 5: Gate ID - 14 March 2022 case": [[0, "figure-5-gate-id-14-march-2022-case"]], "Figure 6: Raw and De-aliased Radial Velocities": [[0, "figure-6-raw-and-de-aliased-radial-velocities"]], "Figure 7: LP Technique": [[0, "figure-7-lp-technique"]], "Figure 8: Uncorrected and Corrected Reflectivity": [[0, "figure-8-uncorrected-and-corrected-reflectivity"]], "Figure 9: Uncorrected and Corrected Differential Reflectivity": [[0, "figure-9-uncorrected-and-corrected-differential-reflectivity"]], "Figures for Presentation in AMS Annual Meeting in Denver 2023": [[13, "figures-for-presentation-in-ams-annual-meeting-in-denver-2023"]], "Figures for the SAIL CMAC2.0 Technical Document": [[0, "figures-for-the-sail-cmac2-0-technical-document"]], "Georeference the Dataset": [[6, "georeference-the-dataset"]], "Get the fields in Numpy array": [[7, "get-the-fields-in-numpy-array"]], "Glue the Files": [[8, "glue-the-files"]], "Gluing and Merging": [[8, "gluing-and-merging"]], "Grab the CMAC DOD via ACT I/O": [[1, "grab-the-cmac-dod-via-act-i-o"]], "Grid QC\u2019d Dataset - Surface QUantitatIve pRecipitation Estimation (SQUIRE)": [[3, "grid-qcd-dataset-surface-quantitative-precipitation-estimation-squire"]], "Grid Using Nearest Neighbor Interpolation": [[3, "grid-using-nearest-neighbor-interpolation"]], "Imports": [[2, "imports"], [3, "imports"], [4, "imports"], [5, "imports"], [6, "imports"], [12, "imports"], [15, "imports"], [16, "imports"], [17, "imports"], [18, "imports"]], "In contrast to the Merged CSU X-Band files previously used, the CSU X-Band CMAC2.0 files have been corrected for beam blockage and clutter, as well as, undergone additional processing.": [[2, "in-contrast-to-the-merged-csu-x-band-files-previously-used-the-csu-x-band-cmac2-0-files-have-been-corrected-for-beam-blockage-and-clutter-as-well-as-undergone-additional-processing"]], "Interactive DSD Plot": [[18, "interactive-dsd-plot"]], "Investigate KDP and PhiDP through a Convective Core near SAIL": [[6, "investigate-kdp-and-phidp-through-a-convective-core-near-sail"]], "Join sweeps of the ARM Supported CSU X-Band Radar": [[10, "join-sweeps-of-the-arm-supported-csu-x-band-radar"]], "List the Available CSU X-Band Corrected Precipitation Radar Moments in Antenna Coordinates Version 2 (CMAC2.0) Files": [[2, "list-the-available-csu-x-band-corrected-precipitation-radar-moments-in-antenna-coordinates-version-2-cmac2-0-files"]], "List the Available Files": [[16, "list-the-available-files"]], "Load Data into Py-ART and Plot": [[3, "load-data-into-py-art-and-plot"]], "Load Data into Xarray and Compute Accumulation Using ACT": [[12, "load-data-into-xarray-and-compute-accumulation-using-act"]], "Load in the Data": [[15, "load-in-the-data"]], "Locate all the PPI scans within the Desired Directories": [[8, "locate-all-the-ppi-scans-within-the-desired-directories"]], "Look at a Timeseries of Snowfall Rates and Totals": [[16, "look-at-a-timeseries-of-snowfall-rates-and-totals"]], "Loop Through and Apply this Workflow": [[3, "loop-through-and-apply-this-workflow"]], "Loop through and subset the radar fields at the given points": [[16, "loop-through-and-subset-the-radar-fields-at-the-given-points"]], "Merge the datasets at the end across time": [[16, "merge-the-datasets-at-the-end-across-time"]], "Modify the Datatype and Fill Values for the Initial DOD": [[1, "modify-the-datatype-and-fill-values-for-the-initial-dod"]], "NOTE: RWP Data are missing for March 14, 2022; ACT Discovery will alert if data are unavailable": [[2, "note-rwp-data-are-missing-for-march-14-2022-act-discovery-will-alert-if-data-are-unavailable"]], "Needed to fix range offset otherwise cumulative beam blockage is wrong": [[14, "needed-to-fix-range-offset-otherwise-cumulative-beam-blockage-is-wrong"]], "Note: There could be multiple launches per day and not all are successful.": [[2, "note-there-could-be-multiple-launches-per-day-and-not-all-are-successful"]], "Plot Both Reflectivity Values": [[15, "plot-both-reflectivity-values"]], "Plot PPI data for BAMS Paper": [[17, "plot-ppi-data-for-bams-paper"]], "Plot PPIs": [[6, "plot-ppis"]], "Plot Reflectivity at Each Site": [[16, "plot-reflectivity-at-each-site"]], "Plot a Description of the Liquid Precip Estimation Method": [[18, "plot-a-description-of-the-liquid-precip-estimation-method"]], "Plot a Reflectivity Comparison": [[15, "plot-a-reflectivity-comparison"]], "Plot a Timeseries of Reflectivity and Snowfall at the Pluvio Sensor": [[18, "plot-a-timeseries-of-reflectivity-and-snowfall-at-the-pluvio-sensor"]], "Plot individual sectors": [[6, "plot-individual-sectors"]], "Plot the Difference in Reflectivity": [[15, "plot-the-difference-in-reflectivity"]], "Plot the Reflectivity with the Pluvio Sensor and Watershed Locations": [[17, "plot-the-reflectivity-with-the-pluvio-sensor-and-watershed-locations"], [18, "plot-the-reflectivity-with-the-pluvio-sensor-and-watershed-locations"]], "Plot the SAIL and SPLASH Locations": [[4, "plot-the-sail-and-splash-locations"]], "Presenting Author: Joe O\u2019Brien": [[13, "presenting-author-joe-obrien"]], "Processing Keywords": [[0, "processing-keywords"]], "Read Data + Subset at Points": [[16, "read-data-subset-at-points"]], "Read in a date": [[5, "read-in-a-date"]], "Read in the Data": [[4, "read-in-the-data"], [18, "read-in-the-data"]], "Read in the East River Domain file": [[13, "read-in-the-east-river-domain-file"]], "Read in the Processed Radar Data Subset for the Different Instruments": [[18, "read-in-the-processed-radar-data-subset-for-the-different-instruments"]], "Read in the Raw Radar Data": [[18, "read-in-the-raw-radar-data"]], "Read the Data": [[6, "read-the-data"]], "Read the East River Watershed File": [[5, "read-the-east-river-watershed-file"]], "Read the TIF file": [[13, "read-the-tif-file"]], "Read the Watershed and Instrumentation Locations": [[17, "read-the-watershed-and-instrumentation-locations"], [18, "read-the-watershed-and-instrumentation-locations"]], "Reflectivity with Height at Each Site": [[16, "reflectivity-with-height-at-each-site"]], "Retrieve List of Files (QC\u2019d Data)": [[3, "retrieve-list-of-files-qcd-data"]], "Retrieve the DEM Data": [[17, "retrieve-the-dem-data"]], "SPLASH Sensor Locations": [[4, "splash-sensor-locations"]], "See the blockage diminish as fixed angle increases": [[14, "see-the-blockage-diminish-as-fixed-angle-increases"]], "Select a single ray, using an azimuth": [[6, "select-a-single-ray-using-an-azimuth"]], "Select files": [[7, "select-files"]], "Select reasonable DBZ range": [[7, "select-reasonable-dbz-range"]], "Setup Functions to Calculate Snowfall": [[15, "setup-functions-to-calculate-snowfall"]], "Setup Helper Functions": [[16, "setup-helper-functions"], [17, "setup-helper-functions"], [18, "setup-helper-functions"]], "Setup a Helper Function and Configure our Grid": [[3, "setup-a-helper-function-and-configure-our-grid"]], "Snowfall Retrievals CSU X-Band Radar March 14, 2022": [[16, "snowfall-retrievals-csu-x-band-radar-march-14-2022"]], "Start a Dask Cluster": [[8, "start-a-dask-cluster"]], "Surface Atmosphere Integrated Field Laboratory (SAIL) Radar Analysis": [[11, "surface-atmosphere-integrated-field-laboratory-sail-radar-analysis"]], "Try Single Volume to Verify Process": [[8, "try-single-volume-to-verify-process"]], "Try XMovie": [[13, "try-xmovie"]], "Use pyart.util.columnsect functions (used in RadClSS) to find rays over M1 site.": [[13, "use-pyart-util-columnsect-functions-used-in-radclss-to-find-rays-over-m1-site"]], "Visualize our Data": [[4, "visualize-our-data"], [12, "visualize-our-data"]], "Visualize our Grid": [[3, "visualize-our-grid"]], "Visualize our closest-to-ground snow value": [[3, "visualize-our-closest-to-ground-snow-value"]], "Visualize the Gothic Colorado Snow Accumulation and Snow Water Liquid Equivalent (SWE)": [[12, "visualize-the-gothic-colorado-snow-accumulation-and-snow-water-liquid-equivalent-swe"]], "Visualize the velocity field": [[5, "visualize-the-velocity-field"]], "Wrap this Up into a Function": [[3, "wrap-this-up-into-a-function"]], "Write the File / Read It Back in to Test": [[1, "write-the-file-read-it-back-in-to-test"]], "X-Band Precipitation Estimates for the Surface Atmosphere Integrated Field Laboratory (SAIL) Field Experiment": [[13, "x-band-precipitation-estimates-for-the-surface-atmosphere-integrated-field-laboratory-sail-field-experiment"]], "Z-S Relationships previously explored are applied during the CMAC2.0 processing of the CSU X-Band data. Therefore, all we need to do now is extract the radar columns and combine with ground instruments.": [[2, "z-s-relationships-previously-explored-are-applied-during-the-cmac2-0-processing-of-the-csu-x-band-data-therefore-all-we-need-to-do-now-is-extract-the-radar-columns-and-combine-with-ground-instruments"]]}, "docnames": ["VAP/cmac2_technical_document", "VAP/cmac_dod_creation", "VAP/matched_dataset_march_14_2022", "VAP/nearest-neighbor-interpolation", "domain-exploration/plot-sail-splash-sites", "dual-pol/dual-pol-exploration", "dual-pol/kdp-xradar-exploration", "dual-pol/kdp_computation_selftest", "gluing_and_inventory/concatinate_file", "gluing_and_inventory/sail_inventory", "join-radar", "overview", "paper/initial-data-exploration", "presentations/AMS_AnnualConference_Denver2023", "qc/sail_beam_blockage", "radar-precip/compare-with-kazr", "radar-precip/csu-xband-snowfall-march-14-2022", "radar-precip/plot-ams-figures", "radar-precip/plot-method-description-figure"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1}, "filenames": ["VAP/cmac2_technical_document.ipynb", "VAP/cmac_dod_creation.ipynb", "VAP/matched_dataset_march_14_2022.ipynb", "VAP/nearest-neighbor-interpolation.ipynb", "domain-exploration/plot-sail-splash-sites.ipynb", "dual-pol/dual-pol-exploration.ipynb", "dual-pol/kdp-xradar-exploration.ipynb", "dual-pol/kdp_computation_selftest.ipynb", "gluing_and_inventory/concatinate_file.ipynb", "gluing_and_inventory/sail_inventory.ipynb", "join-radar.ipynb", "overview.ipynb", "paper/initial-data-exploration.ipynb", "presentations/AMS_AnnualConference_Denver2023.ipynb", "qc/sail_beam_blockage.ipynb", "radar-precip/compare-with-kazr.ipynb", "radar-precip/csu-xband-snowfall-march-14-2022.ipynb", "radar-precip/plot-ams-figures.ipynb", "radar-precip/plot-method-description-figure.ipynb"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 1, 3, 4, 6, 7, 8, 9, 13, 14, 17, 18], "0": [1, 3, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "00": [0, 1, 2, 5, 7, 8, 13, 14, 17, 18], "0000": 18, "000000": [2, 12, 13, 18], "000000000": [0, 1, 2, 13, 18], "00000000e": 2, "000001": 15, "000124": 13, "000239": [2, 13, 16], "00033004": 2, "000759": 16, "00080000e": 2, "001": 18, "00114600e": 14, "001319": [2, 13, 16], "00171895e": 14, "001839": 16, "002359": 16, "00273281e": 14, "002919": 16, "003439": [2, 13, 16], "00374668e": 14, "00385333e": 2, "003959": 16, "00409839e": 14, "004519": [2, 13, 16], "00476055e": 14, "004845": 8, "004845_278032_22_1_ppi": 8, "004916": 8, "004916_278034_22_2_ppi": 8, "004949": 8, "004949_278035_22_4_ppi": 8, "00498955": 2, "005": 2, "005020": 8, "005020_278036_22_6_ppi": 8, "005039": [2, 13, 16], "005053": 8, "005053_278037_22_8_ppi": 8, "005124": 8, "005124_278038_22_10_ppi": 8, "005156": 8, "005156_278039_22_12_ppi": 8, "005229": 8, "005229_278040_22_15_ppi": 8, "00541667": 2, "00584653": 2, "00585198": 2, "005e": [2, 13], "006": 2, "00644346": 2, "00664871": 2, "007": [2, 13], "00745": 2, "00771299e": 14, "00775": 2, "00775007": 2, "00868333": 2, "00872695e": 14, "00972444": 2, "00974062e": 14, "00990096": 2, "00field_nam": 1, "00z": 0, "00zstandard_nam": 1, "01": [0, 1, 2, 8, 12, 13, 14], "010742": 0, "01075469e": 14, "01075667": 2, "01083139e": 2, "0108487": 2, "01096006": 2, "01108051": 2, "011159": [2, 13], "01146667": 2, "01150667": 2, "0135": 2, "01370713e": 14, "013839": [2, 13], "01472090e": 14, "01521667": 2, "01522": 2, "01529010e": 2, "015439": [2, 13], "01548177": 2, "01573496e": 14, "015e": 2, "01614": 13, "01614198": 13, "01674844e": 14, "01970117e": 14, "0199528": 2, "01_fillvalu": 1, "01t00": [0, 1], "02": [2, 12, 13, 14, 18], "02014209e": 14, "02071504e": 14, "021039": [2, 13], "021559": [2, 13], "02172891e": 14, "02195144e": 2, "02195622": 2, "02274297e": 14, "02309473e": 14, "023159": 2, "02361069": 2, "023719": 2, "023e": 0, "024239": 2, "024759": [0, 2, 13], "02489149": 2, "025": 2, "02568279e": 2, "02569531e": 14, "02604724e": 14, "02666667": 2, "02670918e": 14, "0267886": 2, "02739037": 2, "02765943": 2, "02772305e": 14, "02873711e": 14, "029": 0, "02969251": 2, "02976000e": 2, "02999997": 2, "029e": 0, "03": [0, 1, 2, 3, 12, 13, 14, 15, 18], "0300": 18, "030359": 18, "03048569": 2, "030920": [2, 3, 18], "0312439": 2, "031440": 18, "03168945e": 14, "031959": 18, "032520": [2, 3, 18], "03270332e": 14, "03292079": 13, "033040": [2, 3, 18], "03322591": 2, "033600": [2, 3, 18], "03371719e": 14, "034120": [2, 3, 18], "034640": [2, 3, 18], "035200": 18, "035720": [2, 3], "03685529e": 2, "03686548": 2, "03768350e": 14, "03831746": 2, "03848016": 2, "03869727e": 14, "03913818e": 14, "03943419": 2, "03971133e": 14, "03arrai": 1, "03long_nam": [1, 2], "03t11": 0, "04": [0, 1, 2, 12, 13, 14], "040240": 2, "041320": 2, "041840": 2, "04209082e": 14, "042400": 2, "042920": 2, "04367764e": 14, "043701": 0, "04386581": 13, "04442855": 13, "04469160e": 14, "04504346e": 14, "04518716": 2, "04570527e": 14, "04652033": 2, "0469331": 2, "04801839": 2, "04967168e": 14, "04arrai": [2, 13], "04long_nam": [0, 1, 2], "04standard_nam": 13, "05": [2, 9, 12, 13], "05000000074505806": 13, "05001831": 2, "050120": 2, "05068555e": 14, "05110168e": 14, "0511017": 14, "05127251": 2, "05169961e": 14, "05183994": 2, "0524": 2, "053320": 2, "05358108": 13, "053840": 2, "054401": 2, "054688": 0, "055": 0, "05535844e": 2, "055440": 2, "05566582e": 14, "05599325": 2, "05667969e": 14, "05769355e": 14, "05813339e": 2, "05813379e": 14, "05952826": 2, "05972443e": 2, "05993341": 2, "05mm": [2, 13], "06": [2, 13, 18], "06108740e": 14, "061601": 2, "06165344e": 14, "06165996e": 14, "06186667": 2, "06199999898672104": 13, "062": [2, 13], "062000036239624": 13, "062121": 2, "06267363e": 14, "06368750e": 14, "06403955e": 14, "06460571e": 14, "064801": 2, "06499481": 2, "065321": 2, "06551213e": 2, "06558299": 2, "06688283e": 2, "06749179": 2, "06755859e": 14, "06765400e": 14, "06777109e": 2, "06794999": 2, "06803327e": 2, "06866118": 2, "06866797e": 14, "06888006e": 2, "06915687": 2, "06968164e": 14, "06975213e": 2, "07": [8, 12, 13, 18], "070401": 2, "07053333": 2, "07078735": 2, "07116997": 2, "07116997e": 2, "071441": 2, "07163114": 2, "072521": 2, "073041": 2, "07350001": 2, "073601": 2, "07364814e": 14, "07466191e": 14, "07520023": 2, "07525477e": 2, "07567578e": 14, "075721": 2, "07699032e": 2, "077": 2, "0774117": 2, "07787582e": 2, "07805003": 2, "07964219e": 14, "07980083": 2, "08": [0, 2, 5, 7, 9, 13, 18], "08008301e": 14, "08065605e": 14, "08106716e": 2, "08120593": 2, "081321": 2, "08166992e": 14, "081841": 2, "08204609": 13, "082401": 2, "082921": 2, "08303564e": 14, "08333333": 2, "084001": 2, "08425652": 2, "084521": 2, "08531131e": 2, "08563633e": 14, "08570317": 2, "0858256": 2, "08598816e": 14, "08631870e": 2, "086614": 12, "08665020e": 14, "08762004": 13, "08766387e": 14, "08780094": 13, "08836792": 2, "08897562": 2, "08900494": 13, "08993047": 2, "08z": 0, "09": [2, 13, 16], "09038353": 2, "090642": 2, "09102667": 2, "09163047e": 14, "09264434e": 14, "09269013": 13, "093": 13, "09348551": 2, "09365820e": 14, "093842": 2, "09456041": 13, "094922": 2, "09510138": 2, "095442": 2, "09762451e": 14, "09767179": 2, "09824002": 2, "09863828e": 14, "09907910e": 14, "09965215e": 14, "0999199": 2, "09997559": 2, "09999999": 2, "0_fillvalu": 1, "0arrai": [0, 1, 2, 13], "0axi": 1, "0comment": [0, 1, 2], "0coordin": [1, 2, 13], "0flag_valu": [1, 2, 13], "0input_datastream": 0, "0kb": 13, "0long_nam": [1, 2], "0m": 13, "0moutput": 13, "0resolut": [2, 13], "0sourc": 2, "0standard_nam": [1, 2, 13], "0threshold": [2, 13], "0valid_delta": [2, 13], "0valid_max": [0, 1, 2, 13], "0valid_min": [2, 13], "0vap_nam": 0, "0x1": 13, "0x1481e26b0": 2, "0x150008000": 13, "0x150018000": 13, "0x150028000": 13, "0x150038000": 13, "0x150048000": 13, "0x150058000": 13, "0x150068000": 13, "0x150078000": 13, "0x150088000": 13, "0x150098000": 13, "0x1500a8000": 13, "0x1500b8000": 13, "0x153e5b130": 2, "0x159ddc5b0": 2, "0x159de7d30": 2, "0x15ae18f10": 2, "0x298061150": 6, "0x299c7cf40": 6, "0x31637661": 13, "0x7f09659455b0": 5, "0x7f0965b9d670": 5, "0x7f33c6f78eb0": 3, "0x7ff2580d9ac0": 18, "1": [0, 1, 3, 4, 5, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "10": [1, 2, 3, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "100": [2, 13, 15, 16, 18], "1000": [9, 13, 16, 17], "10000": [6, 13], "100000": 2, "100000023841858": 13, "10049": [2, 13], "10065": 2, "100_fillvalu": 2, "100sourc": 13, "101": 2, "10100": 2, "1014": 2, "101602": 2, "10177": 2, "102": 2, "10203174e": 14, "102122": 2, "1024flag_mean": [2, 13], "10250": 13, "1028387": 2, "103595": 2, "10361865e": 14, "103722": 2, "10398186": 2, "104": 2, "10463262e": 14, "1049787": 2, "10498413e": 14, "1050": 16, "10500": 13, "1053536": 2, "10564629e": 14, "106": [0, 2, 9, 13, 16, 17, 18], "1063": 18, "1063coordin": 18, "1068": 2, "107": [2, 13, 17, 18], "10750": 13, "10779893": 2, "10789999": 2, "10961270e": 14, "10_000": [3, 6, 18], "10m": 5, "10min": 16, "11": [0, 2, 12, 13], "110": [2, 13, 15, 16, 18], "1100": [2, 13], "11000": 13, "11062656e": 14, "110b": [0, 1, 13], "111": [3, 6, 13, 17, 18], "11106": 2, "11123405": 2, "11138189": 2, "11164023e": 14, "112": [0, 1, 14], "112000": 13, "112002": 2, "11222407": 13, "11250": 13, "112522": 2, "113200": 2, "113602": 2, "11361": 2, "114": [15, 16, 18], "11420001": 2, "11428": 2, "1146": 2, "11467855": 2, "1148": 2, "11489414": 2, "114b": [0, 1, 13], "115": 13, "11500": 13, "1151": 0, "1152": 0, "1153125": 2, "1155082": 2, "11560674e": 14, "115700": 2, "115723": 2, "11599922e": 2, "1160": 2, "11662051e": 14, "11663596": 2, "11750": 13, "11763457e": 14, "118": 2, "11807520e": 14, "11877": 2, "118height": 2, "118site": 2, "119": [1, 3, 6, 7, 8, 9, 13, 14], "11949997": 2, "11ee": 8, "11\u00bd": 12, "12": [0, 1, 2, 6, 7, 12, 13, 17, 18], "12000": 13, "120243": 2, "120803": 2, "12089844": 2, "121": [2, 13], "12102783e": 14, "12104147e": 2, "12160078e": 14, "12250": 13, "12261465e": 14, "12288": 13, "12294777": 2, "1230": 2, "12338": 2, "123443": 2, "12348969e": 2, "12362852e": 14, "1239": 2, "12398047e": 14, "12399423": 2, "124": 2, "124003": 2, "12429593": 13, "125": [2, 13], "1250": 13, "12500": 13, "125043": 2, "125068": 0, "1251": 0, "125603": 2, "126": 14, "127": [2, 8, 9, 14], "12750": 13, "12759492e": 14, "128": [2, 9, 13], "12830795e": 14, "12860879e": 14, "1288": 2, "12962266e": 14, "12min": [2, 16], "12\u00bd": 12, "13": [0, 1, 2, 13, 15, 18], "130": [15, 16, 18], "13000": 13, "130123": 2, "130562": 0, "131203": 2, "131723": 2, "132243": 2, "13250": 13, "13251064": 2, "13358906e": 14, "1338194": [2, 12], "13460293e": 14, "134923": 2, "135": 2, "13500": 13, "1352": 2, "13561680e": 14, "136": [15, 16, 18], "13671265": 2, "136821": 2, "1370": 2, "13750": 13, "1384334602": 18, "13857231e": 2, "13866018": 2, "139": 2, "13956193e": 2, "13958311e": 14, "13min": 2, "13\u00bd": 12, "14": [5, 8, 13, 15, 17, 18], "140": 2, "14000": 13, "140003": 2, "14002441e": 14, "14005": 2, "14005694e": 2, "14059688e": 14, "14142405": 2, "14161094e": 14, "14211258": 2, "142123": 2, "14220": 2, "14250": 13, "14297656e": 14, "14346343": 2, "1438": 2, "144": 2, "14497870e": 2, "145": 2, "14500": 13, "14557725e": 14, "14592908e": 14, "146": 2, "14659121e": 14, "14750": 13, "14760488e": 14, "14783067": 2, "14877457": 2, "1488073": 2, "149": 2, "14999962": 2, "149e": [0, 2, 13], "14min": 2, "14t00": [2, 13, 15, 18], "14t01": [2, 13], "14t02": [0, 2, 13], "14t03": [2, 13], "14t04": [2, 13], "14t05": [2, 13], "14t06": [2, 13], "14t07": [2, 13], "14t08": [2, 13], "14t09": [2, 13, 15], "14t10": [2, 13], "14t11": [2, 13], "14t12": [2, 13], "14t13": [2, 13], "14t14": [2, 13], "14t15": [2, 13], "14t16": [2, 13], "14t17": [2, 13, 18], "14t18": [2, 13], "14t19": [2, 13], "14t20": [2, 13], "14t21": [2, 13], "14t22": [2, 13], "14t23": [2, 13], "15": [0, 2, 7, 9, 13, 18], "150": [5, 13], "1500": 13, "15000": 13, "15000000596046448": 13, "15047592": 2, "1512": 2, "15157129e": 14, "15218989": 2, "15250": 13, "15258516e": 14, "1526": 2, "1528": 2, "1529": 2, "153044": 2, "15359902e": 14, "1536": 1, "153604": 2, "1538": 2, "154644": 2, "15482417": 2, "15500": 13, "155724": 2, "15635012": 2, "15692kb": 13, "1570787": 2, "15722": 2, "15750": 13, "15756543e": 14, "15857930e": 14, "15902002e": 14, "1591": 2, "1595321": 2, "15959316e": 14, "15t00": 2, "16": [2, 8, 9, 13, 17, 18], "160": 3, "1600": 13, "16000": 13, "1603": 2, "16037804e": 2, "1609": 2, "161": 13, "1610": 2, "1611": 2, "1612": 2, "1613": 2, "161333": 2, "1614": 2, "1615": 2, "161844": 2, "16197266e": 14, "161height": 13, "161x": 13, "162": [2, 18], "1620": 2, "16201172": 2, "16250": 13, "16254684": 2, "163444": 2, "16355947e": 14, "1638": 2, "1638400": 13, "1639": 2, "1640": 2, "164524": 2, "16457324e": 14, "16492529e": 14, "165": 18, "16500": 13, "165044": 2, "16558730e": 14, "1662": 2, "167": 2, "16750": 13, "16765685": 2, "16807962": 2, "169": 18, "16955361e": 14, "17": [2, 8, 9, 12, 13, 14], "17000": 13, "170124": 2, "17015492": 13, "17056758e": 14, "17077991": 2, "171204": 2, "17158125e": 14, "172": 2, "172244": 2, "17250": 13, "17251332": 2, "17253632e": 2, "17317": 2, "173324": 2, "17333333": 2, "173844": 2, "174924": 2, "1750": 13, "17500": 13, "1751076": 2, "175445": 2, "17554775e": 14, "17556306": 2, "17656152e": 14, "176e": 2, "176e1559b67be630": 12, "177": 16, "17750": 13, "17757539e": 14, "177712": 2, "1779709": 2, "178": 12, "1780": 16, "17801660e": 14, "1781398": 0, "1781398command_lin": 0, "1786358": 2, "17871": 2, "179": 12, "18": [2, 3, 5, 12, 13, 16, 18], "180": [0, 1, 6, 12, 13, 17, 18], "1800": [2, 13, 18], "18000": 13, "18096875e": 14, "180standard_nam": [2, 13], "180valid_max": [2, 13], "181": [2, 12], "181044": 2, "181231": 9, "18154180e": 14, "182": 12, "182125": 2, "18250": 13, "18255566e": 14, "182645": 2, "183": 12, "18356953e": 14, "18392139e": 14, "18399745": 2, "18400756": 2, "184245": 2, "1844501": [1, 13], "18489355e": 2, "18493333e": 2, "18500": 13, "185325": 2, "185845": 2, "186": 14, "1864": 2, "18645334": 2, "187": [2, 13], "18700000643730164": 13, "187000036239624": 13, "18722988e": 2, "18750": 13, "18753594e": 14, "18759306": 2, "18824053": 2, "1883164": [1, 2, 13], "1883164comment": 1, "18837525": 13, "1884520insitut": [2, 13], "1884979comment": 13, "18854980e": 14, "18866136": 2, "18875": 2, "18956348e": 14, "19": [2, 5, 7, 13], "19000": 13, "190405": 2, "190925": 2, "192": 1, "192005": 2, "19250": 13, "192525": 2, "1928635": 2, "192coordin": 1, "193": 2, "193045": 2, "19352998e": 14, "19454395e": 14, "19500": 13, "195205": 2, "19555781e": 14, "195725": 2, "1970": [0, 1, 8, 16], "1975": 16, "19750": 13, "1980": 13, "1984375": 2, "1985": 16, "1990": [0, 1, 2, 13, 15, 16, 18], "1992": 16, "19952412e": 14, "19969959": 2, "199951": 0, "19995117": 14, "19996533e": 14, "199999809265137": 13, "19999981": 2, "1_fillvalu": [1, 2], "1_ppi": 8, "1arrai": 1, "1calcul": [2, 13], "1comment": [0, 1, 2, 13], "1coordin": [1, 13], "1e": [1, 14], "1e20": 1, "1equat": [2, 13], "1f": [0, 13], "1flag_mask": [2, 13], "1long_nam": 2, "1min": 13, "1note": [1, 2, 13], "1rang": 1, "1s7xzpt0iojk0bwt34bkvyt9xzpbi1tv6q28m3zqimp": 12, "1sourc": [2, 13], "1standard_nam": [0, 1, 2, 13], "1t": [15, 18], "1unit": [0, 1, 2, 13], "1valid_max": 2, "2": [0, 1, 4, 5, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "20": [1, 2, 3, 5, 6, 7, 9, 13, 14, 15, 16, 17, 18], "200": [12, 13, 16, 18], "2000": [13, 16], "20000": 13, "200000047683716": 13, "2003": [13, 14, 18], "20053789e": 14, "200805": 2, "2009": [0, 1, 2, 13, 15, 16, 18], "200height": 13, "2012": [0, 1, 2, 13, 16], "2013": [13, 14], "201325": 2, "20155176e": 14, "2016": [1, 3, 6, 7, 8, 9, 13, 14], "2018": 16, "201e": 2, "202": 2, "2021": 12, "202112": 9, "20211201": 12, "20211202": 12, "20211203": 12, "20211204": 12, "20211205": 12, "20211206": 12, "20211207": 12, "20211208": 12, "20211209": 12, "20211210": 12, "20211211": 12, "20211212": 12, "20211213": 12, "20211214": 12, "20211215": 12, "20211216": 12, "20211217": 12, "20211218": 12, "20211219": 12, "20211220": 12, "20211221": 12, "20211222": 12, "20211223": 12, "20211224": 12, "20211225": 12, "20211226": 12, "20211227": 12, "20211228": 12, "20211229": 12, "20211230": 12, "20211231": 12, "202112_glu": 9, "2022": [5, 7, 12, 13, 15, 18], "20220101": 12, "20220102": 12, "20220103": 12, "20220104": 12, "20220105": 12, "20220106": 12, "20220107": 12, "20220108": 12, "20220109": 12, "20220110": 12, "20220111": 12, "20220112": 12, "20220113": 12, "20220114": 12, "20220115": 12, "20220116": 12, "20220117": 12, "20220118": 12, "20220119": 12, "20220120": 12, "20220121": 12, "20220122": 12, "20220123": 12, "20220124": 12, "20220125": 12, "20220126": 12, "20220127": 12, "20220128": 12, "20220129": 12, "20220130": 12, "20220131": 12, "20220201": 12, "20220202": 12, "20220203": 12, "20220204": 12, "20220205": 12, "20220206": 12, "20220207": 12, "20220208": 12, "20220209": 12, "20220210": 12, "20220211": 12, "20220212": 12, "20220213": 12, "20220214": 12, "20220215": 12, "20220216": 12, "20220217": 12, "20220218": 12, "20220219": 12, "20220220": 12, "20220221": 12, "20220222": 12, "20220223": 12, "20220224": 12, "20220225": 12, "20220226": 12, "20220227": 12, "20220228": 12, "202203": [0, 3, 8, 13], "20220301": [8, 12], "20220302": 12, "20220303": 12, "20220304": 12, "20220305": 12, "20220306": 12, "20220307": 12, "20220308": 12, "20220309": 12, "20220310": 12, "20220311": 12, "20220312": 12, "20220313": 12, "20220314": [0, 2, 3, 12, 13, 15, 18], "20220315": 12, "20220316": 12, "20220317": 12, "20220318": 12, "20220319": 12, "20220320": 12, "20220321": 12, "20220322": 12, "20220323": 12, "20220324": 12, "20220325": 12, "20220326": 12, "20220327": 12, "20220328": 12, "20220329": 12, "20220330": 12, "20220331": 12, "202203_glu": [8, 15, 16, 18], "202203field_nam": 0, "202204_glu": 17, "20291748e": 14, "203": 2, "203445": 2, "20358836": 2, "204005": 2, "20413167": 2, "20441666": 2, "20459192": 2, "20520": 2, "20532667": 2, "20551826e": 14, "205606": 2, "20587012e": 14, "20653203e": 14, "20754590e": 14, "20_000": 3, "20coordin": 1, "20long_nam": 1, "20standard_nam": 1, "21": [2, 13, 16], "210": 2, "21020775": 2, "210646": 2, "21064839": 2, "21076004": 2, "2112": 2, "21151230e": 14, "211726": 2, "212": 2, "21220": 2, "21252617e": 14, "213": 2, "21313333": 2, "21340000e": 2, "21353984e": 14, "214741": 0, "21688001": 2, "21723999": 2, "21750645e": 14, "21752001": 2, "21852031e": 14, "21868179": 2, "21896094e": 14, "21953418e": 14, "21973332": 2, "22": [2, 12, 13], "220": 2, "220006": 2, "22024515": 2, "220526": 2, "2208": 2, "22081055": 2, "22128581": 2, "22191357e": 14, "222126": 2, "22276242": 13, "22307": 2, "223206": 2, "22329579": 2, "22350049e": 14, "223726": 2, "22408203": 2, "22451426e": 14, "224806": 2, "22486621e": 14, "22495524": 2, "2250": 13, "22534105": 2, "22537902": 2, "22552812e": 14, "225846": 2, "22641332": 2, "22648": 2, "22709999": 2, "22775": 2, "22793631e": 2, "22815469e": 2, "22842531e": 2, "22843782e": 2, "229": 16, "22938283": 2, "22949453e": 14, "23": [2, 12, 13], "23004115": 2, "23034760e": 2, "2305": 0, "23050859e": 14, "230559": 14, "2306": 0, "230926": 2, "231": [2, 5], "23122721": 2, "23152227e": 14, "232": 5, "2320": 14, "232006": 2, "2321": 14, "23218022": 13, "232526": 2, "233": [2, 5], "233000": 2, "23356000e": 2, "233607": 2, "234": 5, "235": 5, "23548857e": 14, "235727": 2, "23595869": 13, "236": 5, "23650254e": 14, "23670334": 2, "2372564": 2, "23751641e": 14, "23763593": 2, "23780284": 2, "23795703e": 14, "24": [0, 2, 13], "240": 16, "24007766": 2, "24047607": 2, "2405": 18, "24075001": 2, "24090967e": 14, "24148271e": 14, "24249648e": 14, "24324961": 2, "24351055e": 14, "24386255e": 14, "24478044": 2, "246": 2, "2466937760": 14, "247": 2, "24747686e": 14, "24774887": 2, "24832237e": 2, "24849062e": 14, "24950449e": 14, "24960372": 2, "249e": [2, 13], "25": [0, 1, 2, 5, 7, 9, 13], "250": [3, 13, 17], "2500": 13, "25049411": 13, "251": [2, 8], "25106487": 2, "252": 2, "25347090e": 14, "254": 2, "25400256e": 2, "25448477e": 14, "25510001": 2, "25549863e": 14, "2559375": 2, "256": [2, 13], "257": 2, "25700009": 2, "25761667": 2, "258": 2, "25832002": 2, "25898647e": 2, "259": 18, "25946504e": 14, "2599": 2, "25990625e": 14, "26": [2, 13], "2600": 16, "26047891e": 14, "26149277e": 14, "2624767": 2, "26285889e": 14, "26342529e": 14, "26517108": 2, "26545908e": 14, "265625": 2, "26581104e": 14, "26637756e": 14, "26647285e": 14, "26657334": 2, "2666": 2, "26666667": 2, "26691999": 2, "26748691e": 14, "26871859e": 2, "26874471e": 2, "26928333": 2, "26932999e": 14, "27": [12, 13], "27086667": 2, "271": 2, "27145322e": 14, "271e": 2, "27246719e": 14, "27348086e": 14, "274": 2, "2750": 13, "27535938": 2, "277": 2, "27700001": 2, "27708": 2, "27744736e": 14, "277e": 1, "27846113e": 14, "27885439e": 2, "27890234e": 14, "27899058": 13, "27947500e": 14, "28": [0, 1, 2, 13, 15, 16, 18], "280": 2, "28064785": 2, "28075986": 2, "281": 14, "28185449e": 14, "283": [6, 7], "28332395": 2, "28344141e": 14, "28420224": 2, "28445527e": 14, "28480713e": 14, "28546914e": 14, "287": 2, "28706661e": 2, "28795881": 2, "28847755": 2, "28895862": 2, "28898468e": 14, "28943555e": 14, "28arrai": 1, "29": [2, 12, 13], "29044941e": 14, "290698": 0, "29146328e": 14, "29193": 2, "292": 2, "29333333": 2, "29441732": 2, "29534992": 2, "29542959e": 14, "29553333": 2, "296191": 0, "2962": 0, "29644355e": 14, "29708401e": 2, "29745742e": 14, "29789844e": 14, "298": 5, "29957409e": 2, "29971558": 2, "29998779": 2, "2999999523162842": 13, "2_000": 17, "2_700": [13, 17], "2arrai": 1, "2e": 13, "2unit": [0, 1, 2, 13], "2valid_max": 2, "2x": 13, "2\u00bd": 12, "3": [1, 5, 6, 7, 8, 12, 13, 14, 15, 16, 17, 18], "30": [2, 5, 7, 12, 13, 15, 16, 17, 18], "300": [5, 12, 13, 15, 17, 18], "3000": [2, 13], "30000": [2, 9, 13], "30001831": 2, "3000x1500": 13, "30085059e": 14, "30085697e": 2, "3009": 2, "301": 13, "30142373e": 14, "301518": 2, "30180737": 2, "30185108e": 2, "30243750e": 14, "30305018": 2, "30345117e": 14, "30380322e": 14, "30396658": 2, "30440796": 2, "306": 0, "3066064": 2, "30741777e": 14, "30753286": 2, "308": 2, "30825315": 2, "30843164e": 14, "3089719": 13, "309": 13, "30939663": 2, "30944570e": 14, "3096": 2, "31": [2, 12, 13], "31062895e": 2, "31066406": 2, "31099301": 2, "31130019e": 2, "31141663": 2, "31198292e": 2, "312": [2, 13], "31200000643730164": 13, "31341191e": 14, "31370072": 2, "31442578e": 14, "31454667": 2, "3149": [0, 2, 13, 14], "315": 2, "31543945e": 14, "316": 2, "31617026e": 2, "31648953": 2, "31930082e": 2, "31940605e": 14, "31984668e": 14, "32": [2, 13], "32041992e": 14, "32090449e": 2, "32143359e": 14, "32279932e": 14, "32391028": 2, "32413797": 2, "32425956": 2, "32464634": 2, "32474269": 2, "3249": [2, 13], "3250": 13, "32529189": 13, "32540010e": 14, "32575195e": 14, "32599258": 2, "32641387e": 14, "32643878e": 2, "327": 2, "32710325": 2, "32742773e": 14, "32768": [1, 8, 13, 14], "32804687": 2, "32824999": 2, "32891421": 2, "329": 6, "32coordin": [2, 13], "32raw_fall_veloc": [2, 13], "33": [2, 8, 13], "3300": 2, "33139424e": 14, "33240820e": 14, "332534": 0, "33319092": 2, "33342188e": 14, "33351278": 2, "3349": [2, 13], "336": 6, "33619792": 2, "33644228e": 2, "33656745": 2, "33666667": 2, "33738828e": 14, "3380833": 2, "33840215e": 14, "33884277e": 14, "33941602e": 14, "33962568e": 2, "33mno": 13, "34": [2, 13], "340": [6, 16], "34066667e": 2, "34077": 8, "34169890e": 2, "34179590e": 14, "342": 2, "34209497": 13, "34338242e": 14, "34404622": 2, "3443": 2, "34439629e": 14, "34455": 8, "34474829e": 14, "3449": [2, 13], "34541016e": 14, "34548867": 13, "34554363": 2, "34555053e": 2, "3462": 0, "3463": 0, "34631925e": 2, "34760833": 2, "348": 2, "34937646e": 14, "3499999940395355": 13, "34m": 13, "35": [2, 5, 13], "3500": 13, "35002309": 2, "35023398": 2, "3502378": 2, "35039023e": 14, "35099995": 2, "351": [2, 5, 18], "35140430e": 14, "353": 2, "35356055e": 2, "35394675": 2, "354": 2, "3549": [2, 13], "355": 2, "35537051e": 14, "35619493e": 2, "35638438e": 14, "3567": 2, "35733324e": 2, "35737396": 2, "35739805e": 14, "35780229": 2, "35783887e": 14, "358": 2, "35807351": 2, "359": 2, "35940000e": 2, "36": [2, 13, 15, 16, 18], "360": [2, 5, 13], "3607498": 2, "36079150e": 14, "36119333": 13, "36136465e": 14, "36195995": 2, "36237852e": 14, "36289549": 2, "363": 2, "36339258e": 14, "36374414e": 14, "36445975e": 2, "3649": [2, 13], "3655372": 2, "366": 0, "36735869e": 14, "36773662": 2, "36779948": 2, "36837246e": 14, "36938633e": 14, "36941074e": 2, "37": [2, 13], "37132924": 2, "37153338": 2, "37180501": 2, "37303": 8, "37333333": 2, "37335283e": 14, "37358587e": 2, "37436680e": 14, "37485994e": 2, "3749": [2, 13], "375": [2, 13], "3750": 13, "37538047e": 14, "37602138": 13, "37666667": 2, "37863337": 2, "37934688e": 14, "37978760e": 14, "37988589": 2, "37e": 2, "38": [0, 2, 9, 13, 16, 17, 18], "38036074e": 14, "38137461e": 14, "38274023e": 14, "38336946": 2, "38405000e": 2, "38478018e": 2, "3849": [2, 13], "38534102e": 14, "38569299e": 14, "38593": 2, "38635488e": 14, "38710085e": 2, "38736875e": 14, "39": [0, 1, 2, 8, 13, 15, 16, 17, 18], "39031814": 2, "39133516e": 14, "39158664": 2, "39162191": 2, "39203247": 2, "39234883e": 14, "39336289e": 14, "39442602e": 2, "3949": [2, 13], "39637728": 2, "39732920e": 14, "39834316e": 14, "39878418e": 14, "39935703e": 14, "39973789e": 2, "39979986": 2, "399999618530273": 13, "39arrai": 1, "3_fillvalu": 2, "3g2": 13, "3gp": 13, "3rd": 13, "3site_id": 0, "3sourc": 13, "4": [0, 1, 3, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "40": [0, 2, 6, 13, 15, 16, 17, 18], "400": [0, 1, 2, 9, 12, 13], "4000": 13, "4000000953674316": 13, "400000095367432": 13, "40023401": 2, "40023401e": 2, "400y": 13, "40165278": 2, "40167": 0, "40173682e": 14, "40221613e": 2, "40227": 0, "40250174": 2, "40280164": 2, "40287": 0, "40332334e": 14, "40374094": 2, "404": 2, "40418996": 2, "40433711e": 14, "40468896e": 14, "4049": [2, 13], "405": 13, "40518764": 13, "40535078e": 14, "40557567": 2, "40584798": 2, "40704339": 2, "40931738e": 14, "40b": [0, 1, 13], "41": [2, 13, 16], "410": 16, "41018658": 2, "41033125e": 14, "41070759": 13, "41134531e": 14, "41159997e": 2, "412": 13, "4149": [2, 13], "41531152e": 14, "41579192": 2, "41632539e": 14, "41713546e": 2, "41733945e": 14, "4175": 2, "41778027e": 14, "418": 2, "4181": 2, "41896141": 2, "419": 2, "4190": 2, "41915983": 2, "41987986": 2, "4199": 2, "42": [2, 12, 13, 16], "420": 2, "4200": 2, "4205": 2, "42073291e": 14, "42095936e": 2, "421": 2, "42130566e": 14, "42168531": 2, "42231953e": 14, "42333320e": 14, "4235": 2, "42368530e": 14, "42380933e": 2, "424": 2, "4244": 2, "4249": [2, 13], "425": 2, "4250": 13, "42515785": 2, "4252": 2, "4258": 2, "426": [0, 2], "42622": 2, "42666667": 2, "427": 16, "42729971e": 14, "42831348e": 14, "42932734e": 14, "42951172": 2, "42953428": 2, "43": [0, 1, 2, 13], "430": 2, "43160390e": 2, "43320009": 2, "43329385e": 14, "43413310e": 2, "43430781e": 14, "4349": [2, 13], "43532148e": 14, "43544002": 2, "4364079": 2, "437": [2, 13], "43700000643730164": 13, "43703": 2, "43873": 8, "43928789e": 14, "43972852e": 14, "44": [2, 13, 15, 16, 18], "44030176e": 14, "44131562e": 14, "44268115e": 14, "44384792e": 2, "44449815": 2, "4449": [2, 13], "44528203e": 14, "44563379e": 14, "44629590e": 14, "44635936": 2, "44693222": 2, "44730977e": 14, "44771128e": 2, "44800": 9, "44999981": 2, "44999998807907104": 13, "45": [2, 13, 15, 16, 18], "4500": [2, 13], "45001221": 2, "451": [5, 18], "45127607e": 14, "45228984e": 14, "45330391e": 14, "4548002": 2, "4549": [2, 13], "45490829": 13, "4552": 2, "45727021e": 14, "45733073": 2, "458": 2, "45828418e": 14, "45872559e": 14, "459": 2, "45929766e": 14, "45987434": 2, "46": [0, 1, 2, 13, 18], "460": 2, "46009315": 2, "46018994": 2, "461": 2, "4612": 2, "4615": 2, "46152011": 2, "46167773e": 14, "46182919": 13, "462": 2, "4620": 0, "4621": 0, "46224365e": 14, "46326436e": 14, "46427812e": 14, "46462988e": 14, "4648": 2, "4649": [2, 13], "46519653e": 14, "46529219e": 14, "46672035": 2, "4680unit": [2, 13], "46814896e": 14, "46880552e": 2, "46900026e": 2, "46925830e": 14, "46930669": 2, "46992002": 2, "47": [0, 2, 13, 18], "47027207e": 14, "47128594e": 14, "47390003": 2, "4749": [2, 13], "4750": 13, "47525244e": 14, "47551063": 2, "47570": 2, "47602539": 2, "47626641e": 14, "477": 2, "47728008e": 14, "47772168e": 14, "478": 2, "47852138": 2, "47854075": 2, "479": 2, "48": [1, 2, 8, 13, 15, 16, 18], "4800": 13, "48014308": 2, "48067383e": 14, "48115689": 2, "48124648e": 14, "48226035e": 14, "48327422e": 14, "48362622e": 14, "4849": [2, 13], "485": 2, "487": [5, 18], "48724062e": 14, "48825449e": 14, "48926836e": 14, "49": [0, 2, 12, 13], "4909": 2, "49166667": 2, "49200195": 2, "49226638e": 2, "49323477e": 14, "49365234": 2, "49424844e": 14, "4949": [2, 13], "49526250e": 14, "49799995": 2, "498": 2, "49922881e": 14, "49966992e": 14, "4_200": [13, 17], "4d9e": 8, "4min": 8, "5": [1, 3, 6, 8, 9, 12, 13, 14, 15, 16, 17, 18], "50": [0, 2, 3, 7, 9, 13, 17, 18], "500": [2, 3, 4, 9, 13, 15, 16], "5000": [3, 13], "50024277e": 14, "50075987e": 2, "500swe_ratio": [0, 1, 13], "500valid_min": [2, 13], "50125664e": 14, "50262207e": 14, "50351016": 2, "50368021": 2, "504": 2, "5049": [2, 13], "50522295e": 14, "50557483e": 14, "50603496": 2, "50623672e": 14, "50638925": 2, "50664688": 2, "50725039e": 14, "50910034e": 2, "50910399e": 2, "51": [2, 13, 14], "51086689e": 2, "51121699e": 14, "512": [2, 13], "51200": 13, "51223086e": 14, "51272865": 2, "51324492e": 14, "5149": [2, 13], "51602653": 2, "51721113e": 14, "51787864": 13, "51822500e": 14, "51866602e": 14, "519": 2, "51907816": 2, "51923906e": 14, "5194": [13, 14], "51973941": 13, "52": [0, 2, 12, 13, 14, 18], "5210": 2, "52161816e": 14, "5219": 2, "52300875": 2, "52320518e": 14, "52333333": 2, "52421914e": 14, "52435537": 2, "52440266": 2, "52457104e": 14, "5249": [2, 13], "5250": 13, "52523281e": 14, "52559980e": 2, "52743962": 13, "52790001e": 2, "52822281": 2, "52865903": 2, "52919932e": 14, "53": [2, 12, 13, 14], "53021309e": 14, "53030024": 2, "53122695e": 14, "53150527": 2, "53325343": 2, "5334": [1, 3, 6, 7, 8, 9, 13, 14], "5349": [2, 13], "53497396": 2, "53519346e": 14, "53620723e": 14, "53648465": 2, "53653369e": 2, "537": 2, "53722109e": 14, "53734763": 2, "53766211e": 14, "53800005": 2, "53865967": 2, "5390": 2, "53935268": 2, "54": [2, 13], "54012609e": 2, "54023688e": 2, "54061475e": 14, "54075172": 2, "54097332": 2, "54118750e": 14, "54220137e": 14, "54321523e": 14, "54356714e": 14, "5439": [0, 1, 2, 12, 13], "5449": [2, 13], "54513377": 2, "54649973": 2, "5465818": 2, "54666667": 2, "547": 0, "54718164e": 14, "54819551e": 14, "54920938e": 14, "55": [2, 12, 13], "5500": 13, "550000011920929": 13, "55047981e": 2, "55066581": 2, "55179214": 2, "55201172": 2, "55317568e": 14, "55328488": 2, "5536": 2, "553e": 2, "55418945e": 14, "5549": [2, 13], "55520312e": 14, "55558675e": 2, "55559969e": 2, "55916982e": 14, "55961084e": 14, "55991729": 2, "56": [2, 12, 13, 15, 16, 18], "56000006": 2, "56018379e": 14, "56119727e": 14, "5619999766349792": 13, "562": [2, 13], "56256299e": 14, "56333333": 2, "56346229": 2, "56346229e": 2, "56406843": 13, "5649": [2, 13], "56516396e": 14, "56551587e": 14, "56595044": 2, "56617773e": 14, "56719180e": 14, "56772003e": 2, "56893333e": 2, "57": [2, 13], "57115801e": 14, "57217188e": 14, "57318555e": 14, "57334518": 2, "5749": [2, 13], "5750": 13, "57713021": 2, "57715215e": 14, "5779": 0, "5780": 0, "57816602e": 14, "57818002e": 2, "57860742e": 14, "57917969e": 14, "58": [2, 13], "58022412e": 2, "58155908e": 14, "58179381e": 2, "58196087e": 2, "58314609e": 14, "58341539": 2, "58416016e": 14, "58451196e": 14, "5849": [2, 13], "58517383e": 14, "58603999": 2, "5870": 2, "58765939e": 2, "58834663": 2, "58914023e": 14, "59": [0, 1, 13, 14], "59015410e": 14, "59043996": 2, "59054037": 2, "59116797e": 14, "59143882": 2, "59197632": 2, "592557654": 18, "59260342": 2, "59333333": 2, "59354396": 2, "59445455e": 2, "59477157e": 2, "59488001": 2, "5949": [2, 13], "59513428e": 14, "596": 2, "59614805e": 14, "59618416": 2, "59716211e": 14, "59741345": 13, "59760352e": 14, "59799938": 2, "59864258": 2, "59900000e": 2, "59989327": 2, "59999878": 2, "599999904632568": 13, "5999999046325684": 13, "59z": 0, "5_000": [3, 17], "5arrai": 1, "5kbit": 13, "5min": [2, 13], "5valid_max": 1, "5\u00bd": 12, "6": [1, 7, 9, 12, 13, 14, 15, 16, 17, 18], "60": [5, 6, 7, 13, 14], "6000": 13, "600000381469727": 13, "60055566e": 14, "601": 9, "60112842e": 14, "60214238e": 14, "6022688": 0, "60315625e": 14, "60350806e": 14, "60383135": 2, "6049": [2, 13], "605": 0, "60641332": 2, "60712256e": 14, "60813633e": 14, "60915000e": 14, "60999932e": 2, "60comment": [2, 13], "61": 2, "610625": 2, "61148": 2, "61258041": 2, "61275167": 13, "61311660e": 14, "61413047e": 14, "6149": [2, 13], "61514453e": 14, "61558268": 2, "61621754": 2, "61680673": 2, "61840007": 2, "61873211": 2, "61893723": 2, "61911074e": 14, "61955176e": 14, "61e": 2, "62": 2, "62012461e": 14, "62090783": 2, "62113867e": 14, "62117969": 13, "6217": 2, "62188092": 2, "62250439e": 14, "623": 2, "62396017e": 2, "62446473e": 2, "6249": [2, 13], "625": [2, 13], "6250": 13, "62510479e": 14, "62534888": 2, "62545667e": 14, "62554882": 2, "6256861": 2, "62611875e": 14, "62713242e": 14, "62991": 2, "63": 2, "63109893e": 14, "63200521": 2, "63211270e": 14, "63298343": 2, "63308687": 13, "63312656e": 14, "63333333": 2, "6349": [2, 13], "63583322": 2, "63709307e": 14, "6371": [13, 17, 18], "63764633e": 2, "63810684e": 14, "63854785e": 14, "6389": 2, "63912109e": 14, "64": [2, 9, 13], "64077369e": 2, "64093429e": 2, "64150000e": 14, "64153505": 2, "64280000e": 2, "64308711e": 14, "64311025": 2, "64410098e": 14, "64445288e": 14, "6449": [2, 13], "64511484e": 14, "64649445": 13, "647226079": 0, "64768002e": 2, "64774175": 2, "64798828": 2, "64908125e": 14, "6499999761581421": 13, "65": [2, 13, 16], "6500": 13, "65009512e": 14, "6511": 2, "65110898e": 14, "65119947e": 2, "65123555": 13, "65196289": 2, "65215997": 2, "65289728e": 2, "653125": 2, "6549": [2, 13], "65507539e": 14, "65608906e": 14, "65710273e": 14, "65754395e": 14, "658": 1, "65848637": 2, "659": 1, "66": [2, 8, 14], "660": 1, "66025513e": 2, "66049658e": 14, "661": 1, "66106323e": 14, "66106934e": 14, "662": 1, "66208340e": 14, "66265531": 2, "66277956": 2, "663": 1, "66309688e": 14, "66340017": 2, "66344897e": 14, "664": 1, "66401489e": 14, "66414666": 2, "6649": [2, 13], "665": 1, "666": 1, "66666287e": 2, "66696808e": 14, "667": 1, "66706348e": 14, "667long_nam": 1, "668": [0, 1], "66800558e": 2, "66807734e": 14, "668sweep": [0, 1], "66909141e": 14, "66961466e": 2, "6697407": 2, "66985622": 2, "67": [2, 15, 16, 18], "67166667": 2, "67199982": 2, "67213345e": 2, "67305762e": 14, "67407148e": 14, "67426066": 2, "6749": [2, 13], "6750": 13, "67508516e": 14, "67589312": 2, "67798084": 13, "67819099": 13, "67899042": 2, "67905176e": 14, "67949268e": 14, "67b": [0, 1, 13], "68": 2, "68000054e": 2, "68006543e": 14, "68023146": 2, "68033747": 2, "6805069": 2, "68107930e": 14, "68155924": 2, "68244531e": 14, "68246273": 13, "68276547e": 2, "68311657": 2, "6848": 2, "6849": [2, 13], "68504570e": 14, "68539771e": 14, "68605977e": 14, "68630033": 2, "6869999766349792": 13, "687": [2, 13], "68707344e": 14, "68750806e": 2, "6891meters_between_g": 1, "69": 2, "69074219": 2, "69103984e": 14, "69205371e": 14, "69283065": 2, "69306758e": 14, "6935": 0, "6936": 0, "6936225": 2, "6949": [2, 13], "69508464": 2, "69600004e": 2, "69703398e": 14, "69804785e": 14, "69831757": 2, "69848926e": 14, "698630136986303a": 0, "69906172e": 14, "69920502e": 14, "699a": [1, 13], "6_zfrvvd": 8, "6b38fc35": 8, "6comment_1": [2, 13], "6deg": 17, "6equat": [2, 13], "6flag_mean": [1, 2, 13], "6valid_min": [0, 1, 2, 13], "7": [1, 12, 13, 14, 17, 18], "70": [2, 13], "7000": 13, "7000000476837158": 13, "7003125": 2, "70041173": 13, "70144141e": 14, "70302812e": 14, "70357459e": 2, "70404199e": 14, "70439380e": 14, "7049": [2, 13], "70505586e": 14, "706": 2, "70658576": 2, "70666667": 2, "70902207e": 14, "70932943": 2, "70coordin": 2, "70particle_s": 13, "70site": [2, 13], "71": [2, 13], "71003594e": 14, "71104961e": 14, "71145": 2, "71153646": 2, "71186meters_between_g": 0, "7119999": 2, "71333333": 2, "7138003": 2, "714": 2, "7149": [2, 13], "715": 18, "71501641e": 14, "71521332": 2, "71603008e": 14, "71704414e": 14, "7170576": [2, 16], "71748535e": 14, "71866814": 2, "71870224": 2, "71970760e": 2, "71995": 2, "72": 2, "72013": 2, "72043701e": 14, "72101035e": 14, "72182292": 2, "72187284e": 2, "722": 2, "72202402e": 14, "723": 2, "72303828e": 14, "72313261e": 2, "72338989e": 14, "72358513": 2, "7242": 2, "72440046e": 2, "7249": [2, 13], "7250": 13, "72607752": 2, "72607752e": 2, "72636585": 2, "72700449e": 14, "72776620e": 2, "72800011": 2, "72801836e": 14, "72903203e": 14, "72922131e": 2, "72952000e": 2, "72975063": 2, "73216009e": 2, "73299844e": 14, "73341511": 2, "73401230e": 14, "7349": [2, 13], "73502617e": 14, "73562328": 2, "73620301": 2, "73831865": 2, "73862805e": 2, "73899277e": 14, "73943359e": 14, "74": [5, 18], "74000645e": 14, "74102070e": 14, "74166673": 2, "74238623e": 14, "7436992": 2, "74404754": 2, "74410156": 2, "74444931": 2, "7449": [2, 13], "74498672e": 14, "74533862e": 14, "74600059e": 14, "74641430e": 2, "74701445e": 14, "74759839e": 2, "74842282": 2, "74909365": 2, "74916673": 2, "74949951": 2, "74996948": 2, "75": [0, 2, 13, 16], "750": [13, 17], "7500": 13, "75076925": 2, "75098086e": 14, "75199473e": 14, "75300859e": 14, "7549": [2, 13], "75666667": 2, "7567": 0, "75697500e": 14, "75788097": 2, "75798867e": 14, "758": [5, 7], "75818776": 2, "75842969e": 14, "75900234e": 14, "76": 2, "76009843": 2, "76138232e": 14, "76296895e": 14, "76398301e": 14, "76426699": 2, "76433472e": 14, "76466685": 2, "7649": [2, 13], "76499688e": 14, "76585938": 2, "76666667": 2, "76671444": 2, "768": 2, "76836845e": 2, "76896309e": 14, "76898437": 2, "76997695e": 14, "77": 2, "77016448": 2, "77099102e": 14, "7710162": 2, "7749": [2, 13], "77495703e": 14, "775": 13, "7750": 13, "77597109e": 14, "77698477e": 14, "77742578e": 14, "77961": 2, "78037842e": 14, "78053792": 2, "78095137e": 14, "78166027": 2, "78196504e": 14, "78260997e": 2, "78297891e": 14, "78333105e": 14, "78379846": 2, "7849": [2, 13], "7851": 2, "78678829": 2, "78694531e": 14, "78696588e": 2, "78712845e": 2, "78795938e": 14, "78804687": 2, "78823": 2, "78833961": 2, "78897305e": 14, "78997803": 2, "79": [0, 1, 2, 13], "79007975": 2, "79073263": 2, "79107443": 2, "79169232": 13, "79236812": 2, "79293945e": 14, "79389942": 2, "79395332e": 14, "79447632": 2, "7949": [2, 13], "79496719e": 14, "79683335": 2, "79893359e": 14, "79937451e": 14, "79994746e": 14, "799999237060547": 13, "799999952316284": 13, "7coordin": [2, 13], "7height": 2, "7valid_max": 0, "7valid_min": [2, 13], "7\u00bd": 12, "8": [1, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18], "80": [9, 13, 14], "800": 4, "8000": [9, 13], "800000190734863": 13, "80084311": 2, "80096133e": 14, "80232715e": 14, "80234664": 2, "80318997": 2, "8049": [2, 13], "80492773e": 14, "80499999": 2, "80504661e": 2, "80514278": 2, "80527954e": 14, "80541667": 2, "80594160e": 14, "80643284e": 2, "80666667": 2, "80695547e": 14, "80705187": 2, "8096": 0, "8097": 0, "81076000e": 2, "81092168e": 14, "81107424": 2, "81193574e": 14, "8119999766349792": 13, "812": [2, 13], "81229978e": 2, "81294922e": 14, "81306186e": 2, "81337317": 2, "81364695": 2, "8147": 2, "81475019": 2, "8149": [2, 13], "81573": 0, "81614524": 2, "81666667": 2, "81691602e": 14, "81733398": 2, "81792969e": 14, "81837012e": 14, "81894375e": 14, "81999969": 2, "82": 2, "82020264e": 2, "82132324e": 14, "822": 2, "82200003": 2, "82290996e": 14, "82366835": 2, "82392363e": 14, "82398926": 2, "824": 2, "8240625": 2, "82427563e": 14, "82427587e": 2, "82461306": 2, "82489854": 2, "8249": [2, 13], "82493789e": 14, "8250": 13, "82504272": 2, "82576292": 2, "826": [15, 18], "82728000e": 2, "82890410e": 14, "82960237": 2, "82991797e": 14, "83": 2, "830795": 14, "83093164e": 14, "83333588": 2, "8338": 2, "83489805e": 14, "8349": [2, 13], "83591191e": 14, "83642566e": 2, "83692578e": 14, "83736719e": 14, "83790781": 13, "83824951": 2, "8397": 2, "83998237": 2, "84": 2, "84000015": 2, "84031934e": 14, "84089238e": 14, "84190605e": 14, "84233782e": 2, "84249878": 2, "84292031e": 14, "84327197e": 14, "84339817": 2, "84396606": 2, "84406397e": 2, "84413321e": 2, "84457333e": 2, "8448": 2, "84486603": 2, "8449": [2, 13], "845": [13, 14], "84578254": 2, "8458": 2, "84628668": 2, "8463": 2, "84688633e": 14, "84790020e": 14, "84865017": 2, "84891406e": 14, "85": [2, 13], "8500": 13, "8500000238418579": 13, "8500061": 2, "85058195": 2, "85253333e": 2, "85288047e": 14, "8530215": [2, 16], "85330668": 2, "85389434e": 14, "8549": [2, 13], "85490820e": 14, "855": [13, 14], "85595947": 2, "85639758e": 2, "85887461e": 14, "85931543e": 14, "8596282": [2, 13, 16], "85988828e": 14, "86": 2, "86090195e": 14, "86226807e": 14, "86283447e": 14, "86289062": 2, "863": [13, 14], "86486875e": 14, "8649": [2, 13], "86522058e": 14, "86578705e": 14, "86588262e": 14, "86631615e": 2, "86689648e": 14, "86740491e": 2, "86753201e": 2, "86873947e": 14, "86906667e": 2, "86947741": 2, "87035583": 2, "87086270e": 14, "871": [13, 14], "87173665": 2, "87187656e": 14, "87201837": 2, "87289062e": 14, "87388508": 2, "8739": 2, "87395": 14, "874016": 12, "8748": 0, "8749": [2, 13], "875": [2, 13], "8750": 13, "87505424": 2, "87564152": 2, "87659471": 2, "87666667": 2, "87685684e": 14, "87760029e": 2, "87787070e": 14, "87806457": 2, "87831152e": 14, "87835449": 2, "8787": [8, 9], "87880195": 2, "87888438e": 14, "88": [2, 18], "88126416e": 14, "88285098e": 14, "88353219e": 2, "88386465e": 14, "88421680e": 14, "88435599e": 2, "88487852e": 14, "8849": [2, 13], "88585256": 2, "88642299e": 2, "88884492e": 14, "88985898e": 14, "88d": [0, 1, 2, 13, 16], "89": [2, 13], "89087266e": 14, "89177859": 2, "89201876": 2, "89333333": 2, "89414924e": 2, "89483906e": 14, "8949": [2, 13], "89585293e": 14, "89679443": 2, "89686680e": 14, "89730859e": 14, "89838": 0, "89838028": 9, "89902588": 2, "89913246e": 2, "899999976158142": 13, "8arrai": [1, 2, 13], "8coordin": 0, "8ee07010": 8, "8particle_s": [2, 13], "8string_length": 1, "8valid_min": 13, "8\u00bd": 12, "9": [1, 2, 5, 12, 13, 14, 16, 18], "90": [0, 1, 2, 13, 17, 18], "9000": 13, "90026025e": 14, "90029304e": 2, "90031637": 2, "90083320e": 14, "9015": 0, "90151355": 2, "9016": 0, "9016rang": 0, "90184707e": 14, "90187996": 2, "90189689": 2, "90286094e": 14, "90299974": 2, "90321265e": 14, "9036623": 2, "90383218": 2, "90402344": 2, "90425293": 2, "9049": [2, 13], "90666667": 2, "90682734e": 14, "90784121e": 14, "90885508e": 14, "90892088": 2, "90999985": 2, "90standard_nam": [2, 13], "90valid_max": [2, 13], "91038362": 2, "91062963e": 2, "91068848": 2, "91175989e": 2, "91282129e": 14, "91324006e": 2, "91350430e": 2, "91383535e": 14, "91405629": 2, "91484883e": 14, "9149": [2, 13], "91518311": 2, "915rwpprecipmomenthigh": 2, "91648484": 2, "91649017": 2, "91666667": 2, "91695297": 2, "91715271": 2, "91881543e": 14, "91925635e": 14, "91982930e": 14, "91997681": 2, "91998901": 2, "92": 2, "92000008": 2, "920259": [2, 13, 16], "92084336e": 14, "92220850e": 14, "9226741": [2, 13, 16], "92305943": 2, "92480957e": 14, "9249": [2, 13], "9250": 13, "92516150e": 14, "92582344e": 14, "92595174": 2, "926": 13, "92616895": 2, "926572": [2, 13], "9267": [2, 13], "92683750e": 14, "92709": 2, "92852743": 2, "93": 2, "93080371e": 14, "93107905": 2, "93181758e": 14, "9319873": 2, "93283125e": 14, "933": 14, "9337979": 2, "93425158": 2, "93434608": 2, "93466513": 2, "9349": [2, 13], "93503334e": 2, "93548126": 2, "93664734": 2, "93679766e": 14, "9369999766349792": 13, "937": [2, 13], "93758999": 2, "93781172e": 14, "93798333": 2, "93825195e": 14, "93826027": 2, "93882539e": 14, "93915884": 2, "93long_nam": 2, "94": 2, "94012996": 2, "94081721": 2, "94086844": 2, "94095": 14, "94095axi": [0, 1], "94120508e": 14, "9415427": [2, 13, 16], "94279199e": 14, "94303243": 2, "94308292": 2, "943214": 0, "94321442": 9, "94351977": 2, "94376618e": 2, "94380566e": 14, "94415771e": 14, "94425157": 2, "94481953e": 14, "9449": [2, 13], "945": 2, "94521916e": 2, "94660406e": 2, "9475": 2, "94877481e": 2, "94878594e": 14, "94900991": 2, "94979980e": 14, "949999988079071": 13, "95": [2, 13, 14, 16], "9500": 13, "9502476": [2, 13, 16], "95073851": 2, "95081367e": 14, "9508172": 2, "95090042": 2, "95099764": 2, "95109573e": 2, "95151344": 2, "95332031": 2, "95344338e": 2, "95478008e": 14, "9549": [2, 13], "95532": 2, "95574991": 2, "95579395e": 14, "956158": 13, "9565": 16, "95680781e": 14, "95724805e": 14, "95744": 2, "957761": 2, "95795905": 2, "95857605e": 2, "9586": 16, "95876644e": 2, "959": 2, "95949075": 2, "95999998": 2, "96": 2, "96020117e": 14, "96057445": 2, "96059997": 2, "96077402e": 14, "96081772e": 2, "96118338": 2, "9612": 2, "9612553": 2, "96168814e": 2, "9617442": 2, "96178789e": 14, "96280156e": 14, "96315381e": 14, "96362425": 2, "96398841": 2, "96451906": 2, "9649": [2, 13], "9651": 2, "966": 13, "96664444": 2, "96674664": 2, "96676836e": 14, "96683114": 2, "96713342e": 2, "96758446": 2, "96778203e": 14, "96879609e": 14, "96952766": 2, "96957995": 2, "96999997": 2, "97": 2, "9705885": [2, 13, 16], "97140561": 2, "97276230e": 14, "9731488": [2, 13, 16], "97333333": 2, "97377617e": 14, "97465739": 2, "97473659e": 2, "97479023e": 14, "97489854": 2, "9749": [2, 13], "97498138": 13, "9750": 13, "975e": 13, "977": 13, "97800901": 2, "97849989": 2, "97875645e": 14, "978929": [2, 13], "97919727e": 14, "97977031e": 14, "97992035": 2, "98": [2, 16], "98000026e": 2, "98057476e": 2, "98078398e": 14, "98160889": 2, "9820": 8, "98214990e": 14, "98475059e": 14, "9849": [2, 13], "98510242e": 14, "985352": 0, "98576426e": 14, "98582204": 2, "986": 16, "986084": 0, "986572": 0, "98677812e": 14, "987": [2, 13, 16], "987061": 0, "987549": 0, "988037": 0, "988525": 0, "9887468": 2, "98946131e": 2, "98969500e": 2, "99": [0, 2], "99000000e": 2, "99074473e": 14, "99077346": 2, "99175859e": 14, "99205": 14, "99277266e": 14, "99340293e": 2, "99380072e": 2, "99387": 2, "99429": 2, "9949": [2, 13], "995": 13, "9965928": [2, 13, 16], "99673867e": 14, "99775254e": 14, "99800": 8, "99819336e": 14, "99862265": 2, "99876641e": 14, "99916278": 2, "99945852e": 2, "9999": [1, 2], "99999": 2, "999999": 2, "9999arrai": 1, "9999long_nam": 1, "9999xarrai": 1, "999e": [1, 2], "99e": 2, "9min": 16, "9\u00bd": 12, "A": [15, 16, 18], "And": 11, "For": 1, "If": [1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14], "In": [4, 13, 15], "It": [2, 3, 13, 17, 18], "No": [0, 2, 13, 14], "Not": 2, "The": [2, 4, 5, 10, 11, 13, 14, 15, 17, 18], "Then": [15, 16], "There": [0, 1, 4, 13], "These": 16, "To": 14, "Will": [2, 13], "With": 2, "_": [0, 13, 15, 16, 18], "_accumul": [15, 18], "_bootstrap": [6, 7], "_build_env": 13, "_distutil": [5, 18], "_fillvalu": [1, 2, 8], "_for_kdp": [5, 7], "_generate_titl": [0, 13], "_glu": [5, 7, 8], "_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl": 13, "_nc": 8, "_netcdf4": 1, "_rang": [13, 14], "a0": [2, 13], "a0arrai": 2, "a1": [2, 12, 13, 18], "a1arrai": 2, "a1data_level": 0, "a59b": 8, "a_coefficeint": [15, 16, 18], "aa6b": 8, "abov": [2, 3, 13, 14, 16, 18], "acceler": 13, "access": [15, 18], "accum": 13, "accum_cm": 12, "accum_mm": 12, "accum_nrt": [2, 13], "accum_rtnrt": [2, 13], "accum_rtnrtunit": [2, 13], "accum_total_nrt": [2, 13], "accummul": 13, "accumul": 2, "accumulate_precip": [12, 13, 15, 18], "across": [2, 3], "act": [13, 15, 16, 17, 18], "ad": [4, 14], "adapt": 9, "adc": 2, "add": [1, 7, 8, 12, 13, 14, 16, 17, 18], "add_ax": [9, 13, 18], "add_colorbar": [9, 13, 18], "add_featur": 9, "add_field": [5, 7, 14, 16], "add_field_lik": 16, "add_legend": 13, "add_scale_lin": [13, 17, 18], "add_subplot": [3, 13], "additional_field": 3, "after": [2, 13], "air_pressuresourc": [2, 13], "air_temperaturesourc": [2, 13], "al": [0, 1, 2, 13, 15, 16, 18], "alarmunit": [2, 13], "alaska": 0, "alaskadoi": 0, "alia": 14, "all": [1, 13, 14], "all_fil": [8, 9], "alpha": [7, 9, 13, 17, 18], "also": [1, 2, 13, 15, 16], "alt": [2, 13, 14], "altitud": [0, 1, 2, 13, 14], "altitudearrai": [0, 1], "altitudesourc": [2, 13], "altitudeunit": [0, 1], "american": 17, "amf": [17, 18], "amf2": 13, "amf_sensor_loc": [4, 17, 18], "amf_sensor_plot": 4, "amount": [2, 13], "an": [1, 2, 3, 7, 8, 9, 11, 13, 14, 15, 16, 18], "anaconda3": 14, "analys": 10, "analysi": 7, "analyz": 6, "angl": [1, 2, 13], "angleunit": 1, "ani": [2, 13, 14], "anim": 17, "anl": [0, 1, 2, 13], "antenna": 13, "anyth": 14, "api": 1, "append": [1, 2, 8, 13, 14, 16], "append_ax": 13, "append_data": 17, "appl": 13, "apply_formatt": 18, "april": 17, "aqua": 0, "ar": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 18], "arang": [2, 5, 8, 13, 16, 17, 18], "arch": 13, "arcsin": [13, 14, 17, 18], "arg": [9, 13], "argmin": 3, "argument": 13, "arithmet": [2, 13], "arm": [0, 1, 2, 3, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18], "arm64": 13, "arm_asset_plot": 4, "arm_doe_loc": 4, "arm_doe_plot": 4, "arm_time_vari": 8, "arm_token": [2, 18], "arm_usernam": [2, 18], "armfil": 2, "armliv": 2, "arrai": [0, 1, 2, 8, 13, 14, 18], "art": [0, 1, 6, 7, 8, 9, 13, 14], "artist": 13, "asc": [2, 13], "ascent": [2, 13], "asfreq": 13, "asset": 4, "assign_coord": [2, 13, 16], "assum": [2, 13, 17, 18], "astyp": [1, 8, 12], "atan2": [9, 13, 17, 18], "atm124": [3, 5, 7, 8, 13, 15, 16, 17, 18], "atmo": [13, 14], "atmos_pressur": [2, 13], "atmospher": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 14], "attach": 5, "attenuationcoordin": 2, "attenuationunit": [0, 1, 2, 13], "attenuationvalid_max": 2, "attr": [1, 2, 15, 16, 18], "attribut": [0, 1, 2, 5, 13, 18], "audio": 13, "auto": 6, "automat": [13, 17, 18], "avail": 13, "avc1": 13, "averag": [2, 13], "averi": 13, "avery_point": [2, 13, 16], "awai": [1, 2, 13], "ax": [0, 2, 3, 5, 6, 7, 9, 13, 14, 15, 16, 17, 18], "ax1": [5, 7, 9, 13, 18], "ax2": [0, 5, 6, 7, 9, 13, 18], "ax3": [0, 5, 7, 9, 13, 18], "ax4": [0, 5, 13, 18], "ax5": [5, 13], "ax6": [5, 13], "axarr": 2, "axc": 0, "axd": 13, "axes_grid1": 13, "axi": [5, 7, 14, 16], "axvlin": [5, 13, 18], "azg": [13, 14], "azimuth": [0, 1, 2, 13, 14], "azimuth_angle_from_true_northunit": 0, "azimuth_subset": 6, "azimuth_surveil": 0, "b": [0, 7, 14, 15, 16, 17, 18], "b1": [2, 8, 9, 13, 14, 16, 18], "b1arrai": [2, 13], "b8cb29b120a2": 8, "b_": 17, "b_coefficeint": [15, 16, 18], "b_radar": 8, "back": [8, 16], "bad": [2, 13], "bad_shap": [2, 13], "balloon": 2, "band": [0, 1, 4, 5, 15], "bar": [13, 17, 18], "barnes2": 9, "barrow": 0, "base": [2, 3, 8, 13, 14, 17, 18], "base_dir": 8, "base_rad": 8, "base_radar": 8, "base_scan": 8, "base_scan_index": 8, "base_scan_ppi": 8, "base_tim": 2, "basedunit": 1, "basin": [5, 17, 18], "bbox_inch": [17, 18], "beam": [0, 1, 13], "beam_azimuth_angl": [2, 13], "beam_block": [13, 14], "beam_block_flag": 14, "beam_block_frac": [13, 14], "beam_numb": [2, 13], "beam_tilt_angl": [2, 13], "beam_width": [13, 14], "beamradiu": [13, 14], "beamunit": [0, 1, 2], "bear": [13, 17, 18], "bearr": [13, 17, 18], "bebbington": [13, 14], "bech": [13, 14], "becom": 16, "been": 16, "befor": [0, 1, 2, 3, 13, 15, 16, 18], "beginunit": [2, 13], "behavior": 14, "being": [13, 17, 18], "below": [0, 1, 2, 13, 15], "best": [13, 17, 18], "between": [2, 13, 15], "bgr8": 13, "big": 13, "bin": [5, 6, 7, 13, 14], "bitrat": 13, "black": [4, 13, 17, 18], "blank": 1, "bld": 13, "block": [0, 1, 2, 13, 14], "blockag": 13, "blue": [6, 13], "bnl": [0, 1, 2, 13], "bokeh": [4, 12, 18], "bold": [13, 17, 18], "bonu": [2, 13], "boolean": 2, "born": 2, "both": 4, "bottom": [13, 17, 18], "boucher": 16, "bound": [13, 14], "box": [13, 14], "bradlei": 0, "braham": [0, 1, 2, 13, 15, 16, 18], "braut": 7, "brien": [1, 2], "brush": 13, "brush_creek": [2, 13, 16], "bucket": [12, 13], "bucket_nrt": [2, 13], "bucket_rt": [2, 13], "build": 13, "built": [3, 13], "builtin": 14, "bukov\u010di\u0107": 16, "bulb": [2, 13], "bulletin": 17, "butt": 4, "bw": [13, 14], "byte": [13, 18], "c": [7, 15, 17, 18], "c0": 15, "c1": [0, 1, 2, 3, 13], "c1arrai": 2, "c1comment": [0, 2, 13], "c1datastream": 0, "c1field": 13, "c1location_descript": 0, "c2": [2, 13], "calcul": [0, 1, 2, 13, 16], "calculate_velocity_textur": [5, 7], "calculatedunit": [2, 13], "call": [2, 4, 13, 16], "campaign": [2, 6, 11, 16, 17], "can": [1, 2, 3, 4, 8, 14, 15, 16, 18], "cannot": [13, 17, 18], "capabl": [1, 2, 13], "cart_to_irregular_splin": [13, 14], "cartopi": [5, 7, 9, 13, 14, 17, 18], "case": 5, "case_fil": 0, "categori": [8, 13], "category20": 4, "cax": [13, 18], "cb": [0, 1, 2, 13, 17, 18], "cbar": [17, 18], "cbar2": [13, 18], "cbar_ax": 18, "cbar_ax2": 18, "cbar_elev": 17, "cbar_kwarg": 13, "cbax": 13, "cbb": 13, "cbb_all": [13, 14], "cbb_arrai": [13, 14], "cbb_dict": 14, "cbb_flag": [0, 1, 2, 13, 14], "cbb_flag_dict": 14, "cbb_flags_to_dict": 14, "cbb_to_dict": 14, "cc": [0, 13], "ccr": [5, 7, 9, 13, 14, 17, 18], "ccsopen": [3, 5, 7, 16, 18], "cdf": [2, 18], "center": [2, 5, 13, 17, 18], "center_lat": [13, 17, 18], "center_lon": [13, 17, 18], "centimet": 12, "cf": [0, 1, 2, 13], "cfeatur": [9, 13, 17, 18], "chang": 1, "charact": 1, "check": [0, 1, 2, 3, 4, 8, 13], "choos": 5, "chunk": [13, 18], "chunksiz": [13, 18], "circ": 13, "cirrus127": 0, "cite": [1, 3, 6, 7, 8, 9, 12, 13, 14], "clabel": [13, 17], "clang": 13, "class": [1, 2, 5, 13, 18], "class_size_width": [2, 13], "classif": [0, 1, 2, 13], "cleanup_qc": 2, "client": [8, 9], "clim": 18, "climat": [0, 1, 2, 3, 6, 7, 8, 9, 13, 14], "clinspac": [13, 17], "clip": [13, 14], "clock": [2, 13], "clock_phase_good_count": [2, 13], "clock_phase_posit": [2, 13], "close": [2, 3, 13, 16, 18], "cluster": [2, 9, 13], "cluster_average_signific": [2, 13], "cluster_consistency_rank": [2, 13], "cluster_cumulative_signific": [2, 13], "cluster_weak_a": [2, 13], "cluster_weak_cbit_1_descript": [2, 13], "clutter": [0, 1, 13], "cm": [12, 17, 18], "cm_colorblind": 9, "cmac": [0, 2], "cmac2": 13, "cmac_dod_v2": 1, "cmac_sail": 0, "cmacknown_issu": [0, 1], "cmap": [0, 2, 3, 5, 6, 7, 9, 13, 14, 16, 17, 18], "cnorm": 18, "co": [2, 13, 17, 18], "coastlin": 9, "code": [0, 1, 2, 10, 13], "codeunit": [2, 13], "codina": [13, 14], "coeffici": [0, 16], "coher": [0, 1, 2, 13], "col": [4, 12], "col_rai": 13, "collect": [0, 1, 2, 3, 6, 13], "colli": [0, 1, 3, 6, 7, 8, 9, 13, 14], "color": [0, 2, 4, 5, 6, 9, 13, 17, 18], "colorado": [1, 2, 4, 11, 13], "colorbar": [13, 18], "colorbar_label": [17, 18], "colorspac": 13, "column": [4, 13, 16], "column_list": [2, 16], "columnsect": [2, 16], "com": 12, "combin": [13, 16], "combined_data": 13, "come": 4, "comm": 8, "command_lin": [0, 1, 2, 13], "comment": [0, 1, 2, 13, 14], "common": 10, "comparison": 18, "compatible_brand": 13, "compil": 13, "complet": 14, "complete_block_thr": 14, "complete_block_thresh": 14, "componentunit": [2, 13], "comprehens": 3, "comput": [2, 3, 5, 13, 16, 18], "compute_number_of_point": 3, "concat": [2, 16], "concaten": [2, 13, 14], "concatenationdescript": 2, "conda": 13, "condit": [1, 8], "config": [13, 18], "configur": 13, "conflict": 2, "conform": 14, "connect": [1, 2, 8, 13], "consid": 14, "consist": [2, 13], "constant": 16, "constructor": 18, "contact": [0, 1, 2, 13], "contain": [2, 8, 13], "contaminationbit_7_descript": [2, 13], "content": [2, 13], "contentunit": [2, 13], "continu": 14, "contour": [13, 17], "contract": 10, "convent": [0, 1, 2, 13], "convers": [12, 13], "convert": [1, 2, 3, 8, 13, 14, 15, 16], "coor_ad": 16, "coord": [2, 13, 14], "coordin": [0, 1, 3, 13, 14, 17, 18], "coorespond": 2, "copi": [8, 9, 15, 16], "copyright": 13, "core": [5, 7, 9, 16, 18], "correct": [1, 7, 8, 13, 14, 16], "corrected_differential_phas": [0, 1, 2, 13], "corrected_differential_reflect": [0, 1, 2, 13], "corrected_equivalent_reflectivity_factor": [0, 1], "corrected_equivalent_reflectivity_factorarrai": 13, "corrected_equivalent_reflectivity_factorcoordin": [1, 2, 13], "corrected_equivalent_reflectivity_factorlong_nam": 2, "corrected_log_differential_reflectivity_hv": [0, 1], "corrected_log_differential_reflectivity_hvcoordin": [1, 2, 13], "corrected_log_differential_reflectivity_hvlong_nam": 2, "corrected_radial_velocity_of_scatterers_away_from_instrumentcoordin": 1, "corrected_radial_velocity_of_scatterers_away_from_instrumentlong_nam": 2, "corrected_radial_velocity_of_scatterers_away_from_instrumentvalid_max": [2, 13], "corrected_radial_velocity_of_scatterers_away_from_instrumentvalid_min": [0, 1], "corrected_reflect": [0, 1, 2, 3, 13], "corrected_specific_diff_phas": [0, 1, 2, 13], "corrected_veloc": [0, 1, 2, 13], "correctedunit": [2, 13], "correctli": 2, "correl": [0, 1, 2, 13], "correspond": [2, 13], "count": [5, 18], "count_fillvalu": 2, "countsourc": 13, "countunit": [2, 13], "courtesi": [0, 1, 2, 13], "cpol": 9, "cpu": [2, 8, 16], "cr": [5, 7, 9, 13, 14, 17, 18], "creat": [0, 2, 13, 14, 15, 16, 17, 18], "create_obj_from_arm_dod": [1, 2], "creek": 13, "crest": 4, "cromwel": 12, "cross": [1, 2, 13], "cross_correlation_ratio_hv": [0, 1], "cross_correlation_ratio_hvcoordin": [1, 2, 13], "csu": [0, 1, 8, 13, 15, 18], "cum_beam_block_frac": [13, 14], "cumsum": 16, "cumul": [0, 1, 2, 13, 16, 18], "cumulative_beam_blockag": 14, "current": [13, 15], "custom_plotfunc": 9, "cutoff": 14, "cxx": 13, "cyan": 13, "cycl": [4, 13, 14], "d": [0, 2, 7, 8, 9, 12, 14, 15, 16, 17, 18], "d1cd": 8, "d5f460ae": 8, "d_": 17, "da": [2, 13, 16], "da_a": 13, "da_b": 13, "da_c": 13, "da_d": 13, "dai": [5, 7, 18], "dan": 3, "dar": 13, "darwin": 13, "darwin13": 13, "darwin20": 13, "dash": 13, "dashboard": [8, 9], "dask": [9, 13, 18], "data": [0, 1, 7, 8, 9, 10, 13, 14], "data_dir": [0, 8, 9], "data_level": [1, 2, 13], "data_rast": [13, 14], "data_var": 2, "dataarrai": [1, 8, 13, 16], "datalib": [13, 17], "datapoint": 2, "dataset": [0, 1, 4, 13, 15, 18], "datasetdimens": [0, 1, 2, 13, 18], "datastream": [0, 1, 8, 13, 18], "date": [2, 13, 15, 16, 17, 18], "date_form": [13, 15, 16, 18], "dateformatt": [2, 13, 15, 16, 17, 18], "datetim": [2, 8, 9, 15, 16, 17, 18], "datetime64": [0, 1, 2, 13, 18], "datetimeindex": [1, 13], "datetimetickformatt": 18, "datset": 13, "db": [0, 1, 2, 13, 15, 16], "db_fillvalu": [1, 2], "dbcoordin": [1, 13], "dblong_nam": 2, "dbstandard_nam": [0, 1, 2, 13], "dbz": [0, 1, 2, 5, 6, 8, 9, 13, 14, 15, 16, 17, 18], "dbz_fillvalu": [1, 2], "dbz_plot": 18, "dbz_sel": 7, "dbzhv": [0, 1, 2, 7, 8, 13, 14, 18], "dbzsourc": 13, "dbzstandard_nam": [0, 1, 2, 13], "dc_power": [2, 13], "dd": [2, 13], "dealias": 0, "decim": [13, 17, 18], "deepcopi": 9, "def": [0, 2, 3, 5, 8, 9, 13, 14, 15, 16, 17, 18], "default": [2, 4, 5, 7, 13, 14, 17, 18], "defin": [0, 14], "definit": [2, 13], "deg": [0, 2, 13, 14], "deg2rad": [13, 17, 18], "degc": 1, "degc_fillvalu": 2, "degcsourc": 13, "degcstandard_nam": [0, 1, 2, 13], "degcvalid_min": 13, "degre": [0, 1, 2, 13, 17, 18], "degree_e_fillvalu": [1, 2], "degree_estandard_nam": [0, 1, 13], "degree_evalid_min": 13, "degree_fillvalu": [1, 2], "degree_n_fillvalu": [1, 2], "degree_nstandard_nam": [0, 1, 13], "degree_nvalid_min": 13, "degreearrai": 1, "degreeaxi": 1, "degreesourc": 13, "degreesstandard_nam": [0, 2], "degreestandard_nam": [1, 13], "degreevalid_min": 13, "del": [1, 2, 8, 13, 14], "delai": [2, 13], "delamer": 12, "delet": [1, 8], "dem": 13, "demux": 13, "densiti": [2, 13, 18], "depart": [0, 1, 2, 3, 6, 7, 8, 9, 13, 14], "depict": 14, "deprec": [5, 6, 7, 14, 18], "deprecationwarn": [5, 6, 7, 8, 13, 14, 18], "depth": 12, "describ": 16, "descript": 2, "descriptor": 2, "desir": [0, 2, 6], "destin": [13, 17, 18], "detail": [13, 14], "detectedunit": [2, 13], "determin": [2, 5, 8, 13], "dev": [3, 5, 13, 14, 16, 18], "devdoc": 14, "develop": [0, 1, 2, 13], "deviationunit": [2, 13], "devic": [2, 13], "dew_point_temperaturesourc": [2, 13], "dewpoint": [2, 13], "df": 12, "diamet": [2, 13], "diameter_max": [2, 13], "diameter_min": [2, 13], "dict": [2, 13], "dict_kei": 14, "dictionari": [14, 16], "differ": 16, "differenti": [1, 2, 13], "differential_phase_hv": [0, 1], "differential_phase_hvcoordin": [1, 2, 13], "differential_phase_hvlong_nam": 2, "differential_phase_hvvalid_max": [2, 13], "differential_phase_hvvalid_min": [0, 1], "dim": [1, 2, 3, 13, 16, 17, 18], "dimens": [0, 1, 2, 3, 13, 16, 18], "dimension": [1, 3], "direct": [2, 13], "directionunit": [2, 13], "directori": [0, 2, 16], "disabl": [4, 5, 7, 13, 17, 18], "discard": 2, "discard_var": 2, "discoveri": [12, 15, 18], "disdromet": 13, "disdrometer_precip_accum": 18, "disdrometer_precip_r": 18, "disdromt": 13, "displai": [0, 3, 5, 7, 13, 14, 17, 18], "dist": [13, 17, 18], "distanc": [13, 17, 18], "distingish": 2, "distribut": [2, 7, 8, 9, 13, 18], "distributionunit": [2, 13], "distutil": [5, 18], "div": 12, "divid": 13, "do": [0, 1, 4, 12, 13, 14], "doc": [12, 13], "document": 11, "dod": 2, "dod_v2": 1, "dod_vers": [1, 2, 13], "doe": [2, 4, 13], "doi": [0, 1, 2, 3, 6, 7, 8, 9, 12, 13, 14], "domain": [3, 4, 16], "domin": [0, 1, 2, 13], "don": 1, "done": 10, "dopper": [0, 1, 2, 13], "doppler": [0, 1, 2, 13], "doppler_spectrum_width": [0, 1], "doppler_spectrum_widthcoordin": [1, 2, 13], "doppler_veloc": [2, 13], "dot_product": 16, "doubl": 1, "download": [2, 8, 12, 14], "download_arm_data": 12, "download_data": [2, 15, 18], "dp": [2, 13], "dpi": [5, 13, 15, 17, 18], "draw": [13, 17, 18], "draw_label": [9, 13, 17, 18], "drop": [2, 13, 18], "drop_dupl": 6, "drop_vari": 2, "dropna": [12, 15, 16, 18], "drvsupport": [4, 5, 7, 13, 17, 18], "dry": [2, 13, 16], "ds_all": 16, "ds_at_sit": [16, 18], "ds_list": [2, 16], "ds_resampl": [15, 18], "ds_sond": 2, "dsd_plot": 18, "dsm_mosaic_min_phase_m": 14, "dt": [2, 8, 16], "dtype": [0, 1, 2, 13, 14, 18], "dual": 6, "due": [0, 1, 13, 14, 17, 18], "duplic": 16, "durat": 13, "dvolum": 8, "dynam": 4, "e": [1, 2, 7, 12], "e1": [13, 17, 18], "e25": [13, 14], "each": [0, 4, 8, 13, 14], "eagl": 9, "earth": [13, 14], "easier": 0, "east": [2, 4, 17, 18], "east_riv": [4, 5, 13, 17, 18], "east_river_plot": 4, "eastarrai": 2, "eastward": [2, 13], "eastward_windsourc": [2, 13], "edg": [13, 17, 18], "edgecolor": [5, 13, 17, 18], "edit": 12, "effect": [13, 17, 18], "either": [2, 13], "el": [13, 14], "elec_unit_temp": 2, "eleg": [13, 14], "element": 18, "elementwis": 18, "elev": [0, 1, 2, 8, 13, 14, 17, 18], "elevation_angle_from_horizontal_planeunit": 0, "elevation_contour": [13, 17], "elif": [1, 5, 14], "els": [1, 2, 5, 8, 13, 14], "embelish": [17, 18], "embellish": 13, "empti": 1, "enabl": [4, 5, 7, 13, 17, 18], "encod": [8, 13], "encount": 14, "end": [1, 2, 13], "end_dat": 18, "enddat": 18, "endunit": [2, 13], "energi": [0, 1, 2, 3, 6, 7, 8, 9, 13, 14], "engin": [0, 1, 2, 12, 13], "env": 14, "env2": 7, "equaival": [2, 13], "equaivalent_radar_reflectiivity_factorunit": 1, "equat": [2, 13, 16], "equival": [1, 2, 13, 16], "equivalent_radar_reflect": [2, 13], "equivalent_radar_reflectivity_ott": 2, "equivalent_reflectivity_factor": [0, 1, 13], "equivalent_reflectivity_factor_hv": [0, 1], "equivalent_reflectivity_factor_hvcoordin": [1, 2, 13], "equivalent_reflectivity_factorcoordin": [1, 2, 13], "equivil": [15, 16], "equvial": 0, "error": [2, 3, 7, 13, 18], "esrirefer": 4, "est_rain_rate_z": 16, "est_rainfall_r": 16, "estim": [15, 16], "et": [0, 1, 2, 13, 15, 16, 18], "etc": 4, "eval": [13, 17], "evalu": [2, 13, 17], "evenli": 18, "event": 16, "everi": [1, 8], "ex": 16, "exampl": 15, "exce": [2, 13], "exceed": [2, 13], "except": 8, "exclude_abov": [5, 7], "exec_modul": [6, 7], "exit": 5, "expand_dim": [2, 13, 16], "experiment": [0, 1, 2, 13], "explor": 6, "expon": 16, "export": 12, "extens": [4, 12, 18], "extent": [3, 13, 17, 18], "extra": 16, "extract": [4, 5, 13, 16], "extract_raster_dataset": [13, 14], "extract_sweep": [7, 13, 17, 18], "f": [3, 5, 7, 15, 16, 17, 18], "fab289c28b05": 8, "facecolor": [5, 13, 17, 18], "facil": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 16], "facility_id": [0, 1, 2, 13], "facilitycom": [2, 13], "facilityplatform_id": 0, "facilityrefer": [1, 13], "factor": [0, 1, 2, 13, 17, 18], "factorunit": [2, 13], "fail": [3, 7, 18], "failur": 8, "fall": [2, 13], "fall_velocity_calcul": [2, 13], "fals": [0, 1, 2, 5, 8, 9, 13, 14, 17, 18], "fast": [2, 13], "featur": [9, 13, 17, 18], "ff": 8, "ffmp": 13, "ffmpeg": 13, "ffmpeg_1674566267822": 13, "field": [0, 2, 4, 6, 14, 15, 17, 18], "field_attr": [15, 16], "field_nam": [0, 1, 2, 13], "fig": [0, 2, 3, 5, 6, 7, 9, 13, 14, 16, 17, 18], "fig2": [0, 13], "fig3": [0, 13], "fig4": 0, "figb": 13, "figm": 9, "figsiz": [0, 3, 5, 7, 9, 13, 14, 16, 17, 18], "figur": [3, 5, 6, 7, 9, 14, 16, 17, 18], "file": [10, 12, 14, 15, 17, 18], "file_list": [2, 13, 16, 17, 18], "filenam": [2, 8, 9, 17], "fileunit": [0, 1], "fill": 8, "fill_between": 13, "fill_valu": [1, 14], "fillna": [3, 13], "fillvalu": [1, 8], "filter": [0, 1, 2, 3, 5, 7, 13], "filtered_corrected_differential_phas": [0, 1, 2, 13], "filtered_corrected_specific_diff_phas": [0, 1, 2, 13], "filterwarn": [8, 13, 17], "final": [13, 17, 18], "find": [2, 3, 10], "find_bbox_indic": [13, 14], "fine": [2, 13], "finish": 3, "fiona": [4, 5, 7, 13, 16, 17, 18], "first": [0, 1, 2, 3, 6, 13, 18], "first_dim": 6, "first_sweep": 6, "fix": [1, 8], "fix_tim": 8, "fixed_angl": [0, 1, 13, 14], "fixedformatt": 18, "fixedloc": 18, "flag": [0, 1, 2, 14, 15], "flag_radar": 14, "flagcoordin": 2, "flagunit": [0, 1, 2, 13], "flatten": 7, "float": [12, 13, 14], "float32": [0, 1, 2, 13, 14], "float320": [1, 2, 13], "float32306": 0, "float64": [0, 1, 2, 13, 14, 18], "float640": 2, "float641": [1, 2], "float6411": 2, "float6412": 2, "float64144": 2, "float64162": 2, "float64172": 2, "float642": 2, "float64251": 2, "float64252": 2, "float643": [2, 13], "float64308": 2, "float64312": 2, "float64354": 2, "float6438": 2, "float644": 2, "float64418": 2, "float64434": 2, "float64623": 2, "float647": 2, "float6471": 2, "float649": 2, "float6497": 2, "float64dask": [13, 18], "float64index": [1, 13], "float64nan": [2, 13], "floorunit": [2, 13], "fmt": [13, 17], "fname": 9, "focus": 4, "follow": [0, 2, 3, 13, 16], "fontsiz": [5, 9, 13, 15, 16, 17, 18], "fontweight": [13, 17, 18], "forc": 2, "format": [1, 2, 12], "formatt": 18, "found": [2, 13], "foundbit_2_descript": [2, 13], "four": 3, "fourier": [2, 13], "fp": 13, "frac": 16, "frac_lat": [13, 17, 18], "frac_lon": [13, 17, 18], "fraction": [0, 1, 2, 13, 14, 17, 18], "frame": 13, "framedim": 13, "framer": 13, "free": 8, "freez": [0, 1, 2, 13], "freq": [1, 13], "frequenc": 5, "from": [0, 1, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18], "fromnumer": [5, 7], "fromtimestamp": 8, "frozen": [6, 7], "fuchsia": 13, "fujiyoshi": 16, "full": [2, 3, 8, 13], "function": 14, "futur": [2, 8, 9, 18], "futurewarn": 13, "g": 2, "gate": [2, 13, 14], "gate_id": [0, 1, 2, 13], "gatearrai": 2, "gatefilt": [5, 17, 18], "gateunit": 13, "gather": [8, 9], "gaug": [2, 12], "gauge_precip_accum": [12, 13, 18], "gauge_precip_r": 18, "gbr": 13, "gc_latlon_bear_dist": [13, 17, 18], "gca": [13, 17, 18], "gener": [0, 5, 8, 13], "geo": 4, "geo_d": 6, "geometri": 4, "geopanda": [4, 5, 7, 13, 16, 17, 18], "georef": [13, 14], "geotiff": [13, 14, 17], "get": [13, 14, 16, 17], "get_column_rai": 13, "get_ext": [13, 17, 18], "get_field_loc": [2, 13, 16], "get_gate_lat_lon_alt": 13, "get_tick": 18, "get_writ": 17, "get_x_y_z": 6, "get_xaxi": 16, "get_yaxi": 9, "getenv": 2, "giangrand": [0, 1, 2, 13], "gib": 8, "gid": 12, "gif": [13, 17], "gif_resolution_factor": 13, "github": 13, "give": [17, 18], "given": [2, 5, 13, 15], "gl": [9, 13, 17, 18], "glob": [0, 2, 3, 5, 7, 12, 13, 15, 16, 17, 18], "global": [2, 13], "globe": 14, "glu": 15, "glue_fil": [5, 7, 8, 17], "glue_fix": 8, "gnutl": 13, "good": [2, 13], "googl": 12, "gothic": 18, "gothic_d": 12, "gothicwx": 15, "gov": [0, 1, 2, 11, 13], "govattribut": [0, 1, 2, 13], "gpd": [4, 5, 7, 13, 16, 17, 18], "gpf": [3, 5, 7, 8, 13, 15, 16, 17, 18], "gpl": 13, "grab": [2, 13], "gradient": [13, 14], "grai": [0, 9, 13, 17, 18], "granul": [8, 9], "graph": [0, 3, 5, 7, 9, 13, 14, 17, 18], "grd_d": 2, "green": [0, 13, 14], "grei": [13, 17], "grid": [7, 9], "grid_from_radar": 9, "grid_limit": 3, "grid_radar": 3, "grid_resolut": 3, "grid_shap": 3, "gridlin": [5, 9, 13, 17, 18], "gridspec": 13, "ground": [13, 18], "ground_clutt": [2, 13], "group": 1, "grover": [1, 2, 13], "gs0": 13, "gs00": 13, "gt": [0, 1, 2, 13, 18], "gtime": 9, "guc": 0, "guc915rwpprecipmomenthigh": 2, "guc915rwpprecipmomenthighm1": [2, 13], "gucfacility_id": 0, "guckazrcfrcorgem1": 15, "gucld": 2, "gucldm1": [2, 13, 18], "guclds2": 2, "gucmet": 2, "gucmetm1": [2, 13], "gucsondewnpn": 2, "gucsondewnpnm1": [2, 13], "gucwbpluvio2": 2, "gucwbpluvio2m1": [2, 12, 13, 18], "gucxprecipradarcmacm1": [0, 2, 3, 13], "gucxprecipradarcmacs2": 13, "gucxprecipradars2": [5, 7, 8, 17], "gucxprecipradarsquirem1": 13, "guid": [2, 13], "guidanc": 14, "h": [8, 9, 13, 15, 16, 17, 18], "h264": 13, "h_fillvalu": [1, 2], "ha": 2, "half": [13, 14], "half_power_radiu": [13, 14], "handbook": 1, "handbookdoi": [1, 2, 13], "handbooksourc": 0, "handl": 18, "handler_nam": 13, "hardcod": 13, "hash": [13, 17, 18], "have": [1, 3, 8, 15, 16], "hdf5": 1, "he": 16, "header": 13, "heater_statu": 2, "heating_curr": 2, "heavi": [2, 13], "height": [0, 1, 2, 4, 9, 12, 13, 14, 15, 18], "height_bound": 2, "height_expand": 3, "height_over_iso0": [0, 1, 2, 13], "heightarrai": 1, "heightdescript": 2, "heightlong_nam": 2, "heightmissing_valu": 1, "heightpandasindexpandasindex": 13, "heightsourc": [2, 13], "heightunit": [2, 13], "heistermann": [13, 14], "helmu": [1, 3, 6, 7, 8, 9, 13, 14], "help": [2, 3, 13], "here": [2, 3, 11, 14, 15, 18], "hess": [13, 14], "hhz": 13, "high": [0, 1, 7, 13, 16], "highbit_5_descript": [2, 13], "higher": 18, "highli": [0, 1, 2, 13], "hist": [5, 6, 7], "histogram": 5, "histori": [0, 1, 2, 13], "hold": [1, 2], "holoview": [4, 12], "home": [3, 5, 7, 14, 16, 18], "homeyerrainbow": 9, "hook": 18, "horizont": [1, 13, 17, 18], "horizontalalign": [13, 17, 18], "host": 13, "hour": [2, 5, 7, 13, 16, 17, 18], "hourcom": [2, 13], "hourmin": 18, "hourunit": [2, 13], "hover": 4, "hover_col": 4, "how": [3, 6, 13, 15], "hpa_fillvalu": 2, "hpavalid_min": 13, "hr": [2, 13, 15, 16, 18], "hr_fillvalu": [1, 2], "hrabsolute_accuraci": [2, 13], "hrcomment": 13, "hrstandard_nam": [0, 1, 2, 13], "hrvalid_min": 13, "hspace": [0, 2, 13], "hstandard_nam": [0, 1, 2, 13], "html": [14, 15], "http": [1, 2, 8, 9, 11, 12, 13, 14, 15], "humid": [2, 13], "humidityunit": [2, 13], "hv": [4, 12, 17, 18], "hvplot": [4, 6, 12, 17, 18], "hvunit": [1, 2, 13], "hydrol": [13, 14], "hydrometeorologi": 4, "i": [0, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 16, 17, 18], "ideal": [2, 13], "identfi": 2, "identif": 2, "identifersarrai": 2, "ignor": [5, 7, 8, 13, 17], "imag": [17, 18], "image01564": 18, "image_rtol": 18, "imageio": 17, "import": [0, 1, 7, 8, 9, 13, 14], "importlib": [6, 7], "imread": 17, "in_volum": 8, "inch": [12, 16], "includ": [2, 4, 13, 17, 18], "incoher": [2, 13], "increas": [2, 13], "increasesourc": [2, 13], "ind": [13, 14], "index": [1, 3, 8, 13, 16], "index_end": [13, 14], "index_start": [13, 14], "indic": [2, 13, 16], "individu": [2, 8], "info": 8, "ingestunit": [2, 13], "inher": 13, "init_gate_altitud": 14, "init_gate_longitude_latitud": 14, "initi": [0, 2, 13], "inlin": [9, 13, 17], "inprogress": 2, "input": [2, 17, 18], "input_check": 13, "input_datastream": [1, 2, 13], "insect": [0, 1, 2, 13], "insid": [13, 14], "insitu_dir": 2, "instanc": [13, 17, 18], "instantan": [2, 13], "instead": [5, 6, 7, 18], "institut": [0, 1, 13], "instrument": [0, 1, 4, 13, 16], "instrument_paramet": [0, 1, 2, 13], "instrument_parametersprocess_vers": [1, 2, 13], "instrumentunit": [1, 2, 13], "int": [3, 8, 13, 16, 17, 18], "int16": 1, "int32": 0, "int64": [0, 1, 18], "int640": 1, "int640long_nam": 1, "int64100arrai": 18, "int64index": 1, "integ": 14, "integr": [0, 1, 2, 4], "intens": [2, 13], "intensity_rt": [2, 13], "intensity_rtnrt": [2, 12, 13, 18], "intensity_rtnrt_accumul": [12, 13, 18], "intensityunit": [2, 13], "interact": 4, "intercept": [2, 13], "intercept_paramet": [2, 13], "intercomparison": 18, "interest": [2, 4, 13], "intermountain": 16, "interp": [2, 13, 16], "interpol": [0, 1, 2, 13], "interpolated_profil": [0, 1], "interpolated_profilelong_nam": 2, "interpolated_profilemissing_valu": 1, "interpolated_profilesourc": [2, 13], "interpulse_period": [2, 13], "interv": [2, 13], "invalid": 14, "investig": 5, "io": [0, 1, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18], "iosif": 0, "ipol": [13, 14], "ipykernel_187": 18, "ipykernel_24697": 14, "irregularli": 18, "irv": 12, "isel": [3, 9, 13, 15, 16, 18], "isn": 13, "isom": 0, "issu": [0, 1, 2, 8, 13], "its": [2, 13], "itself": 14, "j": [2, 12, 13, 14], "jackson": [0, 1, 2, 13], "jacobi": [13, 14], "jane": 12, "jj": [1, 3, 6, 7, 8, 9, 13, 14], "joe": 1, "join": [8, 9], "join_radar": 8, "jor": [1, 3, 6, 7, 8, 9, 13, 14], "joseph": [1, 2, 13], "journal": [13, 14], "jrobrien": [0, 1, 2, 13], "jump": [0, 1, 2, 13], "jupyterlab": 8, "just": 8, "k": [5, 6, 12, 13, 15, 17, 18], "ka": 15, "kaband_ref": 15, "kazr_fil": 15, "kazr_lowest_reflect": 15, "kazr_radar": 15, "kazr_snowfal": 15, "kazr_xband_ref": 15, "kb": 13, "kdp": [0, 1, 2, 13], "kdp_": 5, "kdp_field_nam": 5, "kdp_lp": [6, 7], "kdp_lp_sel": 7, "kdp_maesaka": [5, 6, 7], "kdp_maesaka_sel": 7, "kdp_schneeb": 5, "kdp_vulpiani": 5, "keep": [2, 16], "keep_attr": [2, 13], "kei": [14, 15, 16, 18], "kettl": 13, "kettle_pond": [2, 13, 16], "kib": [13, 18], "kind": [5, 7, 13], "km": [0, 1, 13, 17, 18], "km_fillvalu": [1, 2], "kmcoordin": [1, 13], "kml": [4, 5, 7, 13, 17, 18], "kmlong_nam": 2, "kmstandard_nam": [0, 1, 2, 13], "known": [0, 1, 2, 13], "known_issu": [1, 13], "kpa_fillvalu": 2, "kpasourc": 13, "kpastandard_nam": 13, "kth": [5, 7], "kwarg": [9, 13], "label": [0, 4, 5, 6, 13, 15, 16, 17, 18], "label2": 13, "label3": 13, "laboratori": [4, 16], "lambert": 14, "languag": [13, 14], "larg": 4, "large_oth": [2, 13], "larger": 16, "largest": [2, 13], "laser": 13, "laser_disdrometer_d": 18, "laser_disdrometer_fil": 18, "laserband_amplitud": 2, "last": [0, 1, 2, 13], "lat": [2, 3, 4, 9, 13, 14, 16, 17, 18], "lat1": [13, 17, 18], "lat1a": [13, 17, 18], "lat1b": [13, 17, 18], "lat1r": [13, 17, 18], "lat2": [13, 17, 18], "lat2a": [13, 17, 18], "lat2b": [13, 17, 18], "lat2r": [13, 17, 18], "lat_cent": 5, "lat_lin": [5, 13], "lat_tick": 5, "later": [15, 16], "latitud": [0, 1, 2, 3, 5, 13, 14, 16, 18], "latitudecom": [2, 13], "latitudeunit": [0, 1, 2, 13], "latitudevalid_min": [0, 1, 13], "launch": 8, "lavc59": 13, "lavf59": 13, "layer": [0, 1, 2, 13], "lazi": 2, "lbl": 11, "ld": [2, 13], "ld2_site": 2, "ld_2": 2, "ld_match": 13, "ld_precip_accum": 13, "ld_site": 2, "left": [13, 17, 18], "legend": [5, 6, 13, 15, 16, 17, 18], "len": [1, 2, 8, 9, 13, 14, 16], "length": [1, 2, 13, 17, 18], "less": [2, 13], "let": [3, 4, 15, 16], "level": [2, 3, 8, 13, 17, 18], "levelarrai": 2, "levelunit": [0, 1, 2, 13], "lhermiteunit": [2, 13], "lib": [5, 7, 13, 14, 16, 17, 18], "libaom": 13, "libavcodec": 13, "libavdevic": 13, "libavfilt": 13, "libavformat": 13, "libavutil": 13, "libfontconfig": 13, "libfreetyp": 13, "libkml": [4, 5, 7, 13, 17, 18], "libmp3lam": 13, "libopenh264": 13, "libopu": 13, "libpostproc": 13, "librari": [1, 3, 6, 7, 8, 9, 13, 14], "libsvtav1": 13, "libswresampl": 13, "libswscal": 13, "libvpx": 13, "libx264": 13, "libx265": 13, "libxml2": 13, "limit": 13, "lindenmai": 0, "line": [2, 3, 6, 13, 17, 18], "line2d": [2, 6], "line_on": [0, 13], "linear": [2, 13, 15, 16], "linestyl": [5, 9, 13, 17, 18], "linewidth": [5, 9, 13, 17, 18], "link": 11, "liquid": [2, 13, 15, 16], "liquid_water_cont": [2, 13], "liquid_water_distribution_mean": [2, 13], "list": [1, 13, 15, 18], "listdir": [8, 9], "listedcolormap": [0, 17, 18], "live": [2, 18], "load": [8, 13], "load_cell_temp": 2, "load_modul": [6, 7], "loc": [5, 13, 15, 16, 17, 18], "local": [8, 13, 15], "localclust": [8, 9], "locat": [0, 5, 11, 16], "location_descript": [0, 1, 2, 13], "locationarrai": 2, "log": 18, "log_differential_reflectivity_hv": [0, 1], "log_differential_reflectivity_hvcoordin": [1, 2, 13], "logger_temp": 2, "logger_volt": 2, "lognorm": [13, 18], "lon": [2, 3, 4, 9, 13, 14, 16, 17, 18], "lon1": [13, 17, 18], "lon1a": [13, 17, 18], "lon1b": [13, 17, 18], "lon1r": [13, 17, 18], "lon2": [13, 17, 18], "lon2a": [13, 17, 18], "lon2b": [13, 17, 18], "lon2r": [13, 17, 18], "lon_cent": 5, "lon_lin": [5, 13], "lon_tick": 5, "long": [2, 13], "long_nam": [0, 1, 2, 13, 14, 15, 16], "longer": [13, 17, 18], "longitud": [0, 1, 2, 3, 5, 13, 14, 16, 18], "longitudecom": [2, 13], "longitudeunit": [0, 1, 2, 13], "longitudevalid_min": [0, 1, 13], "lonhistori": 13, "look": [3, 5], "loop": [1, 8, 13], "loosevers": [5, 18], "lorent": [13, 14], "lost": 2, "low": [2, 13], "low_snr": [2, 13], "lowbit_11_descript": [2, 13], "lowbit_3_descript": [2, 13], "lowbit_4_descript": [2, 13], "lowbit_8_descript": [2, 13], "lower": [4, 17], "lowest": 13, "lowest_height": 13, "lowsourc": [2, 13], "lp": [1, 2, 13], "lsize": 13, "lt": [0, 1, 2, 13, 18], "lwe_precipitation_ratesourc": [2, 13], "m": [0, 1, 2, 3, 8, 9, 12, 13, 14, 15, 16, 17, 18], "m3": 13, "m4a": 13, "m_fillvalu": [1, 2], "ma": [13, 14], "maesaka": [5, 6], "magnitud": [2, 13], "mai": 2, "main": [4, 8, 13, 17, 18], "maintenance_flag": [2, 13], "major_brand": 13, "make": [1, 2, 13, 16, 17, 18], "make_axes_locat": 13, "mani": [0, 1, 2, 13], "map": [3, 5, 8, 9, 13, 17, 18], "map_panel_ax": 9, "march": [15, 18], "mark": 13, "marker": [13, 14, 15, 18], "markeredgecolor": 14, "markerfacecolor": 14, "markers": 14, "marrai": 13, "marshal": [2, 13], "mask": [1, 5, 7, 8, 14], "mask_and_scal": [1, 8], "masked_arrai": 14, "masked_invalid": [13, 14], "maskedarrai": [5, 7], "match_datasets_act": 2, "math": [9, 13, 17, 18], "mathemat": 2, "matplotlib": [0, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18], "matrosov": [0, 1, 2, 13, 15, 16, 18], "matt": 16, "max": [5, 7, 13, 14, 18], "max_lat": [13, 17, 18], "max_lon": [13, 17, 18], "max_valu": 16, "maximum": 9, "maxwel": [1, 2, 13], "mdim": 2, "mdm": 13, "mean": [0, 1, 2, 13, 15, 17, 18], "meanunit": [2, 13], "measur": [0, 1, 2, 3, 6, 7, 8, 9, 12, 13, 14], "median": [2, 13], "median_filt": 5, "median_volume_diamet": [2, 13], "melt": [0, 1, 2, 13], "memori": [8, 9], "mentor": [0, 1, 2, 13], "merg": 13, "meshgrid": [13, 14], "met_sit": 2, "meta": [1, 13, 18], "metadata": [13, 15, 16], "meteorolog": [13, 17], "meter": [2, 3, 13, 14, 17], "meters_between_g": 14, "meters_to_center_of_first_g": 14, "metersstandard_nam": 0, "meterstandard_nam": 1, "method": [2, 3, 4, 5, 6, 8, 9, 13], "metpi": [12, 17, 18], "mgrover": [3, 5, 16, 18], "mgrover4": [12, 15, 18], "mib": 13, "milisecond": 8, "millisecond": 8, "min": [2, 13, 14, 18], "min_index": 3, "min_lat": [13, 17, 18], "min_lon": [13, 17, 18], "min_valu": 16, "miniforge3": 13, "minimum": [2, 3, 9], "minor_vers": 13, "minu": [2, 13], "minut": [2, 13, 18], "minuteunit": [2, 13], "miss": 3, "missing_valu": 1, "mj2": 13, "mktime": 8, "mm": [0, 1, 2, 12, 13, 15, 16, 18], "mm_fillvalu": 2, "mmabsolute_accuraci": [2, 13], "mmarrai": 13, "mmsourc": 13, "mmvalid_min": 13, "moasic": 13, "mobil": 4, "mockaiti": 12, "mode": [1, 17], "model": [1, 18], "modifi": 14, "modul": 2, "moment": 13, "moment1": 2, "moment2": 2, "moment3": 2, "moment4": 2, "moment5": 2, "moment6": 2, "month": [5, 7, 8, 18], "mor_vis": [2, 13], "more": [3, 14], "most": [1, 2, 13], "motion": [1, 2, 13], "mountain": 13, "mov": 13, "mov_parallel": 13, "movi": 13, "mp4": 13, "mpl": [5, 18], "mpl_toolkit": 13, "mstandard_nam": [0, 1, 2, 13], "mult": 0, "multi": [2, 13], "multi_peak_average_signific": [2, 13], "multi_peak_cumulative_signific": [2, 13], "multi_peak_full_bonus_begin": [2, 13], "multi_peak_full_bonus_end": [2, 13], "multi_peak_partial_bonus_begin": [2, 13], "multi_peak_partial_bonus_end": [2, 13], "multi_peak_steering_veloc": [2, 13], "multi_peak_strongest_percentag": [2, 13], "multi_trip": [0, 1, 2, 13], "multidimension": 1, "mux": 13, "mvc": [1, 8], "my_data": [8, 9], "myf": 13, "n": [0, 1, 2, 13, 16, 17, 18], "n_tilt": 8, "na": 2, "name": [0, 1, 2, 4, 5, 13, 14, 17, 18], "namespac": 5, "nan": [2, 3, 12, 13], "nanlong_nam": [2, 13], "nanni": 8, "nanunit": 2, "narrowbit_9_descript": [2, 13], "nat": 12, "nativ": 13, "naturalearthfeatur": 9, "nbin": [13, 14], "nc": [0, 1, 2, 3, 6, 8, 9, 12, 13, 14, 15, 16, 18], "nc_file": 8, "ncmap": 0, "ncolor": 13, "ncolumn": 16, "ncp": [0, 1, 2, 7, 8, 13, 14, 18], "ncp_field": 7, "ndarrai": [13, 18], "ndimag": 5, "nearest": [6, 9, 13], "necessari": 2, "need": [13, 15, 16, 17, 18], "neon": 13, "nest": [10, 13], "netcdf4": [1, 12], "new": [2, 3, 13, 18], "new_dod": 1, "new_tim": 8, "nexradaw": 9, "next": [3, 4], "nfile": 2, "ngate": [13, 14], "nlabel": 13, "nld": 2, "nm": 13, "nmask": 1, "nmet": 2, "no_peak": [2, 13], "no_scatt": [0, 1, 2, 13], "noaa": 4, "nodata": [13, 14], "node": [13, 17], "nois": [1, 2, 13], "noise_pow": [2, 13], "non": [2, 13], "none": [1, 2, 4, 5, 8, 9, 13, 14, 17, 18], "nor": [2, 13], "norm": [0, 1, 2, 13, 18], "normal": [1, 2, 13], "normalized_coherent_pow": [0, 1], "normalized_coherent_powercoordin": [1, 2, 13], "north": [0, 2, 13], "northarrai": 2, "northunit": [1, 2, 13], "northward": [2, 13], "northward_windsourc": [2, 13], "notat": 16, "note": [0, 1, 8, 13, 14], "notebook": [4, 6, 8, 15, 18], "notic": 3, "nout": 13, "now": [3, 8, 15, 16], "np": [0, 1, 2, 3, 5, 6, 7, 8, 9, 13, 14, 16, 17, 18], "npluvio": 2, "npolar": 13, "nradar": 13, "nrai": [13, 14], "nrwp": 2, "ns_fillvalu": 2, "nsa": 0, "nsaxsaprcfrppic1": 0, "nsaxsaprcmacppic1": 0, "nsite": 13, "nsond": 2, "nssourc": 13, "nsweep": 14, "ntick": 0, "nullloc": [13, 17, 18], "number": [1, 2, 3, 4, 8, 9, 13, 14, 18], "number_coherent_integr": [2, 13], "number_density_drop": [2, 13, 18], "number_detected_particl": [2, 13], "number_fft_point": [2, 13], "number_incoherent_integr": [2, 13], "numberunit": [0, 1, 2, 13], "numer": 14, "numpi": [0, 1, 2, 3, 5, 6, 8, 9, 13, 14, 16, 17, 18], "nyq": [5, 7], "nyquist": [0, 1], "nyquist_valu": [5, 7], "nyquist_veloc": [0, 1], "nyquist_velocity_fillvalu": 1, "nyquist_velocityarrai": [0, 1], "o": [0, 2, 8, 9, 14, 16, 17, 18], "oak": 16, "ob": 2, "object": [0, 1, 2, 5, 8, 13, 14, 16], "obrien_ams2023_radclss_columnextract": 13, "obrien_ams2023_radclss_columnextract_withterrain": 13, "obrien_ams2023_radclss_loc": 13, "obrienj": 13, "observ": [4, 13, 15, 18], "observedunit": [2, 13], "obtain": 13, "occur": [2, 13], "ocean": [13, 14], "off": 2, "offic": [1, 3, 6, 7, 8, 9, 13, 14], "offici": 11, "offset": [7, 8], "old": [0, 1, 2, 13, 18], "onc": [2, 3, 13, 16], "one": [1, 2, 13, 16], "ones": [13, 14], "onli": [2, 3, 7, 13, 17, 18], "open": [1, 2, 3, 6, 7, 8, 9, 13, 14], "open_cfradial1_datatre": 6, "open_dataset": [0, 1, 8, 13, 15], "open_mfdataset": [12, 13], "open_rast": [13, 14], "openssl": 13, "oper": [0, 1, 2, 13], "opposit": [1, 8], "opt": 18, "optic": [2, 13], "orang": 0, "order": [2, 5, 7, 13, 14], "org": [2, 12, 13, 14, 15], "org_precip_rate_mean": [2, 13], "organ": [1, 2, 13], "orient": [13, 18], "orifice_temp": 2, "origin": [8, 13, 15], "originaxi": 13, "originunit": 13, "orlcf": 16, "ornl": 0, "other": [2, 4, 5, 13, 14, 17, 18], "our": [2, 13, 14, 15, 17, 18], "out": 4, "out_d": [2, 3], "out_dir": 8, "out_directori": 17, "out_path": [3, 8], "out_radar": 8, "output": [2, 3, 15, 18], "over": [0, 1, 2, 3, 8], "overhead": 13, "overlai": 13, "overrid": 14, "overwrite_exist": 13, "p": [13, 14], "packag": [2, 5, 7, 14, 16, 18], "pad": 13, "page": 18, "pairunit": [2, 13], "palmer": [2, 13], "panda": [0, 2, 4, 12, 13, 16, 17, 18], "param": 18, "paramet": [2, 3, 13, 14, 17, 18], "part": [1, 3, 6, 7, 8, 9, 13, 14, 16], "partial": [2, 13, 14], "partial_beam_blockag": 14, "particl": [2, 13, 18], "particle_s": [2, 13, 18], "particle_sizepandasindexpandasindex": 13, "particular": [2, 13], "partit": [5, 7], "partli": [1, 3, 6, 7, 8, 9, 13, 14], "pass": 13, "past": [2, 13], "path": [0, 1, 2, 3, 8, 9, 13, 15], "path_integrated_attenu": [0, 1, 2, 13], "path_integrated_differential_attenu": [0, 1, 2, 13], "pathlib": [3, 8], "pbb": 13, "pbb_all": [13, 14], "pbb_arrai": [13, 14], "pbb_dict": 14, "pbb_sail_zoom": 14, "pbb_to_dict": 14, "pc": 13, "pcolormesh": 9, "pd": [0, 2, 12, 13, 16, 17, 18], "peak": [2, 13], "peakunit": [2, 13], "per": [10, 13, 18], "percentageunit": [2, 13], "period": [2, 13], "pfaff": [13, 14], "phase": [0, 1, 2, 13], "phase_proc_lp": 7, "phaseunit": [0, 1, 2, 13], "phasevalid_max": 2, "phidp": [0, 1, 2, 5, 7, 8, 13, 14, 18], "phidp_field": [5, 7], "phidp_kdp_comparison_sail": 5, "phidp_lp": [6, 7], "phidp_textur": [5, 7], "phidp_texture_field": [5, 7], "phidp_uf": 6, "pi": 14, "pic": 13, "pipelin": 3, "pixelheight": 13, "pixelwidth": 13, "pkg": 13, "placement": 13, "plain": [0, 16], "plainsunit": [0, 1, 2, 13], "plainsvalid_max": 2, "plan": [2, 13], "plane": 13, "planeunit": 1, "platecarre": [5, 9, 13, 17, 18], "platform_id": [1, 2, 13], "pleas": [0, 1, 2, 3, 5, 6, 7, 8, 9, 12, 13, 14, 18], "plot": [0, 2, 5, 7, 9, 14], "plot_azimuth_to_rhi": 13, "plot_eastriv": 13, "plot_ppi": 14, "plot_ppi_map": [5, 13, 14, 17, 18], "plot_reflectivity_sail": 17, "plt": [0, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18], "plu": [2, 13], "plug": 16, "plum": 0, "pluv_sit": 2, "pluvio": [13, 15, 16], "pluvio_d": 18, "pluvio_fil": 18, "pluvio_match": 13, "pluvio_statu": [2, 12, 13, 18], "png": [0, 5, 13, 14, 15, 17, 18], "pnnl": 0, "podpac": [13, 17], "point": [2, 3, 4, 7, 13, 17, 18], "pol": 6, "polar": [1, 2, 13, 14], "polarvalu": [13, 14], "polcoord": [13, 14], "polygon": 4, "pond": 13, "pop": 14, "portal": [8, 15], "posit": [1, 2, 13], "positionunit": [2, 13], "possibl": 2, "power": [0, 1, 13, 14], "ppi": [3, 13], "ppi_4deg_": 17, "ppi_4deg_march14_0300": 18, "ppi_animation_april14": 17, "ppi_imag": 17, "ppi_pattern": 8, "ppi_precip_estimate_pluvio": 18, "pre": [2, 13], "precip_r": [2, 13, 18], "precip_rate_accumul": [13, 18], "precipit": [0, 1, 4, 12, 15, 16], "precipitationunit": [2, 13], "precipti": 13, "prefilt": [13, 14], "prefix": 13, "prepar": [1, 3, 6, 7, 8, 9, 12, 13, 14], "present": 2, "press": 13, "pressur": [2, 13], "pressureunit": [2, 13], "preview": 13, "print": [1, 2, 3, 8, 9, 13, 14], "process": [1, 13, 14, 16], "process_point": 16, "process_vers": [0, 1, 2, 13], "product": [0, 1, 2, 13], "profil": 1, "profilearrai": 2, "profileunit": [0, 1, 2, 13], "program": [0, 13, 14], "progress": [8, 13], "proj": [3, 5, 7, 8, 13, 14, 15, 16, 17, 18], "proj_create_from_databas": [3, 7], "project": [5, 9, 11, 13, 14, 17, 18], "projection_range_coordin": 14, "projection_range_coordinatespacing_is_const": [0, 1], "projection_x_coordinatelong_nam": 13, "projection_y_coordinatelong_nam": 13, "projection_z_coordinateaxi": 13, "propag": [0, 1, 2, 13], "properti": 18, "propos": 5, "provid": [2, 3, 4, 13], "psd": 13, "psidp_field": [5, 7], "ptemp": 2, "pthread": 13, "public": [1, 3, 6, 7, 8, 9, 12, 13, 14], "puhakka": 16, "pulsesunit": [2, 13], "pumphous": 13, "pumphouse_sit": [2, 13, 16], "purpl": 13, "purpos": [2, 13], "put": 13, "pwd": [2, 13], "pwd_cumul_rain": [2, 13], "pwd_cumul_snow": [2, 13], "pwd_err_cod": [2, 13], "pwd_mean_vis_10min": [2, 13], "pwd_mean_vis_1min": [2, 13], "pwd_precip_rate_mean_1min": [2, 13], "pwd_pw_code_15min": [2, 13], "pwd_pw_code_1hr": [2, 13], "pwd_pw_code_inst": [2, 13], "px1": 0, "py": [0, 1, 5, 6, 7, 8, 9, 13, 14, 16, 18], "pyart": [0, 1, 2, 3, 5, 6, 7, 8, 9, 14, 15, 16, 17, 18], "pyart_bal": 5, "pyart_budrd12": 0, "pyart_carbone42": [5, 6, 7], "pyart_env": 14, "pyart_homeyerrainbow": [0, 2, 3, 5, 6, 13, 14, 16, 18], "pyart_langrainbow12": 0, "pyart_wild25": 5, "pyplot": [0, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15, 16, 17, 18], "python": [1, 3, 6, 7, 8, 9, 13, 14], "python3": [5, 7, 14, 16, 18], "pytz": 9, "q": [2, 13], "qc_equivalent_radar_reflectivity_ott": 2, "qc_heating_curr": 2, "qc_laserband_amplitud": 2, "qc_logger_temp": 2, "qc_logger_volt": 2, "qc_precip_r": 18, "qc_reflect": 15, "qc_sensor_voltag": 2, "qpe": 16, "qt": 13, "quadmesh": [2, 3, 6, 18], "qual": [13, 14], "qualiti": [2, 13, 15], "queri": 1, "r": [0, 1, 2, 5, 13], "r_kdp": [5, 7], "rad": 8, "rad2deg": [13, 17, 18], "rad_2": 13, "rad_3": 13, "rad_d": 13, "radar": [0, 1, 3, 4, 5, 6, 7, 8, 9, 13, 14, 15, 17], "radar0": 13, "radar_accum": 13, "radar_acum_2": 13, "radar_beam_width_v": 13, "radar_dir": 2, "radar_glu": 8, "radar_height_offset": [13, 14], "radar_list": 8, "radar_match": 13, "radar_plot": [17, 18], "radar_tim": 13, "radardisplai": [0, 3, 5, 7, 13], "radarmapdisplai": [5, 13, 14, 17, 18], "radclssknown_issu": [2, 13], "radial": [1, 2, 13], "radial_azimuth_coordinatearrai": 0, "radial_azimuth_coordinatestandard_nam": 1, "radial_elevation_coordin": 1, "radial_elevation_coordinatearrai": [0, 1], "radial_range_coordin": 14, "radial_range_coordinatearrai": [0, 1], "radial_velocity_of_scatterers_away_from_instru": [0, 1], "radial_velocity_of_scatterers_away_from_instrumentcoordin": [1, 2, 13], "radial_velocity_of_scatterers_away_from_instrumentlong_nam": 2, "radial_velocity_of_scatterers_away_from_instrumentscoordin": [1, 2, 13], "radiat": [0, 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14], "rai": [0, 1, 14], "railwai": [2, 13], "rain": [0, 1, 2, 7, 13, 16], "rain_rate_a": [0, 1, 2, 13], "rainfal": [1, 2, 13, 16], "rainfall_r": 13, "rainfall_ratelong_nam": 2, "rainfall_rateunit": 0, "rainfall_ratevalid_max": [2, 13], "rainfall_ratevalid_min": [0, 1], "rais": 18, "rang": [0, 1, 2, 9, 13, 15, 16], "range_r": [13, 14], "range_to_measurement_volum": 14, "range_to_measurement_volumeunit": 0, "rangearrai": [1, 2], "rangecom": 1, "rangeleast_significant_digit": 1, "rangemissing_valu": 1, "rangepandasindexpandasindex": 1, "rangesourc": [2, 13], "rangestandard_nam": 13, "rangevalid_min": 1, "rankunit": [2, 13], "rastercoord": [13, 14], "rastercoords_": [13, 14], "rasterfil": [13, 14], "rastervalu": [13, 14], "rastervalues_": [13, 14], "rate": [1, 2, 3, 7, 13, 15], "rateunit": [2, 13], "ratio": [2, 12, 13, 15, 16], "ratiounit": [1, 2, 13], "raw": [2, 8, 13], "raw_fall_veloc": [2, 13], "raw_fall_velocityhistori": [2, 13], "raw_fall_velocitypandasindexpandasindex": 13, "raw_spectrum": [2, 13], "ray_azimuth_angleaxi": 0, "ray_elevation_angleaxi": 0, "rdbu_r": 0, "re": [13, 17, 18], "reach": [2, 13], "read": [0, 2, 3, 7, 8, 9, 14], "read_excel": 12, "read_fil": [4, 5, 13, 17, 18], "read_netcdf": [2, 15, 18], "readi": [13, 14], "real": [2, 13], "recent": 4, "record": [2, 13], "red": [0, 6, 14], "ref": 17, "refer": [0, 1, 2, 13, 14, 15, 16], "referenceunit": [0, 1], "refl_field": [5, 7], "reflecitivti": 13, "reflect": [1, 2, 13], "reflectivity_field": [15, 16], "reflectivitycoordin": 2, "reflectivityunit": [0, 1, 2, 13], "reflectivti": [13, 16], "refract": [13, 14], "region": [0, 1, 2, 13, 14], "regist": 18, "registr": 18, "rel": [2, 13, 18], "relat": [15, 16], "relationship": 18, "relationship_equ": [15, 16, 18], "relationship_nam": [15, 16, 18], "relative_humiditysourc": [2, 13], "releas": 14, "remov": [6, 7], "rename_var": 2, "repeat": 1, "replac": [0, 2, 13, 15, 16, 18], "replace_exist": [5, 7, 14, 16], "report": [2, 13], "repres": 8, "request": 13, "requir": 8, "resampl": [2, 13, 15, 18], "research": [0, 1, 2, 3, 6, 7, 8, 9, 13, 14], "reset_flag": [2, 13], "resetunit": [2, 13], "resolut": [3, 5, 13, 14], "respons": [0, 1, 2, 13], "result": 2, "retriev": [2, 5, 7], "return": [0, 2, 3, 5, 8, 9, 10, 13, 14, 15, 16, 17, 18], "return_index": 16, "revis": 3, "rg": [13, 14], "rh": [2, 13], "rh_mean": [2, 13], "rh_std": [2, 13], "rhohv": [0, 1, 2, 7, 8, 13, 14, 18], "rhv_field": 7, "ridg": 16, "right": [2, 5, 13, 15, 16, 17, 18], "right_label": [5, 13, 18], "rightside_up": [13, 17], "river": [4, 17, 18], "rjackson": 0, "rlimit": [13, 14], "road": [2, 13], "roaring_judi": [2, 13, 16], "robert": [0, 1, 2, 13], "root": 1, "rotat": 18, "round": [2, 5, 13], "row": 12, "rtol": 18, "run": [8, 18], "runner": 13, "runtimewarn": 14, "rw": [4, 5, 7, 13, 17, 18], "rwp": 13, "rwp_quality_flag": [2, 13], "rwp_signal_to_noise_ratio": 2, "rwp_site": 2, "s192": 0, "s2": 13, "s_fillvalu": [1, 2], "safe": [14, 16], "safeti": [2, 13], "sail": [3, 8, 9, 10, 15, 16, 17, 18], "sail_cmac_dod": 1, "sail_instru": [4, 17, 18], "sail_mosa": 13, "sail_mosaic_": 13, "sail_overlai": 4, "sail_snowfall_retrievals_march_14_2022": [15, 16, 18], "sail_squire_moas": 13, "sail_squire_radclss_moas": 13, "same": [2, 13], "sampl": [2, 6, 13, 18], "saniti": 2, "sar": 13, "save": [0, 13], "savefig": [0, 5, 13, 14, 15, 17, 18], "scalar": [13, 14, 17, 18], "scale": [9, 13, 17, 18], "scale_color": 13, "scan": [0, 1, 2, 16, 18], "scatter": [0, 7, 13, 15, 18], "scattererunit": [0, 1, 2, 13], "scatterervalid_max": 2, "schedul": [8, 9], "schneeb": 5, "sci": [13, 14], "scienc": [1, 3, 6, 7, 8, 9, 13, 14], "scipi": 5, "scolli": [0, 1, 2, 13], "score": [2, 13], "scorebit_6_descript": [2, 13], "scott": [0, 1, 2, 13], "scratch": 8, "sea": [2, 13], "search": 2, "second": [1, 8], "see": [0, 1, 2, 13], "sekhon": 16, "sel": [2, 6, 8, 9, 12, 13, 15, 16, 18], "select": [2, 3, 13], "self": 14, "semimajor_axi": 14, "semiminor_axi": 14, "send": 8, "sens": 2, "sensit": [13, 14], "sensor_temperatur": 2, "sensor_to_target_azimuth_angl": 1, "sensor_to_target_azimuth_anglearrai": 1, "sensor_to_target_elevation_angleaxi": 1, "sensor_voltag": 2, "servic": 2, "set": [1, 2, 5, 8, 9, 13, 16, 18], "set_index": [9, 12], "set_label": [13, 17, 18], "set_label_text": 9, "set_major_formatt": [13, 15, 16, 18], "set_major_loc": [13, 17, 18], "set_ticklabel": [16, 17, 18], "set_titl": [7, 13, 18], "set_vis": 13, "set_xlabel": [7, 13, 16, 18], "set_xlim": [7, 13, 18], "set_ylabel": [7, 13, 16, 18], "set_ylim": [7, 9, 13, 16, 18], "setup": 13, "setuptool": [5, 18], "shape": [2, 13, 14, 18], "share": [3, 5, 7, 8, 12, 13, 15, 16, 17, 18], "sharei": 18, "sharex": [13, 18], "sheet1": 12, "sheet_nam": 12, "sherman": [0, 1, 2, 13], "shiftcoordin": 2, "shiftunit": [0, 1, 2, 13], "shiftvalid_max": 2, "short": [2, 13], "shorten": [13, 17, 18], "should": [2, 18], "show": [3, 13, 15, 16, 17, 18], "shutil": [8, 9], "side": 13, "sidea": 13, "signal": [1, 2, 13], "signal_pow": [2, 13], "signal_to_noise_ratio": [0, 1, 2, 13], "signal_to_noise_ratiocoordin": [1, 2, 13], "signal_to_other_ratio": [2, 13], "signific": [2, 13], "significanceunit": [2, 13], "silenc": 14, "similar": [15, 16], "simple_moment_calcul": 5, "simul": [0, 1, 2, 13], "simulated_veloc": [0, 1, 2, 13], "sin": [2, 13, 17, 18], "sinc": [1, 2, 8, 13, 18], "singl": [1, 2, 4, 7, 13, 14, 16], "sirp": [2, 13], "site": [5, 7, 14, 15, 17, 18], "site_id": [0, 1, 2, 13], "site_lat": 13, "site_lon": 13, "site_nam": [16, 18], "siteamf_sensor_loc": 4, "sitecoord": [13, 14], "sitepandasindexpandasindex": 13, "siteunit": 2, "situ": 13, "size": [1, 2, 13, 17, 18], "skip": 2, "skipna": 3, "slate": [6, 7], "slice": [2, 6, 8, 12, 13, 18], "slope": [0, 2, 13], "slope_paramet": [2, 13], "sm": [1, 3, 6, 7, 8, 9, 13, 14], "smaller": 8, "smallest": [2, 13], "snider": [0, 1, 2, 13, 16], "snodgrass": [2, 13], "snow": [0, 1, 2, 13, 15, 16], "snow_depth_intens": [2, 13], "snow_field": 3, "snow_field_nam": [15, 16], "snow_rat": 16, "snow_rate_from_d": [15, 16], "snow_rate_m2009_1": [0, 1, 2, 3, 13], "snow_rate_m2009_1_accumul": 13, "snow_rate_m2009_2": [0, 1, 2, 3, 13], "snow_rate_m2009_2histori": [0, 1], "snow_rate_ws2012": [0, 1, 2, 3, 13], "snow_rate_ws88diw": [0, 1, 2, 3, 13], "snow_z": [15, 16], "snowfal": [1, 2], "snowfall_r": [15, 16], "snowfall_rate_from_z": [15, 16], "snowfall_ratecoordin": 1, "snowfall_ratelong_nam": 2, "snowfall_ratevalid_max": [2, 13], "snowfall_ratevalid_min": [0, 1, 13], "snowunit": [2, 13], "snr": [14, 18], "so": [1, 2, 8], "societi": 17, "softwar": [1, 3, 6, 7, 8, 9, 13, 14], "solv": 16, "some": [0, 1, 2, 3, 13], "sond": 2, "sonde_list": 2, "sonde_sit": 2, "sondewnpn": 2, "sort": [2, 3, 5, 7, 8, 12, 13, 15, 16, 17, 18], "sound": 2, "sounding_temperatur": [0, 1, 2, 13], "sourc": [1, 2, 3, 6, 7, 8, 9, 13, 14, 16], "space": 8, "spacing_is_const": 14, "specif": [0, 1, 2, 8, 13, 14], "specifi": 4, "specific_attenu": [0, 1, 2, 13], "specific_attenuationlong_nam": 2, "specific_attenuationvalid_max": [2, 13], "specific_attenuationvalid_min": [0, 1], "specific_differential_attenu": [0, 1, 2, 13], "specific_differential_phase_hv": [0, 1], "specific_differential_phase_hvcoordin": [1, 2, 13], "specific_differential_phase_hvlong_nam": 2, "spectral": [1, 2, 13], "spectral_r": 13, "spectral_shape_scor": [2, 13], "spectral_width": [2, 13], "speed": [2, 13], "speedunit": [2, 13], "spherical_to_proj": [13, 14], "splash": [2, 13, 16], "splash_instru": [4, 17, 18], "splash_loc": [4, 17, 18], "splash_location_plot": 4, "splash_overlai": 4, "split": [2, 8, 13], "sponsor": 11, "spreadsheet": 12, "sqiunit": [1, 2, 13], "sqrt": 14, "squire_grid": 13, "squire_list": 13, "srivastava": 16, "ssourc": 13, "sstandard_nam": [0, 1, 2, 13], "standard": 13, "standard_nam": [1, 2, 13, 14, 15, 16], "standardarrai": 1, "start": [2, 3, 4, 6, 13, 16], "start_dat": 18, "startdat": 18, "startstandard_nam": 1, "startunit": [1, 2, 13], "state": [1, 2, 4, 13], "static": [4, 13], "station": 13, "stationarrai": 2, "statu": [2, 8, 9], "statusunit": [2, 13], "steer": [2, 13], "stem": 3, "still": [0, 1, 2, 13], "stop": 13, "store": [13, 15, 16], "str": [0, 1, 2, 8, 13, 17, 18], "str_": 1, "stream": 13, "strform": 8, "strftime": [8, 9, 17, 18], "string": [2, 13, 14], "string_length": 1, "strip": 12, "strongest": [2, 13], "strptime": 8, "studi": 4, "sturm": 12, "subgridspec": 13, "submiss": 17, "subplot": [0, 2, 5, 6, 7, 13, 16, 17, 18], "subplots_adjust": [0, 2, 18], "subset": [2, 3, 8, 13], "subset_d": 3, "subset_lowest_vertical_level": 3, "subset_point": [2, 16], "subtitl": 13, "subtract": 13, "success": 8, "sum": [2, 13], "suppli": 2, "supply_volt": 2, "support": [1, 3, 4, 5, 6, 7, 8, 9, 13, 14, 17, 18], "supported_driv": [4, 5, 7, 13, 17, 18], "suptitl": 16, "sure": [1, 2, 13, 16, 17, 18], "surfac": 4, "surface_air_pressuresourc": [2, 13], "svalid_min": 13, "sw": 8, "swe": 16, "swe_inch": 12, "swe_mm": 12, "swe_ratio": [15, 16], "sweep": [0, 1, 7, 8, 13, 14, 16], "sweep_0": 6, "sweep_centroid": [13, 14], "sweep_end_ray_index": [0, 1, 13, 14], "sweep_mod": [0, 1, 8], "sweep_numb": [0, 1], "sweep_start_ray_index": [0, 1, 13, 14], "sweepunit": 1, "swscaler": 13, "sy": [2, 5, 7, 8, 16], "sync": 2, "synchron": 2, "synop": [2, 13], "syst": [13, 14], "system": [0, 1, 2, 13, 15], "sz": 8, "t": [1, 2, 13, 14], "tab": 6, "tabl": [2, 13, 16], "take": [4, 14, 15, 16], "target": [1, 2, 13], "task": 18, "tb": 9, "tbn": 13, "tbr": 13, "tbrg": [2, 13], "tbrg_precip_tot": [2, 13], "tbrg_precip_total_corr": [2, 13], "tch_mosaic_min_phase_m": 14, "tcp": [8, 9], "tdry": [2, 13], "team": [0, 1, 2, 13], "technic": [13, 14], "technol": [13, 14], "temp": 12, "temp_mean": [2, 13], "temp_std": [2, 13], "temperatur": [2, 13], "temperatureunit": [2, 13], "tempfil": [8, 9], "templat": 16, "temporarydirectori": 8, "terrain": [0, 1, 14, 17], "terrain_blockag": 1, "terrain_blockagearrai": 1, "terrain_blockagesourc": [2, 13], "terrain_blockagevalid_max": [0, 1, 2, 13], "terraintil": [13, 17], "test": [2, 6, 8], "text": [13, 16, 17, 18], "textur": 13, "texture_of_complex_phas": [5, 7], "than": [2, 13, 16, 17, 18], "them": [4, 10], "ther": 0, "thi": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18], "third_sweep": [17, 18], "though": 15, "thread": 8, "three": 1, "threshold": [2, 5, 13], "through": [8, 13, 14], "throughout": 2, "throw": 13, "tick": [0, 5], "ticker": [0, 13, 17, 18], "ticklab": [0, 13], "tif": 14, "tif_fil": [13, 14], "tif_nam": [13, 14], "tight": [16, 17, 18], "tight_layout": 5, "tile": [4, 8, 13, 17], "tile_format": [13, 17], "tilt": [2, 13], "time": [0, 1, 2, 3, 8, 9, 12, 13, 15, 17, 18], "time_bound": 2, "time_coverage_end": [0, 1], "time_coverage_start": [0, 1], "time_in_fil": 17, "time_in_label": [17, 18], "time_in_seconds_since_volume_startstandard_nam": 0, "time_max": [13, 18], "time_min": [13, 18], "time_offset": 2, "time_refer": [0, 1], "time_str": [0, 13], "timearrai": [0, 1], "timecalendar": 1, "timedelta": [8, 9], "timedelta64": 8, "timepandasindexpandasindex": [1, 13], "timestamp": [0, 16], "titl": [0, 3, 4, 12, 13, 15, 16, 17, 18], "tmp": [8, 14, 18], "tmp_path": 8, "tmpdir": 8, "to_dataset": [6, 13, 17], "to_datetim": [0, 2, 12, 13, 16, 17, 18], "to_netcdf": [1, 2, 3, 8, 9, 16], "to_xarrai": [3, 9, 12], "togeth": [2, 4, 10, 13, 16, 18], "toggl": [5, 18], "token": [2, 18], "toler": 18, "too": [2, 13], "too_narrow": [2, 13], "too_strong": [2, 13], "too_wid": [2, 13], "toolkit": [1, 3, 6, 7, 8, 9, 13, 14], "top": [3, 13, 17, 18], "top_label": [5, 13, 18], "total": [2, 8, 13], "totalunit": [2, 13], "tower": [13, 14], "transform": [2, 13, 16, 17, 18], "transformunit": [2, 13], "translat": [0, 1, 2, 13], "transpar": 5, "transpos": 2, "trip": 0, "tropospher": 2, "true": [1, 2, 3, 4, 5, 7, 8, 9, 13, 14, 16, 17, 18], "truemeters_to_center_of_first_g": [0, 1], "try": [17, 18], "tt": [9, 13], "turn": 14, "twinx": 6, "two": [2, 4, 13], "type": [1, 2, 8, 13, 14, 18], "u": [0, 1, 2, 3, 6, 7, 8, 9, 13, 14], "u14": 2, "u2": 13, "u21": 1, "u6": 18, "u_wind": [2, 13], "underscor": 13, "unfilt": [2, 13], "unfold": [0, 1, 2, 6, 13], "unfolded_differential_phas": [0, 1, 2, 13], "uniqu": 16, "unit": [0, 1, 2, 8, 13, 14, 15, 16, 17, 18], "unitlessarrai": 0, "univers": [1, 2, 4, 13], "unix": 13, "unknown": [0, 1, 2, 13], "up": [8, 13, 16], "updat": [1, 2, 8, 13, 16], "upon": [2, 13], "upper": [0, 5, 13, 15, 16, 17, 18], "url": 2, "us": [0, 1, 4, 5, 8, 9, 14, 15, 16, 17, 18], "uscounti": [17, 18], "user": [0, 1, 2, 3, 6, 7, 8, 9, 12, 13, 14, 16], "usernam": [2, 18], "userwarn": [5, 7, 14, 16, 18], "usp": 12, "utc": [0, 1, 13, 15, 16, 17, 18], "util": [2, 8, 12, 14, 15, 16, 18], "v": 7, "v2": 17, "v_wind": [2, 13], "valid": [2, 13], "valid_max": [2, 15, 16], "valid_min": [13, 15, 16], "valu": [0, 2, 8, 12, 13, 14, 16, 18], "value_when_condition_is_not_met": [1, 8], "vap_nam": [1, 2, 13], "vapor": [2, 13], "vapor_pressure_mean": [2, 13], "vapor_pressure_std": [2, 13], "var": [1, 2, 3, 8], "variabl": [0, 1, 3, 8, 13, 14, 18], "variou": 4, "vector": [2, 13, 17, 18], "vel": [0, 1, 2, 5, 7, 8, 13, 14, 18], "vel_field": [5, 7], "vel_textur": [5, 7], "vel_texture_field": 5, "veloc": [1, 2, 13], "velocity_textur": [0, 1, 2, 5, 7, 13], "velocitycoordin": 2, "velocityunit": [0, 1, 2, 13], "velocityvalid_max": 2, "vendor_id": 13, "verifi": 2, "version": [1, 5, 13, 18], "version3": 13, "vertic": [3, 13, 14, 17, 18], "verticalalign": [13, 17, 18], "verticalunit": [2, 13], "via": 2, "video": 13, "videohandl": 13, "visibility_in_airsourc": [2, 13], "visibilityunit": [2, 13], "visibl": [5, 18], "visual": 6, "vlist": 8, "vmax": [0, 3, 5, 6, 7, 9, 13, 16, 17, 18], "vmin": [0, 3, 5, 6, 7, 9, 13, 16, 17, 18], "volt_min": 2, "volum": [0, 1, 2, 10, 13, 16, 18], "volume_from_list": 8, "volume_numb": [0, 1], "volumeunit": [1, 2, 13], "vulpiani": 5, "wa": [2, 13, 14, 15, 17, 18], "walk": 15, "wall": [2, 8, 16], "wang": 12, "want": [1, 4, 14], "warn": [5, 7, 8, 9, 13, 14, 16, 17, 18], "water": [2, 13, 15, 16], "water_vapor_partial_pressure_in_airsourc": [2, 13], "watersh": [4, 13], "wawa": [2, 13], "wbpluvio2": [2, 12], "wdir_vec_mean": [2, 13], "wdir_vec_std": [2, 13], "we": [3, 4, 5, 6, 7, 8, 15, 16, 17, 18], "weak": [2, 13], "weather": [1, 2, 3, 6, 7, 8, 9, 13, 14, 18], "weather_cod": [2, 13], "web": 2, "websit": [4, 11], "weigh": [12, 13], "weighting_funct": 9, "well": [13, 17, 18], "went": 13, "west": 16, "wgs84_semimajor_axi": 14, "when": 13, "where": [0, 1, 2, 3, 8, 12, 13, 15, 16, 18], "wherea": 3, "which": [2, 3, 4, 5, 7, 8, 13, 17, 18], "whole": 16, "whose": 13, "widebit_10_descript": [2, 13], "width": [0, 1, 2, 4, 8, 12, 13, 14, 18], "widthunit": [1, 2, 13], "wieler": 16, "wind": 13, "wind_from_directionsourc": [2, 13], "wind_speedsourc": [2, 13], "wish": 13, "within": [1, 2, 6, 13, 16, 17, 18], "without": [0, 1], "wmo": [2, 13], "wolf": [0, 1, 2, 3, 5, 7, 8, 13, 15, 16, 17, 18], "wolf_and_snid": [15, 16, 18], "won": 1, "work": [1, 3, 6, 7, 8, 9, 13, 14, 15, 17, 18], "worker": [8, 9], "would": [3, 16], "wradlib": [13, 14], "write": 3, "write_cfradi": [8, 14], "writer": 17, "wrl": [13, 14], "wrong": 5, "wspace": [0, 2], "wspd": [2, 13], "wspd_arith_mean": [2, 13], "wspd_vec_mean": [2, 13], "wsr": [0, 1, 2, 13, 16], "wsr_88d_high_plain": [15, 16, 18], "wsr_88d_intermountain_west": [15, 16, 18], "wstat": [2, 13], "www": [1, 2, 13, 15], "wx": 15, "x": [0, 1, 3, 4, 5, 6, 9, 15, 18], "x00": 0, "x00azimuth_surveil": 0, "x27": [0, 1, 2, 13, 18], "x86_64": 13, "x_cut_panel_ax": 9, "x_grid_limit": 3, "x_grid_point": 3, "xarrai": [0, 1, 2, 3, 6, 8, 13, 15, 16, 17, 18], "xarri": 16, "xaxi": [13, 15, 16, 17, 18], "xband": [5, 15, 18], "xband_d": 15, "xband_ref": 15, "xd": 6, "xgrid": 9, "xlabel": [4, 5, 18], "xlabel_styl": [9, 13, 17, 18], "xlabels_top": [5, 17, 18], "xlim": [3, 5, 6, 7, 13, 14, 15, 17, 18], "xlsx": 12, "xpandasindexpandasindex": 13, "xprec": [1, 2, 13], "xprecip": 13, "xprecip_fil": 15, "xprecipradar": [0, 1, 2, 13], "xprecipradar_cmac2_diff_reflect": 0, "xprecipradar_cmac2_multipanel": 0, "xprecipradar_cmac2_reflect": 0, "xprecipradar_cmac2_snowfal": 0, "xprecipradar_cmac2_veloc": 0, "xprecipradar_cmac2_velocity_textur": 0, "xprecipradar_guc_grid_": 9, "xprecipradar_guc_grid_20211215": 9, "xprecipradar_guc_volume_": [5, 7, 8], "xprecipradar_guc_volume_20220217": 14, "xprecipradar_guc_volume_20220301": 8, "xprecipradar_guc_volume_20220314": [15, 16, 18], "xprecipradar_guc_volume_20220412": 17, "xprecipradarcmacppi": [1, 2, 13], "xprecipradarmentor": [1, 2, 13], "xprecipradarradclss": [2, 13], "xprecipradars2": 1, "xprecipradarsourc": [1, 2, 13], "xr": [0, 1, 2, 6, 8, 12, 13, 15, 16, 17, 18], "xradar": 6, "xsapr": 0, "xsaprcmacppi": 0, "xsaprcmacppidod_vers": 0, "xtick": 18, "xunit": 13, "y": [3, 4, 6, 8, 9, 13, 14, 15, 16, 17, 18], "y_axi": 9, "y_cut_panel_ax": 9, "y_grid_limit": 3, "y_grid_point": 3, "ya": 14, "year": [5, 7, 15], "yellow": 0, "ylabel": [4, 5, 15, 18], "ylabel_styl": [9, 13, 17, 18], "ylabels_right": [5, 17, 18], "ylim": [3, 5, 6, 7, 13, 14, 15, 16, 17, 18], "you": [1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14], "your": [2, 18], "ypandasindexpandasindex": 13, "ytick": 18, "yunit": 13, "yuv420p": 13, "yyyi": 2, "z": [0, 1, 3, 9, 13, 18], "z_": [17, 18], "z_grid_limit": 3, "z_grid_point": 3, "z_h": 13, "z_lin": [15, 16], "zach": 13, "zachari": [0, 1, 2, 13], "zdr": [0, 1, 2, 8, 13, 14, 18], "zdr_sel": 7, "zdrc": 7, "zero": [2, 13], "zip": [2, 13, 16], "zlib": 13, "zoom": [13, 17, 18], "zoom_max_lat": 13, "zoom_max_lon": 13, "zoom_min_lat": 13, "zoom_min_lon": 13, "zorder": 13, "zposit": 13, "zs_field": [15, 18], "zs_relationship_dict": [15, 16, 18], "zsherman": 14, "zssherman": 13, "\u00bac": 12, "\u00baf": 12, "\u00bd": 12}, "titles": ["Figures for the SAIL CMAC2.0 Technical Document", "Grab the CMAC DOD via ACT I/O", "Extracted Radar Columns and In-Situ Sensors (RadCLss) Dataset", "Grid QC\u2019d Dataset - Surface QUantitatIve pRecipitation Estimation (SQUIRE)", "Plot the SAIL and SPLASH Locations", "Explore Dual-Pol Data from SAIL", "Investigate KDP and PhiDP through a Convective Core near SAIL", "Comparing DBZ, ZDR and KDP (LP and Maesaka) methods.", "Gluing and Merging", "<no title>", "Join sweeps of the ARM Supported CSU X-Band Radar", "Surface Atmosphere Integrated Field Laboratory (SAIL) Radar Analysis", "Analyze the Pluvio Data - Entire Season + Case Selection", "Figures for Presentation in AMS Annual Meeting in Denver 2023", "Beam Blockage for SAIL", "Check Reflectivity Calibration", "Snowfall Retrievals CSU X-Band Radar March 14, 2022", "Plot PPI data for BAMS Paper", "Plot a Description of the Liquid Precip Estimation Method"], "titleterms": {"": [2, 15, 16], "0": [0, 2], "1": 2, "10": 0, "14": [0, 2, 16], "2": 2, "2022": [0, 2, 16], "2023": 13, "3": [0, 2], "4": 2, "5": [0, 2], "6": [0, 2], "7": [0, 2], "8": [0, 2], "9": 0, "A": [4, 13], "In": 2, "It": 1, "There": 2, "access": 12, "accumul": [12, 13, 15], "across": 16, "act": [1, 2, 12], "add": [2, 4], "addit": 2, "alert": 2, "alias": 0, "all": [2, 8, 12], "am": 13, "amf": 4, "an": 6, "analysi": 11, "analyz": 12, "angl": 14, "annual": 13, "antenna": 2, "appli": [2, 3, 5, 15, 16, 18], "ar": 2, "arm": [4, 10], "arrai": 7, "art": 3, "atmospher": [11, 13], "author": 13, "avail": [2, 16], "azimuth": 6, "b": 13, "back": 1, "bam": 17, "band": [2, 10, 13, 16], "beam": [2, 14], "been": 2, "blockag": [2, 14], "both": [15, 18], "brien": 13, "bucket": 2, "c": 13, "calcul": [5, 14, 15, 18], "calibr": 15, "case": [0, 2, 12], "cbb": 14, "check": 15, "clean": 6, "closer": 4, "closest": 3, "cluster": 8, "clutter": 2, "cmac": [1, 13], "cmac2": [0, 2], "colorado": 12, "column": [2, 3, 12], "columnsect": 13, "combin": [2, 4], "compar": [7, 12, 15], "comparison": 15, "comput": [7, 12], "configur": 3, "contrast": 2, "convect": 6, "convert": 12, "coordin": 2, "core": 6, "correct": [0, 2], "could": 2, "creat": [1, 3, 7], "csu": [2, 10, 16], "cumul": 14, "current": 2, "d": [3, 13], "dai": 2, "daili": 2, "dask": 8, "data": [2, 3, 4, 5, 6, 12, 15, 16, 17, 18], "datafram": 4, "dataset": [2, 3, 6, 16], "datastream": 2, "datatyp": 1, "date": [5, 12], "dbz": 7, "de": 0, "defin": [2, 8, 13, 16], "dem": 17, "denver": 13, "descript": 18, "desir": 8, "determin": 3, "dictionari": 2, "differ": [15, 18], "differenti": [0, 5], "diminish": 14, "directori": 8, "discoveri": 2, "disdromet": [2, 18], "do": 2, "document": 0, "dod": 1, "domain": 13, "download": [15, 18], "dsd": 18, "dual": 5, "dure": 2, "e": 13, "each": [2, 3, 16], "east": [5, 13], "encod": 1, "end": 16, "entir": 12, "equival": 12, "estim": [0, 3, 13, 18], "experi": 13, "explor": [2, 5], "extra": 13, "extract": 2, "f": 13, "field": [3, 5, 7, 11, 13, 16], "figur": [0, 13], "file": [1, 2, 3, 5, 7, 8, 13, 16], "fill": 1, "find": 13, "fix": 14, "flag": 18, "form": 2, "from": [2, 5], "function": [2, 3, 8, 13, 15, 16, 17, 18], "gate": 0, "gatefilt": 7, "gaug": 18, "georefer": 6, "get": 7, "giangrand": 7, "given": 16, "glu": 8, "glue": 8, "gothic": [12, 15], "grab": 1, "grid": 3, "grid_from_radar": 3, "ground": [2, 3], "have": 2, "height": [3, 16], "helper": [3, 8, 13, 16, 17, 18], "high": 2, "i": [1, 2, 14], "id": 0, "import": [2, 3, 4, 5, 6, 12, 15, 16, 17, 18], "increas": 14, "index": 12, "individu": 6, "initi": 1, "input": 13, "instrument": [2, 17, 18], "integr": [11, 13], "interact": 18, "interpol": 3, "investig": 6, "joe": 13, "join": 10, "kazr": 15, "kdp": [5, 6, 7], "keyword": 0, "laboratori": [11, 13], "laser": [2, 18], "latitud": 4, "launch": 2, "liquid": [12, 18], "list": [2, 3, 16], "load": [3, 12, 15], "locat": [2, 4, 8, 13, 17, 18], "longitud": 4, "look": [4, 16], "loop": [3, 16], "lowest": 3, "lp": [0, 7], "m1": [2, 13], "maesaka": 7, "march": [0, 2, 16], "match": 2, "meet": 13, "merg": [2, 8, 16], "met": 2, "meta": 2, "meteorolog": 2, "method": [7, 18], "millimet": 12, "miss": 2, "modifi": 1, "moment": 2, "mosaic": 13, "multipl": 2, "nearest": 3, "need": [2, 14], "neighbor": 3, "netcdf": 1, "note": 2, "now": 2, "numpi": 7, "o": [1, 13], "observ": 2, "offset": 14, "otherwis": 14, "our": [3, 4, 12, 16], "output": 1, "over": 13, "paper": 17, "pbb": 14, "per": 2, "phase": 5, "phidp": 6, "plot": [3, 4, 6, 13, 15, 16, 17, 18], "pluvio": [2, 12, 17, 18], "point": 16, "pol": 5, "power": 2, "ppi": [6, 8, 17], "precip": 18, "precipit": [2, 3, 13, 18], "present": 13, "previous": 2, "process": [0, 2, 8, 18], "profil": 2, "py": 3, "pyart": 13, "qc": [3, 18], "quantit": 3, "radar": [2, 10, 11, 16, 18], "radclss": [2, 13], "radial": 0, "radiosond": 2, "rai": [6, 13], "rain": 18, "rang": [7, 14], "rate": [0, 16, 18], "raw": [0, 18], "read": [1, 4, 5, 6, 13, 16, 17, 18], "reason": 7, "reflect": [0, 15, 16, 17, 18], "relationship": [2, 15, 16], "remov": 2, "retriev": [3, 16, 17], "rhi": 13, "river": [5, 13], "rwp": 2, "s2": 2, "sail": [0, 2, 4, 5, 6, 11, 13, 14], "save": 2, "scan": 8, "season": 12, "second": 2, "sector": 6, "see": 14, "select": [6, 7, 12], "sensor": [2, 4, 17, 18], "set": 12, "setup": [3, 15, 16, 17, 18], "singl": [6, 8], "site": [2, 4, 12, 13, 16], "situ": 2, "snow": [3, 12], "snowfal": [0, 13, 15, 16, 18], "specif": 5, "splash": 4, "squir": [3, 13], "standard": 2, "start": 8, "station": [2, 15], "subset": [16, 18], "success": 2, "support": [2, 10], "surfac": [2, 3, 11, 13], "swe": 12, "sweep": 10, "technic": 0, "techniqu": 0, "terrain": 13, "test": 1, "textur": [0, 5], "therefor": 2, "thi": 3, "through": [3, 6, 16], "tif": 13, "time": 16, "timeseri": [2, 16, 18], "total": [15, 16, 18], "try": [8, 13], "unavail": 2, "uncorrect": 0, "undergon": 2, "unit": 12, "up": [3, 6], "us": [2, 3, 6, 7, 12, 13], "util": 13, "valu": [1, 3, 15], "variabl": 2, "veloc": [0, 5], "verifi": 8, "version": 2, "via": 1, "view": 13, "visual": [3, 4, 5, 12], "volum": 8, "water": 12, "watersh": [5, 17, 18], "we": 2, "weather": 15, "weigh": 2, "well": 2, "wind": 2, "within": 8, "workflow": 3, "wrap": 3, "write": 1, "wrong": 14, "x": [2, 10, 13, 16], "xarrai": 12, "xmovi": 13, "z": [2, 15, 16], "zdr": 7}})
\ No newline at end of file