From 4a5eaaca512d9496baf2297f27ae2909856f09b7 Mon Sep 17 00:00:00 2001 From: Matthias Cuntz Date: Sun, 14 Jul 2024 15:08:02 +0200 Subject: [PATCH] Faster animation with draw_idle --- CHANGELOG.rst | 7 +++++- docs/html/.buildinfo | 2 +- docs/html/_modules/ncvue/ncvmap.html | 7 ++++-- docs/html/_modules/ncvue/ncvue.html | 9 +++++--- docs/html/changelog.html | 8 ++++++- docs/html/ncvmap.html | 6 +++-- docs/html/ncvue.html | 2 ++ docs/html/searchindex.js | 2 +- docs/src/conf.py | 33 ++++++++++++++-------------- src/ncvue/ncvmap.py | 7 ++++-- src/ncvue/ncvue.py | 9 +++++--- 11 files changed, 60 insertions(+), 32 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a0b7875..62510b3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Changelog --------- +v4.4.3 (Jul 2024) + * Use `draw_idle` instead of `draw` in map update method for + faster animation. + * Change formatting of file string for multiple files. + v4.4.2 (Jul 2024) * Use `matplotlib.colormaps[name]` instead of `matplotlib.colormaps.get_cmap(name)` to work with @@ -11,7 +16,7 @@ v4.4.1 (Feb 2024) v4.4 (Feb 2024) * Added borders, rivers, and lakes checkbuttons in map. - * Bugfix formatted string used wrong data type in `analyse_netcdf`. + * Bugfix: formatted string used wrong data type in `analyse_netcdf`. * Move themes and images directories from src/ncvue to src directory. v4.3 (Jan 2024) diff --git a/docs/html/.buildinfo b/docs/html/.buildinfo index 45c3c0d..61a5b52 100644 --- a/docs/html/.buildinfo +++ b/docs/html/.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: 7c07df56c7e585943f0ca8b4ecb99ae8 +config: 4546b62aa505b55392a3c0b0e1a783ee tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/html/_modules/ncvue/ncvmap.html b/docs/html/_modules/ncvue/ncvmap.html index f1f7e23..b0d4bbd 100644 --- a/docs/html/_modules/ncvue/ncvmap.html +++ b/docs/html/_modules/ncvue/ncvmap.html @@ -349,6 +349,8 @@

Source code for ncvue.ncvmap

     * Move themes/ and images/ back to src/ncvue/, Feb 2024, Matthias Cuntz
     * Use matplotlib.colormaps[name] instead of
       matplotlib.colormaps.get_cmap(name), Jul 2024, Matthias Cuntz
+    * Use draw_idle instead of draw in update method for faster animation,
+      Jul 2024, Matthias Cuntz
 
 """
 import os
@@ -1771,7 +1773,8 @@ 

Source code for ncvue.ncvmap

 [docs]
     def update(self, frame, isframe=False):
         """
-        Updates data of the current the plot.
+        Updates data of the current plot.
+
         """
         if self.anim_first:
             self.anim.event_source.stop()
@@ -1862,7 +1865,7 @@ 

Source code for ncvue.ncvmap

                     vmin=self.ivmin, vmax=self.ivmax,
                     cmap=self.icmap, extend=self.iextend,
                     transform=self.itrans)
-            self.canvas.draw()
+            self.canvas.draw_idle()
             return self.cc,
diff --git a/docs/html/_modules/ncvue/ncvue.html b/docs/html/_modules/ncvue/ncvue.html index c145565..e017371 100644 --- a/docs/html/_modules/ncvue/ncvue.html +++ b/docs/html/_modules/ncvue/ncvue.html @@ -344,6 +344,8 @@

Source code for ncvue.ncvue

     * Move themes/ and images/ directories from src/ncvue/ to src/ directory,
       Jan 2024, Matthias Cuntz
     * Move themes/ and images/ back to src/ncvue/, Feb 2024, Matthias Cuntz
+    * Change formatting of file string for multiple files,
+      Jul 2024, Matthias Cuntz
 
 """
 import os
@@ -500,7 +502,8 @@ 

Source code for ncvue.ncvue

         for ii, nn in enumerate(ncfile):
             top.fi.append(nc.Dataset(nn, 'r'))
             if len(ncfile) > 1:
-                top.groups.append(f'file{ii:03d}')
+                nnc = np.ceil(np.log10(len(ncfile))).astype(int)
+                top.groups.append(f'file{ii:0{nnc}d}')
         # Check groups
         if len(ncfile) == 1:
             top.groups = list(top.fi[0].groups.keys())
@@ -508,8 +511,8 @@ 

Source code for ncvue.ncvue

             for ii, nn in enumerate(ncfile):
                 if len(list(top.fi[ii].groups.keys())) > 0:
                     print(f'Either multiple files or one file with groups'
-                          f' allowed as input. Multiple files and file {nn}'
-                          f' has groups.')
+                          f' allowed as input. Multiple files given but file'
+                          f' {nn} has groups.')
                     for fi in top.fi:
                         fi.close()
                     top.quit()
diff --git a/docs/html/changelog.html b/docs/html/changelog.html
index 684e156..5929741 100644
--- a/docs/html/changelog.html
+++ b/docs/html/changelog.html
@@ -378,6 +378,12 @@ 

Changelog

Changelog#

+
v4.4.3 (Jul 2024)
    +
  • Use draw_idle instead of draw in map update method for +faster animation.

  • +
  • Change formatting of file string for multiple files.

  • +
+
v4.4.2 (Jul 2024)
  • Use matplotlib.colormaps[name] instead of matplotlib.colormaps.get_cmap(name) to work with @@ -390,7 +396,7 @@

    Changelog

v4.4 (Feb 2024)
  • Added borders, rivers, and lakes checkbuttons in map.

  • -
  • Bugfix formatted string used wrong data type in analyse_netcdf.

  • +
  • Bugfix: formatted string used wrong data type in analyse_netcdf.

  • Move themes and images directories from src/ncvue to src directory.

diff --git a/docs/html/ncvmap.html b/docs/html/ncvmap.html index 158bdbd..4555277 100644 --- a/docs/html/ncvmap.html +++ b/docs/html/ncvmap.html @@ -618,6 +618,8 @@

Contents

  • Move themes/ and images/ back to src/ncvue/, Feb 2024, Matthias Cuntz

  • Use matplotlib.colormaps[name] instead of matplotlib.colormaps.get_cmap(name), Jul 2024, Matthias Cuntz

  • +
  • Use draw_idle instead of draw in update method for faster animation, +Jul 2024, Matthias Cuntz

  • @@ -1024,7 +1026,7 @@

    Contents

    Unbind for all widgets with bindtag CLASSNAME for event SEQUENCE all functions.

    update(frame[, isframe])

    -

    Updates data of the current the plot.

    +

    Updates data of the current plot.

    update_idletasks()

    Enter event loop until all idle callbacks have been called.

    @@ -2372,7 +2374,7 @@

    Contents

    update(frame, isframe=False)[source]#
    -

    Updates data of the current the plot.

    +

    Updates data of the current plot.

    diff --git a/docs/html/ncvue.html b/docs/html/ncvue.html index 79d7d70..4fdf031 100644 --- a/docs/html/ncvue.html +++ b/docs/html/ncvue.html @@ -423,6 +423,8 @@

    Contents

  • Move themes/ and images/ directories from src/ncvue/ to src/ directory, Jan 2024, Matthias Cuntz

  • Move themes/ and images/ back to src/ncvue/, Feb 2024, Matthias Cuntz

  • +
  • Change formatting of file string for multiple files, +Jul 2024, Matthias Cuntz

  • diff --git a/docs/html/searchindex.js b/docs/html/searchindex.js index 037f74a..ad09d36 100644 --- a/docs/html/searchindex.js +++ b/docs/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"API": [[11, "module-ncvue"]], "About ncvue": [[12, "about-ncvue"]], "Binary distributions": [[2, "binary-distributions"]], "Building from source": [[2, "building-from-source"]], "Changelog": [[0, "changelog"]], "Contents": [[1, "contents"]], "Contour panel": [[12, "contour-panel"]], "Dependencies": [[2, "dependencies"]], "General layout": [[12, "general-layout"]], "Installation": [[2, "installation"]], "License": [[12, "license"]], "Linux": [[2, "linux"]], "Map panel": [[12, "map-panel"]], "Purpose": [[11, "purpose"]], "Quick usage guide": [[12, "quick-usage-guide"]], "Scatter/Line panel": [[12, "scatter-line-panel"]], "Subpackages": [[11, "subpackages"]], "Windows": [[2, "windows"]], "macOS": [[2, "macos"]], "ncvue - A GUI to view netCDF files": [[12, "ncvue-a-gui-to-view-netcdf-files"]], "ncvue.ncvcontour": [[3, "module-ncvue.ncvcontour"]], "ncvue.ncvmain": [[4, "module-ncvue.ncvmain"]], "ncvue.ncvmap": [[5, "module-ncvue.ncvmap"]], "ncvue.ncvmethods": [[6, "module-ncvue.ncvmethods"]], "ncvue.ncvscatter": [[7, "module-ncvue.ncvscatter"]], "ncvue.ncvue": [[8, "module-ncvue.ncvue"]], "ncvue.ncvutils": [[9, "module-ncvue.ncvutils"]], "ncvue.ncvwidgets": [[10, "module-ncvue.ncvwidgets"]]}, "docnames": ["changelog", "index", "install", "ncvcontour", "ncvmain", "ncvmap", "ncvmethods", "ncvscatter", "ncvue", "ncvutils", "ncvwidgets", "package", "readme"], "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, "sphinx.ext.viewcode": 1}, "filenames": ["changelog.rst", "index.rst", "install.rst", "ncvcontour.rst", "ncvmain.rst", "ncvmap.rst", "ncvmethods.rst", "ncvscatter.rst", "ncvue.rst", "ncvutils.rst", "ncvwidgets.rst", "package.rst", "readme.rst"], "indexentries": {"add_checkbutton() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_checkbutton", false]], "add_combobox() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_combobox", false]], "add_cyclic() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.add_cyclic", false]], "add_entry() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_entry", false]], "add_imagemenu() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_imagemenu", false]], "add_menu() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_menu", false]], "add_scale() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_scale", false]], "add_spinbox() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_spinbox", false]], "add_tooltip() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_tooltip", false]], "after() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.after", false]], "after() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.after", false]], "after() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.after", false]], "after() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.after", false]], "after() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.after", false]], "after_cancel() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.after_cancel", false]], "after_cancel() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.after_cancel", false]], "after_cancel() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.after_cancel", false]], "after_cancel() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.after_cancel", false]], "after_cancel() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.after_cancel", false]], "after_idle() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.after_idle", false]], "after_idle() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.after_idle", false]], "after_idle() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.after_idle", false]], "after_idle() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.after_idle", false]], "after_idle() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.after_idle", false]], "analyse_netcdf() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.analyse_netcdf", false]], "anchor() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.anchor", false]], "anchor() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.anchor", false]], "anchor() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.anchor", false]], "anchor() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.anchor", false]], "anchor() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.anchor", false]], "bbox() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bbox", false]], "bbox() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bbox", false]], "bbox() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bbox", false]], "bbox() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bbox", false]], "bbox() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bbox", false]], "bell() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bell", false]], "bell() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bell", false]], "bell() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bell", false]], "bell() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bell", false]], "bell() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bell", false]], "bind() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bind", false]], "bind() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bind", false]], "bind() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bind", false]], "bind() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bind", false]], "bind() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bind", false]], "bind_all() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bind_all", false]], "bind_all() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bind_all", false]], "bind_all() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bind_all", false]], "bind_all() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bind_all", false]], "bind_all() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bind_all", false]], "bind_class() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bind_class", false]], "bind_class() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bind_class", false]], "bind_class() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bind_class", false]], "bind_class() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bind_class", false]], "bind_class() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bind_class", false]], "bindtags() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bindtags", false]], "bindtags() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bindtags", false]], "bindtags() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bindtags", false]], "bindtags() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bindtags", false]], "bindtags() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bindtags", false]], "callurl() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.callurl", false]], "cget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.cget", false]], "cget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.cget", false]], "cget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.cget", false]], "cget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.cget", false]], "cget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.cget", false]], "check_new_netcdf() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.check_new_netcdf", false]], "checked() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.checked", false]], "checked() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.checked", false]], "checked_all() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.checked_all", false]], "checked_x() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.checked_x", false]], "checked_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.checked_y", false]], "checked_y2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.checked_y2", false]], "checked_yy2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.checked_yy2", false]], "clipboard_append() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.clipboard_append", false]], "clipboard_append() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.clipboard_append", false]], "clipboard_append() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.clipboard_append", false]], "clipboard_append() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.clipboard_append", false]], "clipboard_append() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.clipboard_append", false]], "clipboard_clear() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.clipboard_clear", false]], "clipboard_clear() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.clipboard_clear", false]], "clipboard_clear() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.clipboard_clear", false]], "clipboard_clear() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.clipboard_clear", false]], "clipboard_clear() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.clipboard_clear", false]], "clipboard_get() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.clipboard_get", false]], "clipboard_get() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.clipboard_get", false]], "clipboard_get() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.clipboard_get", false]], "clipboard_get() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.clipboard_get", false]], "clipboard_get() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.clipboard_get", false]], "clone_ncvmain() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.clone_ncvmain", false]], "columnconfigure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.columnconfigure", false]], "columnconfigure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.columnconfigure", false]], "columnconfigure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.columnconfigure", false]], "columnconfigure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.columnconfigure", false]], "columnconfigure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.columnconfigure", false]], "config() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.config", false]], "config() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.config", false]], "config() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.config", false]], "config() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.config", false]], "config() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.config", false]], "configure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.configure", false]], "configure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.configure", false]], "configure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.configure", false]], "configure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.configure", false]], "configure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.configure", false]], "delay_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.delay_t", false]], "deletecommand() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.deletecommand", false]], "deletecommand() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.deletecommand", false]], "deletecommand() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.deletecommand", false]], "deletecommand() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.deletecommand", false]], "deletecommand() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.deletecommand", false]], "destroy() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.destroy", false]], "destroy() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.destroy", false]], "destroy() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.destroy", false]], "destroy() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.destroy", false]], "destroy() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.destroy", false]], "dimmethods (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.DIMMETHODS", false]], "entered_clon() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.entered_clon", false]], "entered_v() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.entered_v", false]], "entered_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.entered_y", false]], "entered_y2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.entered_y2", false]], "entered_z() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.entered_z", false]], "event_add() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.event_add", false]], "event_add() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.event_add", false]], "event_add() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.event_add", false]], "event_add() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.event_add", false]], "event_add() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.event_add", false]], "event_delete() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.event_delete", false]], "event_delete() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.event_delete", false]], "event_delete() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.event_delete", false]], "event_delete() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.event_delete", false]], "event_delete() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.event_delete", false]], "event_generate() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.event_generate", false]], "event_generate() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.event_generate", false]], "event_generate() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.event_generate", false]], "event_generate() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.event_generate", false]], "event_generate() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.event_generate", false]], "event_info() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.event_info", false]], "event_info() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.event_info", false]], "event_info() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.event_info", false]], "event_info() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.event_info", false]], "event_info() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.event_info", false]], "first_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.first_t", false]], "focus() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus", false]], "focus() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus", false]], "focus() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus", false]], "focus() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus", false]], "focus() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus", false]], "focus_displayof() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus_displayof", false]], "focus_displayof() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus_displayof", false]], "focus_displayof() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus_displayof", false]], "focus_displayof() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus_displayof", false]], "focus_displayof() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus_displayof", false]], "focus_force() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus_force", false]], "focus_force() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus_force", false]], "focus_force() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus_force", false]], "focus_force() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus_force", false]], "focus_force() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus_force", false]], "focus_get() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus_get", false]], "focus_get() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus_get", false]], "focus_get() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus_get", false]], "focus_get() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus_get", false]], "focus_get() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus_get", false]], "focus_lastfor() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus_lastfor", false]], "focus_lastfor() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus_lastfor", false]], "focus_lastfor() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus_lastfor", false]], "focus_lastfor() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus_lastfor", false]], "focus_lastfor() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus_lastfor", false]], "focus_set() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus_set", false]], "focus_set() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus_set", false]], "focus_set() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus_set", false]], "focus_set() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus_set", false]], "focus_set() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus_set", false]], "forget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.forget", false]], "forget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.forget", false]], "forget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.forget", false]], "forget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.forget", false]], "forget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.forget", false]], "format_coord_contour() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.format_coord_contour", false]], "format_coord_map() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.format_coord_map", false]], "format_coord_scatter() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.format_coord_scatter", false]], "get_miss() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.get_miss", false]], "get_position() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.get_position", false]], "get_slice() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.get_slice", false]], "get_slice_miss() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.get_slice_miss", false]], "get_vminmax() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.get_vminmax", false]], "getboolean() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.getboolean", false]], "getboolean() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.getboolean", false]], "getboolean() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.getboolean", false]], "getboolean() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.getboolean", false]], "getboolean() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.getboolean", false]], "getdouble() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.getdouble", false]], "getdouble() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.getdouble", false]], "getdouble() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.getdouble", false]], "getdouble() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.getdouble", false]], "getdouble() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.getdouble", false]], "getint() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.getint", false]], "getint() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.getint", false]], "getint() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.getint", false]], "getint() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.getint", false]], "getint() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.getint", false]], "getvar() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.getvar", false]], "getvar() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.getvar", false]], "getvar() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.getvar", false]], "getvar() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.getvar", false]], "getvar() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.getvar", false]], "grab_current() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grab_current", false]], "grab_current() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grab_current", false]], "grab_current() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grab_current", false]], "grab_current() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grab_current", false]], "grab_current() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grab_current", false]], "grab_release() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grab_release", false]], "grab_release() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grab_release", false]], "grab_release() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grab_release", false]], "grab_release() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grab_release", false]], "grab_release() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grab_release", false]], "grab_set() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grab_set", false]], "grab_set() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grab_set", false]], "grab_set() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grab_set", false]], "grab_set() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grab_set", false]], "grab_set() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grab_set", false]], "grab_set_global() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grab_set_global", false]], "grab_set_global() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grab_set_global", false]], "grab_set_global() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grab_set_global", false]], "grab_set_global() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grab_set_global", false]], "grab_set_global() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grab_set_global", false]], "grab_status() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grab_status", false]], "grab_status() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grab_status", false]], "grab_status() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grab_status", false]], "grab_status() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grab_status", false]], "grab_status() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grab_status", false]], "grid() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid", false]], "grid() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid", false]], "grid() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid", false]], "grid() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid", false]], "grid() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid", false]], "grid_anchor() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_anchor", false]], "grid_anchor() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_anchor", false]], "grid_anchor() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_anchor", false]], "grid_anchor() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_anchor", false]], "grid_anchor() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_anchor", false]], "grid_bbox() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_bbox", false]], "grid_bbox() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_bbox", false]], "grid_bbox() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_bbox", false]], "grid_bbox() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_bbox", false]], "grid_bbox() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_bbox", false]], "grid_columnconfigure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_columnconfigure", false]], "grid_columnconfigure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_columnconfigure", false]], "grid_columnconfigure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_columnconfigure", false]], "grid_columnconfigure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_columnconfigure", false]], "grid_columnconfigure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_columnconfigure", false]], "grid_configure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_configure", false]], "grid_configure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_configure", false]], "grid_configure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_configure", false]], "grid_configure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_configure", false]], "grid_configure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_configure", false]], "grid_forget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_forget", false]], "grid_forget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_forget", false]], "grid_forget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_forget", false]], "grid_forget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_forget", false]], "grid_forget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_forget", false]], "grid_info() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_info", false]], "grid_info() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_info", false]], "grid_info() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_info", false]], "grid_info() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_info", false]], "grid_info() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_info", false]], "grid_location() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_location", false]], "grid_location() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_location", false]], "grid_location() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_location", false]], "grid_location() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_location", false]], "grid_location() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_location", false]], "grid_propagate() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_propagate", false]], "grid_propagate() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_propagate", false]], "grid_propagate() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_propagate", false]], "grid_propagate() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_propagate", false]], "grid_propagate() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_propagate", false]], "grid_remove() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_remove", false]], "grid_remove() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_remove", false]], "grid_remove() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_remove", false]], "grid_remove() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_remove", false]], "grid_remove() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_remove", false]], "grid_rowconfigure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_rowconfigure", false]], "grid_rowconfigure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_rowconfigure", false]], "grid_rowconfigure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_rowconfigure", false]], "grid_rowconfigure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_rowconfigure", false]], "grid_rowconfigure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_rowconfigure", false]], "grid_size() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_size", false]], "grid_size() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_size", false]], "grid_size() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_size", false]], "grid_size() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_size", false]], "grid_size() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_size", false]], "grid_slaves() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_slaves", false]], "grid_slaves() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_slaves", false]], "grid_slaves() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_slaves", false]], "grid_slaves() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_slaves", false]], "grid_slaves() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_slaves", false]], "has_cyclic() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.has_cyclic", false]], "hidetip() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.hidetip", false]], "identify() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.identify", false]], "identify() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.identify", false]], "identify() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.identify", false]], "identify() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.identify", false]], "identify() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.identify", false]], "image_names() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.image_names", false]], "image_names() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.image_names", false]], "image_names() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.image_names", false]], "image_names() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.image_names", false]], "image_names() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.image_names", false]], "image_types() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.image_types", false]], "image_types() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.image_types", false]], "image_types() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.image_types", false]], "image_types() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.image_types", false]], "image_types() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.image_types", false]], "info() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.info", false]], "info() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.info", false]], "info() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.info", false]], "info() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.info", false]], "info() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.info", false]], "info_patchlevel() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.info_patchlevel", false]], "info_patchlevel() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.info_patchlevel", false]], "info_patchlevel() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.info_patchlevel", false]], "info_patchlevel() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.info_patchlevel", false]], "info_patchlevel() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.info_patchlevel", false]], "instate() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.instate", false]], "instate() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.instate", false]], "instate() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.instate", false]], "instate() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.instate", false]], "instate() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.instate", false]], "keys() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.keys", false]], "keys() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.keys", false]], "keys() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.keys", false]], "keys() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.keys", false]], "keys() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.keys", false]], "last_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.last_t", false]], "lift() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.lift", false]], "lift() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.lift", false]], "lift() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.lift", false]], "lift() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.lift", false]], "lift() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.lift", false]], "list_intersection() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.list_intersection", false]], "location() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.location", false]], "location() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.location", false]], "location() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.location", false]], "location() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.location", false]], "location() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.location", false]], "lower() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.lower", false]], "lower() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.lower", false]], "lower() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.lower", false]], "lower() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.lower", false]], "lower() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.lower", false]], "mainloop() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.mainloop", false]], "mainloop() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.mainloop", false]], "mainloop() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.mainloop", false]], "mainloop() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.mainloop", false]], "mainloop() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.mainloop", false]], "minmax_ylim() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.minmax_ylim", false]], "module": [[3, "module-ncvue.ncvcontour", false], [4, "module-ncvue.ncvmain", false], [5, "module-ncvue.ncvmap", false], [6, "module-ncvue.ncvmethods", false], [7, "module-ncvue.ncvscatter", false], [8, "module-ncvue.ncvue", false], [9, "module-ncvue.ncvutils", false], [10, "module-ncvue.ncvwidgets", false], [11, "module-ncvue", false]], "nametowidget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.nametowidget", false]], "nametowidget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.nametowidget", false]], "nametowidget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.nametowidget", false]], "nametowidget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.nametowidget", false]], "nametowidget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.nametowidget", false]], "ncvcontour (class in ncvue.ncvcontour)": [[3, "ncvue.ncvcontour.ncvContour", false]], "ncvmain (class in ncvue.ncvmain)": [[4, "ncvue.ncvmain.ncvMain", false]], "ncvmap (class in ncvue.ncvmap)": [[5, "ncvue.ncvmap.ncvMap", false]], "ncvscatter (class in ncvue.ncvscatter)": [[7, "ncvue.ncvscatter.ncvScatter", false]], "ncvue": [[11, "module-ncvue", false]], "ncvue() (in module ncvue.ncvue)": [[8, "ncvue.ncvue.ncvue", false]], "ncvue.ncvcontour": [[3, "module-ncvue.ncvcontour", false]], "ncvue.ncvmain": [[4, "module-ncvue.ncvmain", false]], "ncvue.ncvmap": [[5, "module-ncvue.ncvmap", false]], "ncvue.ncvmethods": [[6, "module-ncvue.ncvmethods", false]], "ncvue.ncvscatter": [[7, "module-ncvue.ncvscatter", false]], "ncvue.ncvue": [[8, "module-ncvue.ncvue", false]], "ncvue.ncvutils": [[9, "module-ncvue.ncvutils", false]], "ncvue.ncvwidgets": [[10, "module-ncvue.ncvwidgets", false]], "newnetcdf() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.newnetcdf", false]], "newnetcdf() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.newnetcdf", false]], "newnetcdf() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.newnetcdf", false]], "next_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.next_t", false]], "next_v() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.next_v", false]], "next_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.next_y", false]], "next_z() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.next_z", false]], "nrun_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.nrun_t", false]], "option_add() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.option_add", false]], "option_add() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.option_add", false]], "option_add() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.option_add", false]], "option_add() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.option_add", false]], "option_add() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.option_add", false]], "option_clear() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.option_clear", false]], "option_clear() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.option_clear", false]], "option_clear() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.option_clear", false]], "option_clear() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.option_clear", false]], "option_clear() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.option_clear", false]], "option_get() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.option_get", false]], "option_get() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.option_get", false]], "option_get() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.option_get", false]], "option_get() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.option_get", false]], "option_get() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.option_get", false]], "option_readfile() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.option_readfile", false]], "option_readfile() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.option_readfile", false]], "option_readfile() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.option_readfile", false]], "option_readfile() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.option_readfile", false]], "option_readfile() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.option_readfile", false]], "pack() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack", false]], "pack() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack", false]], "pack() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack", false]], "pack() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack", false]], "pack() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack", false]], "pack_configure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack_configure", false]], "pack_configure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack_configure", false]], "pack_configure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack_configure", false]], "pack_configure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack_configure", false]], "pack_configure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack_configure", false]], "pack_forget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack_forget", false]], "pack_forget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack_forget", false]], "pack_forget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack_forget", false]], "pack_forget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack_forget", false]], "pack_forget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack_forget", false]], "pack_info() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack_info", false]], "pack_info() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack_info", false]], "pack_info() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack_info", false]], "pack_info() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack_info", false]], "pack_info() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack_info", false]], "pack_propagate() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack_propagate", false]], "pack_propagate() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack_propagate", false]], "pack_propagate() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack_propagate", false]], "pack_propagate() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack_propagate", false]], "pack_propagate() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack_propagate", false]], "pack_slaves() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack_slaves", false]], "pack_slaves() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack_slaves", false]], "pack_slaves() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack_slaves", false]], "pack_slaves() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack_slaves", false]], "pack_slaves() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack_slaves", false]], "pause_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pause_t", false]], "place() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.place", false]], "place() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.place", false]], "place() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.place", false]], "place() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.place", false]], "place() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.place", false]], "place_configure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.place_configure", false]], "place_configure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.place_configure", false]], "place_configure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.place_configure", false]], "place_configure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.place_configure", false]], "place_configure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.place_configure", false]], "place_forget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.place_forget", false]], "place_forget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.place_forget", false]], "place_forget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.place_forget", false]], "place_forget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.place_forget", false]], "place_forget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.place_forget", false]], "place_info() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.place_info", false]], "place_info() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.place_info", false]], "place_info() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.place_info", false]], "place_info() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.place_info", false]], "place_info() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.place_info", false]], "place_slaves() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.place_slaves", false]], "place_slaves() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.place_slaves", false]], "place_slaves() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.place_slaves", false]], "place_slaves() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.place_slaves", false]], "place_slaves() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.place_slaves", false]], "position_window() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.position_window", false]], "prev_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.prev_t", false]], "prev_v() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.prev_v", false]], "prev_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.prev_y", false]], "prev_z() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.prev_z", false]], "propagate() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.propagate", false]], "propagate() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.propagate", false]], "propagate() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.propagate", false]], "propagate() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.propagate", false]], "propagate() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.propagate", false]], "prun_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.prun_t", false]], "quit() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.quit", false]], "quit() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.quit", false]], "quit() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.quit", false]], "quit() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.quit", false]], "quit() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.quit", false]], "redraw() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.redraw", false]], "redraw() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.redraw", false]], "redraw() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.redraw", false]], "redraw_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.redraw_y", false]], "redraw_y2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.redraw_y2", false]], "register() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.register", false]], "register() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.register", false]], "register() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.register", false]], "register() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.register", false]], "register() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.register", false]], "reinit() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.reinit", false]], "reinit() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.reinit", false]], "reinit() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.reinit", false]], "repeat_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.repeat_t", false]], "rowconfigure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.rowconfigure", false]], "rowconfigure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.rowconfigure", false]], "rowconfigure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.rowconfigure", false]], "rowconfigure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.rowconfigure", false]], "rowconfigure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.rowconfigure", false]], "schedule() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.schedule", false]], "selected_cmap() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selected_cmap", false]], "selected_cmap() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selected_cmap", false]], "selected_lat() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selected_lat", false]], "selected_lon() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selected_lon", false]], "selected_proj() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selected_proj", false]], "selected_v() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selected_v", false]], "selected_x() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selected_x", false]], "selected_x() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selected_x", false]], "selected_y() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selected_y", false]], "selected_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selected_y", false]], "selected_y2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selected_y2", false]], "selected_z() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selected_z", false]], "selection_clear() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selection_clear", false]], "selection_clear() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.selection_clear", false]], "selection_clear() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selection_clear", false]], "selection_clear() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selection_clear", false]], "selection_clear() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.selection_clear", false]], "selection_get() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selection_get", false]], "selection_get() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.selection_get", false]], "selection_get() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selection_get", false]], "selection_get() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selection_get", false]], "selection_get() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.selection_get", false]], "selection_handle() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selection_handle", false]], "selection_handle() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.selection_handle", false]], "selection_handle() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selection_handle", false]], "selection_handle() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selection_handle", false]], "selection_handle() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.selection_handle", false]], "selection_own() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selection_own", false]], "selection_own() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.selection_own", false]], "selection_own() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selection_own", false]], "selection_own() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selection_own", false]], "selection_own() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.selection_own", false]], "selection_own_get() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selection_own_get", false]], "selection_own_get() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.selection_own_get", false]], "selection_own_get() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selection_own_get", false]], "selection_own_get() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selection_own_get", false]], "selection_own_get() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.selection_own_get", false]], "selvar() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.selvar", false]], "send() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.send", false]], "send() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.send", false]], "send() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.send", false]], "send() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.send", false]], "send() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.send", false]], "set_axis_label() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.set_axis_label", false]], "set_dim_lat() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_lat", false]], "set_dim_lon() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_lon", false]], "set_dim_var() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_var", false]], "set_dim_x() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_x", false]], "set_dim_y() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_y", false]], "set_dim_y2() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_y2", false]], "set_dim_z() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_z", false]], "set_miss() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.set_miss", false]], "set_tstep() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.set_tstep", false]], "set_unlim() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.set_unlim", false]], "setvar() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.setvar", false]], "setvar() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.setvar", false]], "setvar() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.setvar", false]], "setvar() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.setvar", false]], "setvar() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.setvar", false]], "showcontents() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.showcontents", false]], "showtip() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.showtip", false]], "size() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.size", false]], "size() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.size", false]], "size() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.size", false]], "size() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.size", false]], "size() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.size", false]], "slaves() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.slaves", false]], "slaves() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.slaves", false]], "slaves() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.slaves", false]], "slaves() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.slaves", false]], "slaves() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.slaves", false]], "spinbox_values() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.spinbox_values", false]], "spinned_lat() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.spinned_lat", false]], "spinned_lon() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.spinned_lon", false]], "spinned_v() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.spinned_v", false]], "spinned_x() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.spinned_x", false]], "spinned_x() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.spinned_x", false]], "spinned_y() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.spinned_y", false]], "spinned_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.spinned_y", false]], "spinned_y2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.spinned_y2", false]], "spinned_z() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.spinned_z", false]], "state() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.state", false]], "state() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.state", false]], "state() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.state", false]], "state() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.state", false]], "state() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.state", false]], "tk_bisque() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_bisque", false]], "tk_bisque() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_bisque", false]], "tk_bisque() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_bisque", false]], "tk_bisque() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_bisque", false]], "tk_bisque() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_bisque", false]], "tk_focusfollowsmouse() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_focusFollowsMouse", false]], "tk_focusfollowsmouse() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_focusFollowsMouse", false]], "tk_focusfollowsmouse() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_focusFollowsMouse", false]], "tk_focusfollowsmouse() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_focusFollowsMouse", false]], "tk_focusfollowsmouse() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_focusFollowsMouse", false]], "tk_focusnext() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_focusNext", false]], "tk_focusnext() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_focusNext", false]], "tk_focusnext() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_focusNext", false]], "tk_focusnext() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_focusNext", false]], "tk_focusnext() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_focusNext", false]], "tk_focusprev() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_focusPrev", false]], "tk_focusprev() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_focusPrev", false]], "tk_focusprev() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_focusPrev", false]], "tk_focusprev() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_focusPrev", false]], "tk_focusprev() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_focusPrev", false]], "tk_setpalette() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_setPalette", false]], "tk_setpalette() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_setPalette", false]], "tk_setpalette() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_setPalette", false]], "tk_setpalette() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_setPalette", false]], "tk_setpalette() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_setPalette", false]], "tk_strictmotif() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_strictMotif", false]], "tk_strictmotif() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_strictMotif", false]], "tk_strictmotif() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_strictMotif", false]], "tk_strictmotif() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_strictMotif", false]], "tk_strictmotif() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_strictMotif", false]], "tkraise() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tkraise", false]], "tkraise() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tkraise", false]], "tkraise() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tkraise", false]], "tkraise() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tkraise", false]], "tkraise() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tkraise", false]], "tooltip (class in ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.Tooltip", false]], "treeview (class in ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.Treeview", false]], "tstep_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tstep_t", false]], "unbind() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.unbind", false]], "unbind() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.unbind", false]], "unbind() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.unbind", false]], "unbind() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.unbind", false]], "unbind() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.unbind", false]], "unbind_all() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.unbind_all", false]], "unbind_all() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.unbind_all", false]], "unbind_all() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.unbind_all", false]], "unbind_all() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.unbind_all", false]], "unbind_all() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.unbind_all", false]], "unbind_class() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.unbind_class", false]], "unbind_class() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.unbind_class", false]], "unbind_class() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.unbind_class", false]], "unbind_class() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.unbind_class", false]], "unbind_class() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.unbind_class", false]], "unschedule() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.unschedule", false]], "update() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.update", false]], "update() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.update", false]], "update() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.update", false]], "update() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.update", false]], "update() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.update", false]], "update_idletasks() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.update_idletasks", false]], "update_idletasks() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.update_idletasks", false]], "update_idletasks() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.update_idletasks", false]], "update_idletasks() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.update_idletasks", false]], "update_idletasks() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.update_idletasks", false]], "vardim2var() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.vardim2var", false]], "wait_variable() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.wait_variable", false]], "wait_variable() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.wait_variable", false]], "wait_variable() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.wait_variable", false]], "wait_variable() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.wait_variable", false]], "wait_variable() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.wait_variable", false]], "wait_visibility() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.wait_visibility", false]], "wait_visibility() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.wait_visibility", false]], "wait_visibility() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.wait_visibility", false]], "wait_visibility() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.wait_visibility", false]], "wait_visibility() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.wait_visibility", false]], "wait_window() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.wait_window", false]], "wait_window() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.wait_window", false]], "wait_window() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.wait_window", false]], "wait_window() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.wait_window", false]], "wait_window() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.wait_window", false]], "waitvar() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.waitvar", false]], "waitvar() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.waitvar", false]], "waitvar() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.waitvar", false]], "waitvar() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.waitvar", false]], "waitvar() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.waitvar", false]], "winfo_atom() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_atom", false]], "winfo_atom() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_atom", false]], "winfo_atom() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_atom", false]], "winfo_atom() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_atom", false]], "winfo_atom() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_atom", false]], "winfo_atomname() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_atomname", false]], "winfo_atomname() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_atomname", false]], "winfo_atomname() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_atomname", false]], "winfo_atomname() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_atomname", false]], "winfo_atomname() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_atomname", false]], "winfo_cells() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_cells", false]], "winfo_cells() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_cells", false]], "winfo_cells() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_cells", false]], "winfo_cells() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_cells", false]], "winfo_cells() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_cells", false]], "winfo_children() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_children", false]], "winfo_children() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_children", false]], "winfo_children() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_children", false]], "winfo_children() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_children", false]], "winfo_children() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_children", false]], "winfo_class() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_class", false]], "winfo_class() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_class", false]], "winfo_class() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_class", false]], "winfo_class() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_class", false]], "winfo_class() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_class", false]], "winfo_colormapfull() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_colormapfull", false]], "winfo_colormapfull() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_colormapfull", false]], "winfo_colormapfull() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_colormapfull", false]], "winfo_colormapfull() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_colormapfull", false]], "winfo_colormapfull() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_colormapfull", false]], "winfo_containing() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_containing", false]], "winfo_containing() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_containing", false]], "winfo_containing() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_containing", false]], "winfo_containing() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_containing", false]], "winfo_containing() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_containing", false]], "winfo_depth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_depth", false]], "winfo_depth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_depth", false]], "winfo_depth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_depth", false]], "winfo_depth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_depth", false]], "winfo_depth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_depth", false]], "winfo_exists() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_exists", false]], "winfo_exists() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_exists", false]], "winfo_exists() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_exists", false]], "winfo_exists() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_exists", false]], "winfo_exists() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_exists", false]], "winfo_fpixels() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_fpixels", false]], "winfo_fpixels() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_fpixels", false]], "winfo_fpixels() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_fpixels", false]], "winfo_fpixels() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_fpixels", false]], "winfo_fpixels() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_fpixels", false]], "winfo_geometry() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_geometry", false]], "winfo_geometry() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_geometry", false]], "winfo_geometry() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_geometry", false]], "winfo_geometry() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_geometry", false]], "winfo_geometry() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_geometry", false]], "winfo_height() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_height", false]], "winfo_height() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_height", false]], "winfo_height() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_height", false]], "winfo_height() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_height", false]], "winfo_height() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_height", false]], "winfo_id() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_id", false]], "winfo_id() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_id", false]], "winfo_id() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_id", false]], "winfo_id() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_id", false]], "winfo_id() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_id", false]], "winfo_interps() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_interps", false]], "winfo_interps() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_interps", false]], "winfo_interps() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_interps", false]], "winfo_interps() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_interps", false]], "winfo_interps() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_interps", false]], "winfo_ismapped() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_ismapped", false]], "winfo_ismapped() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_ismapped", false]], "winfo_ismapped() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_ismapped", false]], "winfo_ismapped() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_ismapped", false]], "winfo_ismapped() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_ismapped", false]], "winfo_manager() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_manager", false]], "winfo_manager() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_manager", false]], "winfo_manager() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_manager", false]], "winfo_manager() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_manager", false]], "winfo_manager() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_manager", false]], "winfo_name() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_name", false]], "winfo_name() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_name", false]], "winfo_name() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_name", false]], "winfo_name() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_name", false]], "winfo_name() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_name", false]], "winfo_parent() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_parent", false]], "winfo_parent() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_parent", false]], "winfo_parent() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_parent", false]], "winfo_parent() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_parent", false]], "winfo_parent() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_parent", false]], "winfo_pathname() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_pathname", false]], "winfo_pathname() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_pathname", false]], "winfo_pathname() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_pathname", false]], "winfo_pathname() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_pathname", false]], "winfo_pathname() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_pathname", false]], "winfo_pixels() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_pixels", false]], "winfo_pixels() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_pixels", false]], "winfo_pixels() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_pixels", false]], "winfo_pixels() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_pixels", false]], "winfo_pixels() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_pixels", false]], "winfo_pointerx() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_pointerx", false]], "winfo_pointerx() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_pointerx", false]], "winfo_pointerx() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_pointerx", false]], "winfo_pointerx() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_pointerx", false]], "winfo_pointerx() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_pointerx", false]], "winfo_pointerxy() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_pointerxy", false]], "winfo_pointerxy() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_pointerxy", false]], "winfo_pointerxy() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_pointerxy", false]], "winfo_pointerxy() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_pointerxy", false]], "winfo_pointerxy() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_pointerxy", false]], "winfo_pointery() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_pointery", false]], "winfo_pointery() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_pointery", false]], "winfo_pointery() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_pointery", false]], "winfo_pointery() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_pointery", false]], "winfo_pointery() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_pointery", false]], "winfo_reqheight() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_reqheight", false]], "winfo_reqheight() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_reqheight", false]], "winfo_reqheight() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_reqheight", false]], "winfo_reqheight() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_reqheight", false]], "winfo_reqheight() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_reqheight", false]], "winfo_reqwidth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_reqwidth", false]], "winfo_reqwidth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_reqwidth", false]], "winfo_reqwidth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_reqwidth", false]], "winfo_reqwidth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_reqwidth", false]], "winfo_reqwidth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_reqwidth", false]], "winfo_rgb() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_rgb", false]], "winfo_rgb() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_rgb", false]], "winfo_rgb() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_rgb", false]], "winfo_rgb() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_rgb", false]], "winfo_rgb() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_rgb", false]], "winfo_rootx() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_rootx", false]], "winfo_rootx() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_rootx", false]], "winfo_rootx() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_rootx", false]], "winfo_rootx() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_rootx", false]], "winfo_rootx() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_rootx", false]], "winfo_rooty() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_rooty", false]], "winfo_rooty() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_rooty", false]], "winfo_rooty() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_rooty", false]], "winfo_rooty() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_rooty", false]], "winfo_rooty() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_rooty", false]], "winfo_screen() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screen", false]], "winfo_screen() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screen", false]], "winfo_screen() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screen", false]], "winfo_screen() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screen", false]], "winfo_screen() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screen", false]], "winfo_screencells() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screencells", false]], "winfo_screencells() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screencells", false]], "winfo_screencells() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screencells", false]], "winfo_screencells() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screencells", false]], "winfo_screencells() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screencells", false]], "winfo_screendepth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screendepth", false]], "winfo_screendepth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screendepth", false]], "winfo_screendepth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screendepth", false]], "winfo_screendepth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screendepth", false]], "winfo_screendepth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screendepth", false]], "winfo_screenheight() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screenheight", false]], "winfo_screenheight() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screenheight", false]], "winfo_screenheight() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screenheight", false]], "winfo_screenheight() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screenheight", false]], "winfo_screenheight() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screenheight", false]], "winfo_screenmmheight() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screenmmheight", false]], "winfo_screenmmheight() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screenmmheight", false]], "winfo_screenmmheight() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screenmmheight", false]], "winfo_screenmmheight() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screenmmheight", false]], "winfo_screenmmheight() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screenmmheight", false]], "winfo_screenmmwidth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screenmmwidth", false]], "winfo_screenmmwidth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screenmmwidth", false]], "winfo_screenmmwidth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screenmmwidth", false]], "winfo_screenmmwidth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screenmmwidth", false]], "winfo_screenmmwidth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screenmmwidth", false]], "winfo_screenvisual() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screenvisual", false]], "winfo_screenvisual() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screenvisual", false]], "winfo_screenvisual() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screenvisual", false]], "winfo_screenvisual() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screenvisual", false]], "winfo_screenvisual() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screenvisual", false]], "winfo_screenwidth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screenwidth", false]], "winfo_screenwidth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screenwidth", false]], "winfo_screenwidth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screenwidth", false]], "winfo_screenwidth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screenwidth", false]], "winfo_screenwidth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screenwidth", false]], "winfo_server() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_server", false]], "winfo_server() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_server", false]], "winfo_server() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_server", false]], "winfo_server() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_server", false]], "winfo_server() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_server", false]], "winfo_toplevel() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_toplevel", false]], "winfo_toplevel() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_toplevel", false]], "winfo_toplevel() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_toplevel", false]], "winfo_toplevel() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_toplevel", false]], "winfo_toplevel() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_toplevel", false]], "winfo_viewable() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_viewable", false]], "winfo_viewable() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_viewable", false]], "winfo_viewable() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_viewable", false]], "winfo_viewable() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_viewable", false]], "winfo_viewable() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_viewable", false]], "winfo_visual() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_visual", false]], "winfo_visual() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_visual", false]], "winfo_visual() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_visual", false]], "winfo_visual() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_visual", false]], "winfo_visual() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_visual", false]], "winfo_visualid() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_visualid", false]], "winfo_visualid() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_visualid", false]], "winfo_visualid() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_visualid", false]], "winfo_visualid() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_visualid", false]], "winfo_visualid() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_visualid", false]], "winfo_visualsavailable() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_visualsavailable", false]], "winfo_visualsavailable() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_visualsavailable", false]], "winfo_visualsavailable() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_visualsavailable", false]], "winfo_visualsavailable() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_visualsavailable", false]], "winfo_visualsavailable() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_visualsavailable", false]], "winfo_vrootheight() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_vrootheight", false]], "winfo_vrootheight() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_vrootheight", false]], "winfo_vrootheight() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_vrootheight", false]], "winfo_vrootheight() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_vrootheight", false]], "winfo_vrootheight() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_vrootheight", false]], "winfo_vrootwidth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_vrootwidth", false]], "winfo_vrootwidth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_vrootwidth", false]], "winfo_vrootwidth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_vrootwidth", false]], "winfo_vrootwidth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_vrootwidth", false]], "winfo_vrootwidth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_vrootwidth", false]], "winfo_vrootx() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_vrootx", false]], "winfo_vrootx() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_vrootx", false]], "winfo_vrootx() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_vrootx", false]], "winfo_vrootx() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_vrootx", false]], "winfo_vrootx() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_vrootx", false]], "winfo_vrooty() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_vrooty", false]], "winfo_vrooty() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_vrooty", false]], "winfo_vrooty() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_vrooty", false]], "winfo_vrooty() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_vrooty", false]], "winfo_vrooty() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_vrooty", false]], "winfo_width() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_width", false]], "winfo_width() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_width", false]], "winfo_width() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_width", false]], "winfo_width() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_width", false]], "winfo_width() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_width", false]], "winfo_x() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_x", false]], "winfo_x() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_x", false]], "winfo_x() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_x", false]], "winfo_x() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_x", false]], "winfo_x() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_x", false]], "winfo_y() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_y", false]], "winfo_y() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_y", false]], "winfo_y() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_y", false]], "winfo_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_y", false]], "winfo_y() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_y", false]], "zip_dim_name_length() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.zip_dim_name_length", false]]}, "objects": {"": [[11, 0, 0, "-", "ncvue"]], "ncvue": [[3, 0, 0, "-", "ncvcontour"], [4, 0, 0, "-", "ncvmain"], [5, 0, 0, "-", "ncvmap"], [6, 0, 0, "-", "ncvmethods"], [7, 0, 0, "-", "ncvscatter"], [8, 0, 0, "-", "ncvue"], [9, 0, 0, "-", "ncvutils"], [10, 0, 0, "-", "ncvwidgets"]], "ncvue.ncvcontour": [[3, 1, 1, "", "ncvContour"]], "ncvue.ncvcontour.ncvContour": [[3, 2, 1, "", "after"], [3, 2, 1, "", "after_cancel"], [3, 2, 1, "", "after_idle"], [3, 2, 1, "", "anchor"], [3, 2, 1, "", "bbox"], [3, 2, 1, "", "bell"], [3, 2, 1, "", "bind"], [3, 2, 1, "", "bind_all"], [3, 2, 1, "", "bind_class"], [3, 2, 1, "", "bindtags"], [3, 2, 1, "", "cget"], [3, 2, 1, "", "checked"], [3, 2, 1, "", "clipboard_append"], [3, 2, 1, "", "clipboard_clear"], [3, 2, 1, "", "clipboard_get"], [3, 2, 1, "", "columnconfigure"], [3, 2, 1, "", "config"], [3, 2, 1, "", "configure"], [3, 2, 1, "", "deletecommand"], [3, 2, 1, "", "destroy"], [3, 2, 1, "", "entered_z"], [3, 2, 1, "", "event_add"], [3, 2, 1, "", "event_delete"], [3, 2, 1, "", "event_generate"], [3, 2, 1, "", "event_info"], [3, 2, 1, "", "focus"], [3, 2, 1, "", "focus_displayof"], [3, 2, 1, "", "focus_force"], [3, 2, 1, "", "focus_get"], [3, 2, 1, "", "focus_lastfor"], [3, 2, 1, "", "focus_set"], [3, 2, 1, "", "forget"], [3, 2, 1, "", "getboolean"], [3, 2, 1, "", "getdouble"], [3, 2, 1, "", "getint"], [3, 2, 1, "", "getvar"], [3, 2, 1, "", "grab_current"], [3, 2, 1, "", "grab_release"], [3, 2, 1, "", "grab_set"], [3, 2, 1, "", "grab_set_global"], [3, 2, 1, "", "grab_status"], [3, 2, 1, "", "grid"], [3, 2, 1, "", "grid_anchor"], [3, 2, 1, "", "grid_bbox"], [3, 2, 1, "", "grid_columnconfigure"], [3, 2, 1, "", "grid_configure"], [3, 2, 1, "", "grid_forget"], [3, 2, 1, "", "grid_info"], [3, 2, 1, "", "grid_location"], [3, 2, 1, "", "grid_propagate"], [3, 2, 1, "", "grid_remove"], [3, 2, 1, "", "grid_rowconfigure"], [3, 2, 1, "", "grid_size"], [3, 2, 1, "", "grid_slaves"], [3, 2, 1, "", "identify"], [3, 2, 1, "", "image_names"], [3, 2, 1, "", "image_types"], [3, 2, 1, "", "info"], [3, 2, 1, "", "info_patchlevel"], [3, 2, 1, "", "instate"], [3, 2, 1, "", "keys"], [3, 2, 1, "", "lift"], [3, 2, 1, "", "location"], [3, 2, 1, "", "lower"], [3, 2, 1, "", "mainloop"], [3, 2, 1, "", "nametowidget"], [3, 2, 1, "", "newnetcdf"], [3, 2, 1, "", "next_z"], [3, 2, 1, "", "option_add"], [3, 2, 1, "", "option_clear"], [3, 2, 1, "", "option_get"], [3, 2, 1, "", "option_readfile"], [3, 2, 1, "", "pack"], [3, 2, 1, "", "pack_configure"], [3, 2, 1, "", "pack_forget"], [3, 2, 1, "", "pack_info"], [3, 2, 1, "", "pack_propagate"], [3, 2, 1, "", "pack_slaves"], [3, 2, 1, "", "place"], [3, 2, 1, "", "place_configure"], [3, 2, 1, "", "place_forget"], [3, 2, 1, "", "place_info"], [3, 2, 1, "", "place_slaves"], [3, 2, 1, "", "prev_z"], [3, 2, 1, "", "propagate"], [3, 2, 1, "", "quit"], [3, 2, 1, "", "redraw"], [3, 2, 1, "", "register"], [3, 2, 1, "", "reinit"], [3, 2, 1, "", "rowconfigure"], [3, 2, 1, "", "selected_cmap"], [3, 2, 1, "", "selected_x"], [3, 2, 1, "", "selected_y"], [3, 2, 1, "", "selected_z"], [3, 2, 1, "", "selection_clear"], [3, 2, 1, "", "selection_get"], [3, 2, 1, "", "selection_handle"], [3, 2, 1, "", "selection_own"], [3, 2, 1, "", "selection_own_get"], [3, 2, 1, "", "send"], [3, 2, 1, "", "setvar"], [3, 2, 1, "", "size"], [3, 2, 1, "", "slaves"], [3, 2, 1, "", "spinned_x"], [3, 2, 1, "", "spinned_y"], [3, 2, 1, "", "spinned_z"], [3, 2, 1, "", "state"], [3, 2, 1, "", "tk_bisque"], [3, 2, 1, "", "tk_focusFollowsMouse"], [3, 2, 1, "", "tk_focusNext"], [3, 2, 1, "", "tk_focusPrev"], [3, 2, 1, "", "tk_setPalette"], [3, 2, 1, "", "tk_strictMotif"], [3, 2, 1, "", "tkraise"], [3, 2, 1, "", "unbind"], [3, 2, 1, "", "unbind_all"], [3, 2, 1, "", "unbind_class"], [3, 2, 1, "", "update"], [3, 2, 1, "", "update_idletasks"], [3, 2, 1, "", "wait_variable"], [3, 2, 1, "", "wait_visibility"], [3, 2, 1, "", "wait_window"], [3, 2, 1, "", "waitvar"], [3, 2, 1, "", "winfo_atom"], [3, 2, 1, "", "winfo_atomname"], [3, 2, 1, "", "winfo_cells"], [3, 2, 1, "", "winfo_children"], [3, 2, 1, "", "winfo_class"], [3, 2, 1, "", "winfo_colormapfull"], [3, 2, 1, "", "winfo_containing"], [3, 2, 1, "", "winfo_depth"], [3, 2, 1, "", "winfo_exists"], [3, 2, 1, "", "winfo_fpixels"], [3, 2, 1, "", "winfo_geometry"], [3, 2, 1, "", "winfo_height"], [3, 2, 1, "", "winfo_id"], [3, 2, 1, "", "winfo_interps"], [3, 2, 1, "", "winfo_ismapped"], [3, 2, 1, "", "winfo_manager"], [3, 2, 1, "", "winfo_name"], [3, 2, 1, "", "winfo_parent"], [3, 2, 1, "", "winfo_pathname"], [3, 2, 1, "", "winfo_pixels"], [3, 2, 1, "", "winfo_pointerx"], [3, 2, 1, "", "winfo_pointerxy"], [3, 2, 1, "", "winfo_pointery"], [3, 2, 1, "", "winfo_reqheight"], [3, 2, 1, "", "winfo_reqwidth"], [3, 2, 1, "", "winfo_rgb"], [3, 2, 1, "", "winfo_rootx"], [3, 2, 1, "", "winfo_rooty"], [3, 2, 1, "", "winfo_screen"], [3, 2, 1, "", "winfo_screencells"], [3, 2, 1, "", "winfo_screendepth"], [3, 2, 1, "", "winfo_screenheight"], [3, 2, 1, "", "winfo_screenmmheight"], [3, 2, 1, "", "winfo_screenmmwidth"], [3, 2, 1, "", "winfo_screenvisual"], [3, 2, 1, "", "winfo_screenwidth"], [3, 2, 1, "", "winfo_server"], [3, 2, 1, "", "winfo_toplevel"], [3, 2, 1, "", "winfo_viewable"], [3, 2, 1, "", "winfo_visual"], [3, 2, 1, "", "winfo_visualid"], [3, 2, 1, "", "winfo_visualsavailable"], [3, 2, 1, "", "winfo_vrootheight"], [3, 2, 1, "", "winfo_vrootwidth"], [3, 2, 1, "", "winfo_vrootx"], [3, 2, 1, "", "winfo_vrooty"], [3, 2, 1, "", "winfo_width"], [3, 2, 1, "", "winfo_x"], [3, 2, 1, "", "winfo_y"]], "ncvue.ncvmain": [[4, 1, 1, "", "ncvMain"]], "ncvue.ncvmain.ncvMain": [[4, 2, 1, "", "after"], [4, 2, 1, "", "after_cancel"], [4, 2, 1, "", "after_idle"], [4, 2, 1, "", "anchor"], [4, 2, 1, "", "bbox"], [4, 2, 1, "", "bell"], [4, 2, 1, "", "bind"], [4, 2, 1, "", "bind_all"], [4, 2, 1, "", "bind_class"], [4, 2, 1, "", "bindtags"], [4, 2, 1, "", "cget"], [4, 2, 1, "", "check_new_netcdf"], [4, 2, 1, "", "clipboard_append"], [4, 2, 1, "", "clipboard_clear"], [4, 2, 1, "", "clipboard_get"], [4, 2, 1, "", "columnconfigure"], [4, 2, 1, "", "config"], [4, 2, 1, "", "configure"], [4, 2, 1, "", "deletecommand"], [4, 2, 1, "", "destroy"], [4, 2, 1, "", "event_add"], [4, 2, 1, "", "event_delete"], [4, 2, 1, "", "event_generate"], [4, 2, 1, "", "event_info"], [4, 2, 1, "", "focus"], [4, 2, 1, "", "focus_displayof"], [4, 2, 1, "", "focus_force"], [4, 2, 1, "", "focus_get"], [4, 2, 1, "", "focus_lastfor"], [4, 2, 1, "", "focus_set"], [4, 2, 1, "", "forget"], [4, 2, 1, "", "getboolean"], [4, 2, 1, "", "getdouble"], [4, 2, 1, "", "getint"], [4, 2, 1, "", "getvar"], [4, 2, 1, "", "grab_current"], [4, 2, 1, "", "grab_release"], [4, 2, 1, "", "grab_set"], [4, 2, 1, "", "grab_set_global"], [4, 2, 1, "", "grab_status"], [4, 2, 1, "", "grid"], [4, 2, 1, "", "grid_anchor"], [4, 2, 1, "", "grid_bbox"], [4, 2, 1, "", "grid_columnconfigure"], [4, 2, 1, "", "grid_configure"], [4, 2, 1, "", "grid_forget"], [4, 2, 1, "", "grid_info"], [4, 2, 1, "", "grid_location"], [4, 2, 1, "", "grid_propagate"], [4, 2, 1, "", "grid_remove"], [4, 2, 1, "", "grid_rowconfigure"], [4, 2, 1, "", "grid_size"], [4, 2, 1, "", "grid_slaves"], [4, 2, 1, "", "identify"], [4, 2, 1, "", "image_names"], [4, 2, 1, "", "image_types"], [4, 2, 1, "", "info"], [4, 2, 1, "", "info_patchlevel"], [4, 2, 1, "", "instate"], [4, 2, 1, "", "keys"], [4, 2, 1, "", "lift"], [4, 2, 1, "", "location"], [4, 2, 1, "", "lower"], [4, 2, 1, "", "mainloop"], [4, 2, 1, "", "nametowidget"], [4, 2, 1, "", "option_add"], [4, 2, 1, "", "option_clear"], [4, 2, 1, "", "option_get"], [4, 2, 1, "", "option_readfile"], [4, 2, 1, "", "pack"], [4, 2, 1, "", "pack_configure"], [4, 2, 1, "", "pack_forget"], [4, 2, 1, "", "pack_info"], [4, 2, 1, "", "pack_propagate"], [4, 2, 1, "", "pack_slaves"], [4, 2, 1, "", "place"], [4, 2, 1, "", "place_configure"], [4, 2, 1, "", "place_forget"], [4, 2, 1, "", "place_info"], [4, 2, 1, "", "place_slaves"], [4, 2, 1, "", "propagate"], [4, 2, 1, "", "quit"], [4, 2, 1, "", "register"], [4, 2, 1, "", "rowconfigure"], [4, 2, 1, "", "selection_clear"], [4, 2, 1, "", "selection_get"], [4, 2, 1, "", "selection_handle"], [4, 2, 1, "", "selection_own"], [4, 2, 1, "", "selection_own_get"], [4, 2, 1, "", "send"], [4, 2, 1, "", "setvar"], [4, 2, 1, "", "size"], [4, 2, 1, "", "slaves"], [4, 2, 1, "", "state"], [4, 2, 1, "", "tk_bisque"], [4, 2, 1, "", "tk_focusFollowsMouse"], [4, 2, 1, "", "tk_focusNext"], [4, 2, 1, "", "tk_focusPrev"], [4, 2, 1, "", "tk_setPalette"], [4, 2, 1, "", "tk_strictMotif"], [4, 2, 1, "", "tkraise"], [4, 2, 1, "", "unbind"], [4, 2, 1, "", "unbind_all"], [4, 2, 1, "", "unbind_class"], [4, 2, 1, "", "update"], [4, 2, 1, "", "update_idletasks"], [4, 2, 1, "", "wait_variable"], [4, 2, 1, "", "wait_visibility"], [4, 2, 1, "", "wait_window"], [4, 2, 1, "", "waitvar"], [4, 2, 1, "", "winfo_atom"], [4, 2, 1, "", "winfo_atomname"], [4, 2, 1, "", "winfo_cells"], [4, 2, 1, "", "winfo_children"], [4, 2, 1, "", "winfo_class"], [4, 2, 1, "", "winfo_colormapfull"], [4, 2, 1, "", "winfo_containing"], [4, 2, 1, "", "winfo_depth"], [4, 2, 1, "", "winfo_exists"], [4, 2, 1, "", "winfo_fpixels"], [4, 2, 1, "", "winfo_geometry"], [4, 2, 1, "", "winfo_height"], [4, 2, 1, "", "winfo_id"], [4, 2, 1, "", "winfo_interps"], [4, 2, 1, "", "winfo_ismapped"], [4, 2, 1, "", "winfo_manager"], [4, 2, 1, "", "winfo_name"], [4, 2, 1, "", "winfo_parent"], [4, 2, 1, "", "winfo_pathname"], [4, 2, 1, "", "winfo_pixels"], [4, 2, 1, "", "winfo_pointerx"], [4, 2, 1, "", "winfo_pointerxy"], [4, 2, 1, "", "winfo_pointery"], [4, 2, 1, "", "winfo_reqheight"], [4, 2, 1, "", "winfo_reqwidth"], [4, 2, 1, "", "winfo_rgb"], [4, 2, 1, "", "winfo_rootx"], [4, 2, 1, "", "winfo_rooty"], [4, 2, 1, "", "winfo_screen"], [4, 2, 1, "", "winfo_screencells"], [4, 2, 1, "", "winfo_screendepth"], [4, 2, 1, "", "winfo_screenheight"], [4, 2, 1, "", "winfo_screenmmheight"], [4, 2, 1, "", "winfo_screenmmwidth"], [4, 2, 1, "", "winfo_screenvisual"], [4, 2, 1, "", "winfo_screenwidth"], [4, 2, 1, "", "winfo_server"], [4, 2, 1, "", "winfo_toplevel"], [4, 2, 1, "", "winfo_viewable"], [4, 2, 1, "", "winfo_visual"], [4, 2, 1, "", "winfo_visualid"], [4, 2, 1, "", "winfo_visualsavailable"], [4, 2, 1, "", "winfo_vrootheight"], [4, 2, 1, "", "winfo_vrootwidth"], [4, 2, 1, "", "winfo_vrootx"], [4, 2, 1, "", "winfo_vrooty"], [4, 2, 1, "", "winfo_width"], [4, 2, 1, "", "winfo_x"], [4, 2, 1, "", "winfo_y"]], "ncvue.ncvmap": [[5, 1, 1, "", "ncvMap"]], "ncvue.ncvmap.ncvMap": [[5, 2, 1, "", "after"], [5, 2, 1, "", "after_cancel"], [5, 2, 1, "", "after_idle"], [5, 2, 1, "", "anchor"], [5, 2, 1, "", "bbox"], [5, 2, 1, "", "bell"], [5, 2, 1, "", "bind"], [5, 2, 1, "", "bind_all"], [5, 2, 1, "", "bind_class"], [5, 2, 1, "", "bindtags"], [5, 2, 1, "", "cget"], [5, 2, 1, "", "checked"], [5, 2, 1, "", "checked_all"], [5, 2, 1, "", "clipboard_append"], [5, 2, 1, "", "clipboard_clear"], [5, 2, 1, "", "clipboard_get"], [5, 2, 1, "", "columnconfigure"], [5, 2, 1, "", "config"], [5, 2, 1, "", "configure"], [5, 2, 1, "", "delay_t"], [5, 2, 1, "", "deletecommand"], [5, 2, 1, "", "destroy"], [5, 2, 1, "", "entered_clon"], [5, 2, 1, "", "entered_v"], [5, 2, 1, "", "event_add"], [5, 2, 1, "", "event_delete"], [5, 2, 1, "", "event_generate"], [5, 2, 1, "", "event_info"], [5, 2, 1, "", "first_t"], [5, 2, 1, "", "focus"], [5, 2, 1, "", "focus_displayof"], [5, 2, 1, "", "focus_force"], [5, 2, 1, "", "focus_get"], [5, 2, 1, "", "focus_lastfor"], [5, 2, 1, "", "focus_set"], [5, 2, 1, "", "forget"], [5, 2, 1, "", "get_vminmax"], [5, 2, 1, "", "getboolean"], [5, 2, 1, "", "getdouble"], [5, 2, 1, "", "getint"], [5, 2, 1, "", "getvar"], [5, 2, 1, "", "grab_current"], [5, 2, 1, "", "grab_release"], [5, 2, 1, "", "grab_set"], [5, 2, 1, "", "grab_set_global"], [5, 2, 1, "", "grab_status"], [5, 2, 1, "", "grid"], [5, 2, 1, "", "grid_anchor"], [5, 2, 1, "", "grid_bbox"], [5, 2, 1, "", "grid_columnconfigure"], [5, 2, 1, "", "grid_configure"], [5, 2, 1, "", "grid_forget"], [5, 2, 1, "", "grid_info"], [5, 2, 1, "", "grid_location"], [5, 2, 1, "", "grid_propagate"], [5, 2, 1, "", "grid_remove"], [5, 2, 1, "", "grid_rowconfigure"], [5, 2, 1, "", "grid_size"], [5, 2, 1, "", "grid_slaves"], [5, 2, 1, "", "identify"], [5, 2, 1, "", "image_names"], [5, 2, 1, "", "image_types"], [5, 2, 1, "", "info"], [5, 2, 1, "", "info_patchlevel"], [5, 2, 1, "", "instate"], [5, 2, 1, "", "keys"], [5, 2, 1, "", "last_t"], [5, 2, 1, "", "lift"], [5, 2, 1, "", "location"], [5, 2, 1, "", "lower"], [5, 2, 1, "", "mainloop"], [5, 2, 1, "", "nametowidget"], [5, 2, 1, "", "newnetcdf"], [5, 2, 1, "", "next_t"], [5, 2, 1, "", "next_v"], [5, 2, 1, "", "nrun_t"], [5, 2, 1, "", "option_add"], [5, 2, 1, "", "option_clear"], [5, 2, 1, "", "option_get"], [5, 2, 1, "", "option_readfile"], [5, 2, 1, "", "pack"], [5, 2, 1, "", "pack_configure"], [5, 2, 1, "", "pack_forget"], [5, 2, 1, "", "pack_info"], [5, 2, 1, "", "pack_propagate"], [5, 2, 1, "", "pack_slaves"], [5, 2, 1, "", "pause_t"], [5, 2, 1, "", "place"], [5, 2, 1, "", "place_configure"], [5, 2, 1, "", "place_forget"], [5, 2, 1, "", "place_info"], [5, 2, 1, "", "place_slaves"], [5, 2, 1, "", "prev_t"], [5, 2, 1, "", "prev_v"], [5, 2, 1, "", "propagate"], [5, 2, 1, "", "prun_t"], [5, 2, 1, "", "quit"], [5, 2, 1, "", "redraw"], [5, 2, 1, "", "register"], [5, 2, 1, "", "reinit"], [5, 2, 1, "", "repeat_t"], [5, 2, 1, "", "rowconfigure"], [5, 2, 1, "", "selected_cmap"], [5, 2, 1, "", "selected_lat"], [5, 2, 1, "", "selected_lon"], [5, 2, 1, "", "selected_proj"], [5, 2, 1, "", "selected_v"], [5, 2, 1, "", "selection_clear"], [5, 2, 1, "", "selection_get"], [5, 2, 1, "", "selection_handle"], [5, 2, 1, "", "selection_own"], [5, 2, 1, "", "selection_own_get"], [5, 2, 1, "", "send"], [5, 2, 1, "", "set_tstep"], [5, 2, 1, "", "set_unlim"], [5, 2, 1, "", "setvar"], [5, 2, 1, "", "size"], [5, 2, 1, "", "slaves"], [5, 2, 1, "", "spinned_lat"], [5, 2, 1, "", "spinned_lon"], [5, 2, 1, "", "spinned_v"], [5, 2, 1, "", "state"], [5, 2, 1, "", "tk_bisque"], [5, 2, 1, "", "tk_focusFollowsMouse"], [5, 2, 1, "", "tk_focusNext"], [5, 2, 1, "", "tk_focusPrev"], [5, 2, 1, "", "tk_setPalette"], [5, 2, 1, "", "tk_strictMotif"], [5, 2, 1, "", "tkraise"], [5, 2, 1, "", "tstep_t"], [5, 2, 1, "", "unbind"], [5, 2, 1, "", "unbind_all"], [5, 2, 1, "", "unbind_class"], [5, 2, 1, "", "update"], [5, 2, 1, "", "update_idletasks"], [5, 2, 1, "", "wait_variable"], [5, 2, 1, "", "wait_visibility"], [5, 2, 1, "", "wait_window"], [5, 2, 1, "", "waitvar"], [5, 2, 1, "", "winfo_atom"], [5, 2, 1, "", "winfo_atomname"], [5, 2, 1, "", "winfo_cells"], [5, 2, 1, "", "winfo_children"], [5, 2, 1, "", "winfo_class"], [5, 2, 1, "", "winfo_colormapfull"], [5, 2, 1, "", "winfo_containing"], [5, 2, 1, "", "winfo_depth"], [5, 2, 1, "", "winfo_exists"], [5, 2, 1, "", "winfo_fpixels"], [5, 2, 1, "", "winfo_geometry"], [5, 2, 1, "", "winfo_height"], [5, 2, 1, "", "winfo_id"], [5, 2, 1, "", "winfo_interps"], [5, 2, 1, "", "winfo_ismapped"], [5, 2, 1, "", "winfo_manager"], [5, 2, 1, "", "winfo_name"], [5, 2, 1, "", "winfo_parent"], [5, 2, 1, "", "winfo_pathname"], [5, 2, 1, "", "winfo_pixels"], [5, 2, 1, "", "winfo_pointerx"], [5, 2, 1, "", "winfo_pointerxy"], [5, 2, 1, "", "winfo_pointery"], [5, 2, 1, "", "winfo_reqheight"], [5, 2, 1, "", "winfo_reqwidth"], [5, 2, 1, "", "winfo_rgb"], [5, 2, 1, "", "winfo_rootx"], [5, 2, 1, "", "winfo_rooty"], [5, 2, 1, "", "winfo_screen"], [5, 2, 1, "", "winfo_screencells"], [5, 2, 1, "", "winfo_screendepth"], [5, 2, 1, "", "winfo_screenheight"], [5, 2, 1, "", "winfo_screenmmheight"], [5, 2, 1, "", "winfo_screenmmwidth"], [5, 2, 1, "", "winfo_screenvisual"], [5, 2, 1, "", "winfo_screenwidth"], [5, 2, 1, "", "winfo_server"], [5, 2, 1, "", "winfo_toplevel"], [5, 2, 1, "", "winfo_viewable"], [5, 2, 1, "", "winfo_visual"], [5, 2, 1, "", "winfo_visualid"], [5, 2, 1, "", "winfo_visualsavailable"], [5, 2, 1, "", "winfo_vrootheight"], [5, 2, 1, "", "winfo_vrootwidth"], [5, 2, 1, "", "winfo_vrootx"], [5, 2, 1, "", "winfo_vrooty"], [5, 2, 1, "", "winfo_width"], [5, 2, 1, "", "winfo_x"], [5, 2, 1, "", "winfo_y"]], "ncvue.ncvmethods": [[6, 3, 1, "", "analyse_netcdf"], [6, 3, 1, "", "get_miss"], [6, 3, 1, "", "get_slice_miss"], [6, 3, 1, "", "set_dim_lat"], [6, 3, 1, "", "set_dim_lon"], [6, 3, 1, "", "set_dim_var"], [6, 3, 1, "", "set_dim_x"], [6, 3, 1, "", "set_dim_y"], [6, 3, 1, "", "set_dim_y2"], [6, 3, 1, "", "set_dim_z"]], "ncvue.ncvscatter": [[7, 1, 1, "", "ncvScatter"]], "ncvue.ncvscatter.ncvScatter": [[7, 2, 1, "", "after"], [7, 2, 1, "", "after_cancel"], [7, 2, 1, "", "after_idle"], [7, 2, 1, "", "anchor"], [7, 2, 1, "", "bbox"], [7, 2, 1, "", "bell"], [7, 2, 1, "", "bind"], [7, 2, 1, "", "bind_all"], [7, 2, 1, "", "bind_class"], [7, 2, 1, "", "bindtags"], [7, 2, 1, "", "cget"], [7, 2, 1, "", "checked_x"], [7, 2, 1, "", "checked_y"], [7, 2, 1, "", "checked_y2"], [7, 2, 1, "", "checked_yy2"], [7, 2, 1, "", "clipboard_append"], [7, 2, 1, "", "clipboard_clear"], [7, 2, 1, "", "clipboard_get"], [7, 2, 1, "", "columnconfigure"], [7, 2, 1, "", "config"], [7, 2, 1, "", "configure"], [7, 2, 1, "", "deletecommand"], [7, 2, 1, "", "destroy"], [7, 2, 1, "", "entered_y"], [7, 2, 1, "", "entered_y2"], [7, 2, 1, "", "event_add"], [7, 2, 1, "", "event_delete"], [7, 2, 1, "", "event_generate"], [7, 2, 1, "", "event_info"], [7, 2, 1, "", "focus"], [7, 2, 1, "", "focus_displayof"], [7, 2, 1, "", "focus_force"], [7, 2, 1, "", "focus_get"], [7, 2, 1, "", "focus_lastfor"], [7, 2, 1, "", "focus_set"], [7, 2, 1, "", "forget"], [7, 2, 1, "", "getboolean"], [7, 2, 1, "", "getdouble"], [7, 2, 1, "", "getint"], [7, 2, 1, "", "getvar"], [7, 2, 1, "", "grab_current"], [7, 2, 1, "", "grab_release"], [7, 2, 1, "", "grab_set"], [7, 2, 1, "", "grab_set_global"], [7, 2, 1, "", "grab_status"], [7, 2, 1, "", "grid"], [7, 2, 1, "", "grid_anchor"], [7, 2, 1, "", "grid_bbox"], [7, 2, 1, "", "grid_columnconfigure"], [7, 2, 1, "", "grid_configure"], [7, 2, 1, "", "grid_forget"], [7, 2, 1, "", "grid_info"], [7, 2, 1, "", "grid_location"], [7, 2, 1, "", "grid_propagate"], [7, 2, 1, "", "grid_remove"], [7, 2, 1, "", "grid_rowconfigure"], [7, 2, 1, "", "grid_size"], [7, 2, 1, "", "grid_slaves"], [7, 2, 1, "", "identify"], [7, 2, 1, "", "image_names"], [7, 2, 1, "", "image_types"], [7, 2, 1, "", "info"], [7, 2, 1, "", "info_patchlevel"], [7, 2, 1, "", "instate"], [7, 2, 1, "", "keys"], [7, 2, 1, "", "lift"], [7, 2, 1, "", "location"], [7, 2, 1, "", "lower"], [7, 2, 1, "", "mainloop"], [7, 2, 1, "", "minmax_ylim"], [7, 2, 1, "", "nametowidget"], [7, 2, 1, "", "newnetcdf"], [7, 2, 1, "", "next_y"], [7, 2, 1, "", "option_add"], [7, 2, 1, "", "option_clear"], [7, 2, 1, "", "option_get"], [7, 2, 1, "", "option_readfile"], [7, 2, 1, "", "pack"], [7, 2, 1, "", "pack_configure"], [7, 2, 1, "", "pack_forget"], [7, 2, 1, "", "pack_info"], [7, 2, 1, "", "pack_propagate"], [7, 2, 1, "", "pack_slaves"], [7, 2, 1, "", "place"], [7, 2, 1, "", "place_configure"], [7, 2, 1, "", "place_forget"], [7, 2, 1, "", "place_info"], [7, 2, 1, "", "place_slaves"], [7, 2, 1, "", "prev_y"], [7, 2, 1, "", "propagate"], [7, 2, 1, "", "quit"], [7, 2, 1, "", "redraw"], [7, 2, 1, "", "redraw_y"], [7, 2, 1, "", "redraw_y2"], [7, 2, 1, "", "register"], [7, 2, 1, "", "reinit"], [7, 2, 1, "", "rowconfigure"], [7, 2, 1, "", "selected_x"], [7, 2, 1, "", "selected_y"], [7, 2, 1, "", "selected_y2"], [7, 2, 1, "", "selection_clear"], [7, 2, 1, "", "selection_get"], [7, 2, 1, "", "selection_handle"], [7, 2, 1, "", "selection_own"], [7, 2, 1, "", "selection_own_get"], [7, 2, 1, "", "send"], [7, 2, 1, "", "setvar"], [7, 2, 1, "", "size"], [7, 2, 1, "", "slaves"], [7, 2, 1, "", "spinned_x"], [7, 2, 1, "", "spinned_y"], [7, 2, 1, "", "spinned_y2"], [7, 2, 1, "", "state"], [7, 2, 1, "", "tk_bisque"], [7, 2, 1, "", "tk_focusFollowsMouse"], [7, 2, 1, "", "tk_focusNext"], [7, 2, 1, "", "tk_focusPrev"], [7, 2, 1, "", "tk_setPalette"], [7, 2, 1, "", "tk_strictMotif"], [7, 2, 1, "", "tkraise"], [7, 2, 1, "", "unbind"], [7, 2, 1, "", "unbind_all"], [7, 2, 1, "", "unbind_class"], [7, 2, 1, "", "update"], [7, 2, 1, "", "update_idletasks"], [7, 2, 1, "", "wait_variable"], [7, 2, 1, "", "wait_visibility"], [7, 2, 1, "", "wait_window"], [7, 2, 1, "", "waitvar"], [7, 2, 1, "", "winfo_atom"], [7, 2, 1, "", "winfo_atomname"], [7, 2, 1, "", "winfo_cells"], [7, 2, 1, "", "winfo_children"], [7, 2, 1, "", "winfo_class"], [7, 2, 1, "", "winfo_colormapfull"], [7, 2, 1, "", "winfo_containing"], [7, 2, 1, "", "winfo_depth"], [7, 2, 1, "", "winfo_exists"], [7, 2, 1, "", "winfo_fpixels"], [7, 2, 1, "", "winfo_geometry"], [7, 2, 1, "", "winfo_height"], [7, 2, 1, "", "winfo_id"], [7, 2, 1, "", "winfo_interps"], [7, 2, 1, "", "winfo_ismapped"], [7, 2, 1, "", "winfo_manager"], [7, 2, 1, "", "winfo_name"], [7, 2, 1, "", "winfo_parent"], [7, 2, 1, "", "winfo_pathname"], [7, 2, 1, "", "winfo_pixels"], [7, 2, 1, "", "winfo_pointerx"], [7, 2, 1, "", "winfo_pointerxy"], [7, 2, 1, "", "winfo_pointery"], [7, 2, 1, "", "winfo_reqheight"], [7, 2, 1, "", "winfo_reqwidth"], [7, 2, 1, "", "winfo_rgb"], [7, 2, 1, "", "winfo_rootx"], [7, 2, 1, "", "winfo_rooty"], [7, 2, 1, "", "winfo_screen"], [7, 2, 1, "", "winfo_screencells"], [7, 2, 1, "", "winfo_screendepth"], [7, 2, 1, "", "winfo_screenheight"], [7, 2, 1, "", "winfo_screenmmheight"], [7, 2, 1, "", "winfo_screenmmwidth"], [7, 2, 1, "", "winfo_screenvisual"], [7, 2, 1, "", "winfo_screenwidth"], [7, 2, 1, "", "winfo_server"], [7, 2, 1, "", "winfo_toplevel"], [7, 2, 1, "", "winfo_viewable"], [7, 2, 1, "", "winfo_visual"], [7, 2, 1, "", "winfo_visualid"], [7, 2, 1, "", "winfo_visualsavailable"], [7, 2, 1, "", "winfo_vrootheight"], [7, 2, 1, "", "winfo_vrootwidth"], [7, 2, 1, "", "winfo_vrootx"], [7, 2, 1, "", "winfo_vrooty"], [7, 2, 1, "", "winfo_width"], [7, 2, 1, "", "winfo_x"], [7, 2, 1, "", "winfo_y"]], "ncvue.ncvue": [[8, 3, 1, "", "ncvue"]], "ncvue.ncvutils": [[9, 4, 1, "", "DIMMETHODS"], [9, 3, 1, "", "add_cyclic"], [9, 3, 1, "", "clone_ncvmain"], [9, 3, 1, "", "format_coord_contour"], [9, 3, 1, "", "format_coord_map"], [9, 3, 1, "", "format_coord_scatter"], [9, 3, 1, "", "get_slice"], [9, 3, 1, "", "has_cyclic"], [9, 3, 1, "", "list_intersection"], [9, 3, 1, "", "selvar"], [9, 3, 1, "", "set_axis_label"], [9, 3, 1, "", "set_miss"], [9, 3, 1, "", "spinbox_values"], [9, 3, 1, "", "vardim2var"], [9, 3, 1, "", "zip_dim_name_length"]], "ncvue.ncvwidgets": [[10, 1, 1, "", "Tooltip"], [10, 1, 1, "", "Treeview"], [10, 3, 1, "", "add_checkbutton"], [10, 3, 1, "", "add_combobox"], [10, 3, 1, "", "add_entry"], [10, 3, 1, "", "add_imagemenu"], [10, 3, 1, "", "add_menu"], [10, 3, 1, "", "add_scale"], [10, 3, 1, "", "add_spinbox"], [10, 3, 1, "", "add_tooltip"], [10, 3, 1, "", "callurl"]], "ncvue.ncvwidgets.Tooltip": [[10, 2, 1, "", "get_position"], [10, 2, 1, "", "hidetip"], [10, 2, 1, "", "position_window"], [10, 2, 1, "", "schedule"], [10, 2, 1, "", "showcontents"], [10, 2, 1, "", "showtip"], [10, 2, 1, "", "unschedule"]], "ncvue.ncvwidgets.Treeview": [[10, 2, 1, "", "after"], [10, 2, 1, "", "after_cancel"], [10, 2, 1, "", "after_idle"], [10, 2, 1, "", "anchor"], [10, 2, 1, "", "bbox"], [10, 2, 1, "", "bell"], [10, 2, 1, "", "bind"], [10, 2, 1, "", "bind_all"], [10, 2, 1, "", "bind_class"], [10, 2, 1, "", "bindtags"], [10, 2, 1, "", "cget"], [10, 2, 1, "", "clipboard_append"], [10, 2, 1, "", "clipboard_clear"], [10, 2, 1, "", "clipboard_get"], [10, 2, 1, "", "columnconfigure"], [10, 2, 1, "", "config"], [10, 2, 1, "", "configure"], [10, 2, 1, "", "deletecommand"], [10, 2, 1, "", "destroy"], [10, 2, 1, "", "event_add"], [10, 2, 1, "", "event_delete"], [10, 2, 1, "", "event_generate"], [10, 2, 1, "", "event_info"], [10, 2, 1, "", "focus"], [10, 2, 1, "", "focus_displayof"], [10, 2, 1, "", "focus_force"], [10, 2, 1, "", "focus_get"], [10, 2, 1, "", "focus_lastfor"], [10, 2, 1, "", "focus_set"], [10, 2, 1, "", "forget"], [10, 2, 1, "", "getboolean"], [10, 2, 1, "", "getdouble"], [10, 2, 1, "", "getint"], [10, 2, 1, "", "getvar"], [10, 2, 1, "", "grab_current"], [10, 2, 1, "", "grab_release"], [10, 2, 1, "", "grab_set"], [10, 2, 1, "", "grab_set_global"], [10, 2, 1, "", "grab_status"], [10, 2, 1, "", "grid"], [10, 2, 1, "", "grid_anchor"], [10, 2, 1, "", "grid_bbox"], [10, 2, 1, "", "grid_columnconfigure"], [10, 2, 1, "", "grid_configure"], [10, 2, 1, "", "grid_forget"], [10, 2, 1, "", "grid_info"], [10, 2, 1, "", "grid_location"], [10, 2, 1, "", "grid_propagate"], [10, 2, 1, "", "grid_remove"], [10, 2, 1, "", "grid_rowconfigure"], [10, 2, 1, "", "grid_size"], [10, 2, 1, "", "grid_slaves"], [10, 2, 1, "", "identify"], [10, 2, 1, "", "image_names"], [10, 2, 1, "", "image_types"], [10, 2, 1, "", "info"], [10, 2, 1, "", "info_patchlevel"], [10, 2, 1, "", "instate"], [10, 2, 1, "", "keys"], [10, 2, 1, "", "lift"], [10, 2, 1, "", "location"], [10, 2, 1, "", "lower"], [10, 2, 1, "", "mainloop"], [10, 2, 1, "", "nametowidget"], [10, 2, 1, "", "option_add"], [10, 2, 1, "", "option_clear"], [10, 2, 1, "", "option_get"], [10, 2, 1, "", "option_readfile"], [10, 2, 1, "", "pack"], [10, 2, 1, "", "pack_configure"], [10, 2, 1, "", "pack_forget"], [10, 2, 1, "", "pack_info"], [10, 2, 1, "", "pack_propagate"], [10, 2, 1, "", "pack_slaves"], [10, 2, 1, "", "place"], [10, 2, 1, "", "place_configure"], [10, 2, 1, "", "place_forget"], [10, 2, 1, "", "place_info"], [10, 2, 1, "", "place_slaves"], [10, 2, 1, "", "propagate"], [10, 2, 1, "", "quit"], [10, 2, 1, "", "register"], [10, 2, 1, "", "rowconfigure"], [10, 2, 1, "", "selection_clear"], [10, 2, 1, "", "selection_get"], [10, 2, 1, "", "selection_handle"], [10, 2, 1, "", "selection_own"], [10, 2, 1, "", "selection_own_get"], [10, 2, 1, "", "send"], [10, 2, 1, "", "setvar"], [10, 2, 1, "", "size"], [10, 2, 1, "", "slaves"], [10, 2, 1, "", "state"], [10, 2, 1, "", "tk_bisque"], [10, 2, 1, "", "tk_focusFollowsMouse"], [10, 2, 1, "", "tk_focusNext"], [10, 2, 1, "", "tk_focusPrev"], [10, 2, 1, "", "tk_setPalette"], [10, 2, 1, "", "tk_strictMotif"], [10, 2, 1, "", "tkraise"], [10, 2, 1, "", "unbind"], [10, 2, 1, "", "unbind_all"], [10, 2, 1, "", "unbind_class"], [10, 2, 1, "", "update"], [10, 2, 1, "", "update_idletasks"], [10, 2, 1, "", "wait_variable"], [10, 2, 1, "", "wait_visibility"], [10, 2, 1, "", "wait_window"], [10, 2, 1, "", "waitvar"], [10, 2, 1, "", "winfo_atom"], [10, 2, 1, "", "winfo_atomname"], [10, 2, 1, "", "winfo_cells"], [10, 2, 1, "", "winfo_children"], [10, 2, 1, "", "winfo_class"], [10, 2, 1, "", "winfo_colormapfull"], [10, 2, 1, "", "winfo_containing"], [10, 2, 1, "", "winfo_depth"], [10, 2, 1, "", "winfo_exists"], [10, 2, 1, "", "winfo_fpixels"], [10, 2, 1, "", "winfo_geometry"], [10, 2, 1, "", "winfo_height"], [10, 2, 1, "", "winfo_id"], [10, 2, 1, "", "winfo_interps"], [10, 2, 1, "", "winfo_ismapped"], [10, 2, 1, "", "winfo_manager"], [10, 2, 1, "", "winfo_name"], [10, 2, 1, "", "winfo_parent"], [10, 2, 1, "", "winfo_pathname"], [10, 2, 1, "", "winfo_pixels"], [10, 2, 1, "", "winfo_pointerx"], [10, 2, 1, "", "winfo_pointerxy"], [10, 2, 1, "", "winfo_pointery"], [10, 2, 1, "", "winfo_reqheight"], [10, 2, 1, "", "winfo_reqwidth"], [10, 2, 1, "", "winfo_rgb"], [10, 2, 1, "", "winfo_rootx"], [10, 2, 1, "", "winfo_rooty"], [10, 2, 1, "", "winfo_screen"], [10, 2, 1, "", "winfo_screencells"], [10, 2, 1, "", "winfo_screendepth"], [10, 2, 1, "", "winfo_screenheight"], [10, 2, 1, "", "winfo_screenmmheight"], [10, 2, 1, "", "winfo_screenmmwidth"], [10, 2, 1, "", "winfo_screenvisual"], [10, 2, 1, "", "winfo_screenwidth"], [10, 2, 1, "", "winfo_server"], [10, 2, 1, "", "winfo_toplevel"], [10, 2, 1, "", "winfo_viewable"], [10, 2, 1, "", "winfo_visual"], [10, 2, 1, "", "winfo_visualid"], [10, 2, 1, "", "winfo_visualsavailable"], [10, 2, 1, "", "winfo_vrootheight"], [10, 2, 1, "", "winfo_vrootwidth"], [10, 2, 1, "", "winfo_vrootx"], [10, 2, 1, "", "winfo_vrooty"], [10, 2, 1, "", "winfo_width"], [10, 2, 1, "", "winfo_x"], [10, 2, 1, "", "winfo_y"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "data", "Python data"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function", "4": "py:data"}, "terms": {"": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12], "0": [0, 3, 4, 5, 6, 7, 9, 10, 11, 12], "0001": 9, "1": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12], "10": [2, 10, 12], "1000": 10, "11": [9, 12], "111": 9, "12": 2, "120": 9, "13": [0, 2, 8], "144": 9, "17": 9, "17520": 9, "18": 9, "180": [0, 9], "1e": 9, "2": [0, 9, 11, 12], "20": [0, 9], "2020": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "2021": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11], "2022": [0, 11], "2023": 10, "2024": [0, 3, 4, 5, 6, 7, 8, 9, 11, 12], "21": 9, "216": 9, "240": 9, "26": 9, "28": 9, "288": 9, "2d": 3, "3": [0, 2, 3, 4, 5, 7, 9, 10, 11, 12], "30": 9, "300": 9, "31": 0, "32": 9, "360": [0, 9], "361": 9, "3697432": 9, "3c": [3, 4, 5, 7, 10], "4": [0, 9, 10, 11], "45": 9, "5": [0, 2, 9, 11], "50": 9, "52608": 12, "54": 9, "6": [0, 2, 3, 4, 5, 7, 9, 10, 11], "60": [9, 12], "63": 9, "64": 9, "65536": [3, 4, 5, 7, 10], "66": 9, "7": [0, 11], "72": 9, "74": 9, "8": [0, 2, 11], "80": [3, 4, 5, 7, 10], "9": [0, 9], "90": 9, "91": 9, "A": [1, 2, 3, 4, 5, 7, 10], "Be": 12, "But": 12, "If": [2, 3, 4, 5, 7, 9, 10, 12], "In": [2, 10], "It": [2, 3, 4, 5, 7, 10, 11, 12], "No": 9, "Not": 9, "On": [2, 12], "One": [2, 12], "Or": [2, 12], "The": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "Then": [3, 5, 7], "There": 2, "These": 6, "To": [3, 4, 5, 7, 10], "With": [3, 4, 5, 7, 10], "__init__": [3, 4, 5, 7], "_fillvalu": [6, 8], "_netcdf4": [6, 9], "_noarg_": [3, 4, 5, 7, 10], "_subplot": 9, "about": [1, 3, 4, 5, 7, 10], "abov": 2, "abovethi": [3, 4, 5, 7, 10], "accord": [3, 4, 5, 7, 10], "accordingli": 0, "account": [3, 4, 5, 7, 10], "action": [0, 11], "activ": [0, 3, 4, 5, 7, 10], "activebackground": [3, 4, 5, 7, 10], "activeforeground": [3, 4, 5, 7, 10], "ad": [0, 4, 5, 6, 9, 10, 11], "adapt": 0, "add": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "add_checkbutton": [1, 10, 11], "add_combobox": [1, 10, 11], "add_cycl": [0, 1, 9, 11], "add_cyclic_point": 9, "add_entri": [1, 10, 11], "add_imagemenu": [1, 10, 11], "add_menu": [1, 10, 11], "add_scal": [1, 10, 11], "add_spinbox": [1, 10, 11], "add_tooltip": [1, 10, 11], "addit": [3, 4, 5, 7, 10], "addition": [3, 4, 5, 7, 10], "address": [3, 4, 5, 6, 7, 9], "adher": [3, 4, 5, 7, 10], "administr": 2, "after": [2, 3, 4, 5, 7, 9, 10, 11], "after_cancel": [3, 4, 5, 7, 10, 11], "after_idl": [3, 4, 5, 7, 10, 11], "again": 0, "against": 7, "agricultur": [3, 4, 5, 6, 7, 8, 9, 10], "aim": [11, 12], "align": 10, "aliment": [3, 4, 5, 6, 7, 8, 9, 10], "all": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12], "allow": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "along": [5, 9], "alreadi": [2, 9], "also": [0, 2, 3, 4, 5, 6, 7, 10, 12], "alt": [3, 4, 5, 7, 10], "altern": [3, 4, 5, 7, 10], "alwai": 12, "amount": [3, 4, 5, 7, 10], "amplitud": [9, 12], "an": [0, 2, 3, 4, 5, 7, 8, 9, 10], "analys": [4, 6], "analyse_netcdf": [0, 1, 6, 11], "analysi": 0, "ancestor": [3, 4, 5, 7, 10], "anchor": [3, 4, 5, 7, 10, 11], "anchor_widget": 10, "ani": [2, 3, 4, 5, 7, 9, 10, 12], "anim": [5, 11, 12], "anoth": [3, 4, 5, 7, 9, 10, 12], "anymor": [0, 3, 4, 5, 7, 10], "anywai": 2, "api": [0, 1, 10], "app": [0, 2, 11], "appear": [3, 4, 5, 7, 10], "append": [3, 4, 5, 7, 10], "appl": [0, 2], "appli": [3, 4, 5, 7, 9, 10], "applic": [0, 2, 3, 4, 5, 7, 10], "apt": 2, "ar": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "arang": 9, "arbitrari": [3, 4, 5, 7, 10], "area": 10, "arg": [0, 3, 4, 5, 6, 7, 10], "argument": [3, 4, 5, 6, 7, 10], "arithmet": [0, 9, 12], "arm64": 2, "arrai": [0, 6, 9], "ascii": 0, "associ": [3, 4, 5, 7, 9, 10], "assur": 0, "astr": [3, 4, 5, 7, 10], "atom": [3, 4, 5, 7, 10], "attribut": [0, 6], "automat": [0, 3, 4, 5, 7, 10, 12], "avail": [3, 4, 5, 7, 10, 12], "averag": 9, "avoid": 0, "awar": 12, "ax": [0, 7, 9, 12], "ax2": 9, "axessubplot": 9, "axi": [0, 5, 6, 7, 9, 11, 12], "azur": [0, 12], "b1": [3, 4, 5, 7, 10], "b2": [3, 4, 5, 7, 10], "b3": [3, 4, 5, 7, 10], "b4": [3, 4, 5, 7, 10], "b5": [3, 4, 5, 7, 10], "back": [0, 3, 4, 5, 7, 8, 10, 11], "backend": 12, "background": [3, 4, 5, 7, 10], "backward": 5, "badg": 0, "base": [3, 4, 5, 6, 7, 10, 12], "bash": 2, "basic": 2, "basin": 0, "bbox": [3, 4, 5, 7, 10, 11], "becaus": [0, 2, 12], "becom": [3, 4, 5, 7, 10], "been": [3, 4, 5, 7, 10], "befor": [3, 4, 5, 7, 9, 10, 12], "being": [11, 12], "bell": [3, 4, 5, 7, 10, 11], "belong": 6, "below": [0, 2, 12], "belowthi": [3, 4, 5, 7, 10], "best": 2, "better": [0, 11], "between": [0, 3, 4, 5, 7, 8, 9, 10], "bin": 2, "binari": 1, "bind": [0, 3, 4, 5, 7, 10, 11], "bind_al": [3, 4, 5, 7, 10, 11], "bind_class": [3, 4, 5, 7, 10, 11], "bindtag": [3, 4, 5, 7, 10, 11], "bit": [3, 4, 5, 7, 10], "bitmap": [3, 4, 5, 7, 10], "blue": 10, "bool": [3, 4, 5, 7, 10], "boolean": [3, 4, 5, 7, 10], "booleanvar": [3, 4, 5, 7, 10], "border": [0, 3, 4, 5, 7, 10, 11], "bordermod": [3, 4, 5, 7, 10], "both": [0, 3, 4, 5, 7, 9, 10], "bottom": [3, 4, 5, 7, 10], "bound": [3, 4, 5, 7, 10], "boundari": [3, 4, 5, 7, 10], "box": [2, 3, 4, 5, 7, 10, 12], "bracket": 0, "break": [3, 4, 5, 7, 10], "brew": 2, "brown": [3, 4, 5, 7, 10], "browser": 10, "bug": [0, 6, 11], "bugfix": 0, "build": [0, 1, 12], "build_ext": 2, "built": 2, "builtin": 9, "bump": 0, "button": [0, 3, 4, 5, 7, 9, 10, 12], "button1": [3, 4, 5, 7, 10], "button2": [3, 4, 5, 7, 10], "button3": [3, 4, 5, 7, 10], "button4": [3, 4, 5, 7, 10], "button5": [3, 4, 5, 7, 10], "buttonpress": [3, 4, 5, 7, 10], "buttonreleas": [3, 4, 5, 7, 10], "c": [2, 12], "calcul": [0, 4, 6], "call": [0, 3, 4, 5, 6, 7, 8, 10, 12], "callback": [3, 4, 5, 7, 10], "callurl": [1, 10, 11], "can": [0, 2, 3, 4, 5, 7, 10, 12], "cancel": [3, 4, 5, 7, 10], "cannot": 12, "canva": [3, 5, 7, 12], "capabl": [11, 12], "cartograph": 2, "cartopi": [0, 2, 9, 11, 12], "case": [2, 12], "catch": [0, 6], "caus": [3, 4, 5, 7, 10], "caution": [3, 4, 5, 7, 10], "cd": 2, "cell": [0, 3, 4, 5, 7, 9, 10], "central": [0, 5, 12], "cfg": 0, "cflag": 2, "cget": [3, 4, 5, 7, 10, 11], "chang": [0, 3, 4, 5, 7, 9, 10, 12], "changelog": 1, "charact": 0, "check": [3, 4, 5, 7, 9, 10, 11], "check_new_netcdf": [4, 11], "checkbutton": [0, 3, 5, 7, 10, 11], "checked_al": [5, 11], "checked_i": [7, 11], "checked_x": [7, 11], "checked_y2": [7, 11], "checked_yy2": [7, 11], "child": [3, 4, 5, 7, 10], "children": [3, 4, 5, 7, 10], "chip": [0, 2], "choic": 10, "choos": [2, 6, 10, 12], "chooser": 11, "chosen": [0, 3, 5, 9, 10], "chr": 0, "chunk": [3, 4, 5, 7, 10], "cibuildwheel": 0, "circl": 12, "circul": [3, 4, 5, 7, 10], "circular": 0, "claim": 0, "clash": 2, "class": [0, 3, 4, 5, 6, 7, 8, 9, 10], "classnam": [3, 4, 5, 7, 10], "clat2d": 9, "clear": [3, 4, 5, 7, 10], "click": [2, 12], "clipboard": [3, 4, 5, 7, 10], "clipboard_append": [3, 4, 5, 7, 10, 11], "clipboard_clear": [3, 4, 5, 7, 10, 11], "clipboard_get": [3, 4, 5, 7, 10, 11], "clon": 9, "clon2d": 9, "clone": 2, "clone_ncvmain": [1, 9, 11], "close": 0, "cmap": [3, 5, 10], "cmaplbl": 10, "cmd": [3, 4, 5, 7, 10], "cnf": [3, 4, 5, 7, 10], "coastlin": 12, "col": [0, 6], "col2": [3, 4, 5, 7, 10], "color": [3, 4, 5, 7, 10, 12], "colorbar": [0, 5, 11], "colormap": [0, 3, 4, 5, 7, 10], "colormodel": [3, 4, 5, 7, 10], "colour": 10, "column": [3, 4, 5, 7, 9, 10], "columnconfigur": [3, 4, 5, 7, 10, 11], "columnspan": [3, 4, 5, 7, 10], "com": [2, 9], "combin": 9, "combobox": [3, 5, 7, 10], "comboboxselect": 10, "come": 2, "command": [2, 3, 4, 5, 7, 9, 10, 12], "commit": [0, 11], "common": [0, 6, 9, 11], "commun": [0, 3, 5, 7, 8], "complet": 12, "comprehens": 9, "concaten": [3, 4, 5, 7, 10], "concern": 7, "conda": [0, 2], "config": [2, 3, 4, 5, 7, 9, 10, 11], "configur": [3, 4, 5, 7, 10, 11], "connect": [3, 5, 7], "consider": 12, "consist": [3, 4, 5, 7, 10], "constant": 10, "contain": [3, 4, 5, 7, 10], "content": [3, 4, 5, 7, 10, 12], "continu": 0, "contour": [0, 1, 3, 5, 9, 11], "contourf": 0, "control": [2, 3, 4, 5, 7, 10], "conveni": [6, 10], "coordin": [0, 3, 4, 5, 7, 9, 10], "copi": [0, 9, 10], "copyright": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "corner": [3, 4, 5, 7, 10], "correct": [0, 9, 12], "correctli": 12, "correspond": [3, 4, 5, 7, 9, 10], "could": 6, "creat": [3, 4, 5, 7, 9, 10], "cuntz": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "curl": 2, "current": [0, 3, 4, 5, 7, 8, 10], "cx_freez": [0, 11], "cyclic": 9, "cyclic_data": 9, "cyclic_i": 9, "cyclic_lat2d": 9, "cyclic_lon": 9, "cyclic_lon2d": 9, "cyclic_x": 9, "cython": 2, "d": 10, "dai": 0, "dark": [0, 10, 12], "darkgrid": 0, "data": [0, 2, 3, 4, 5, 7, 8, 9, 10, 12], "databas": [3, 4, 5, 7, 10], "dataset": 9, "datatyp": 8, "date": [4, 9], "datetim": [6, 12], "datetime64": [0, 6, 9], "de": [3, 4, 5, 6, 7, 8, 9, 10, 11], "deactiv": [3, 4, 5, 7, 10], "deal": 0, "dec": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11], "default": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12], "default_fillv": [6, 8], "delai": 5, "delay_t": [5, 11], "delet": [3, 4, 5, 7, 10], "deletecommand": [3, 4, 5, 7, 10, 11], "depend": [1, 9], "deprec": 2, "depth": [3, 4, 5, 7, 10, 12], "deriv": [3, 4, 5, 7, 10], "descend": [3, 4, 5, 7, 10], "describ": 12, "descript": [3, 4, 5, 7, 10], "destroi": [3, 4, 5, 7, 10, 11], "detail": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "detect": [0, 6, 9, 11, 12], "determin": [3, 4, 5, 6, 7, 10], "dev": 2, "develop": [0, 2], "deviat": [9, 12], "dialog": 2, "did": 12, "differ": [0, 3, 4, 5, 7, 8, 9, 10, 11, 12], "digit": 0, "dim": [6, 9, 10], "dim1": 9, "dimens": [0, 3, 4, 5, 6, 7, 9, 10, 11, 12], "dimension": 9, "dimmethod": [1, 9, 11], "dimspin": [6, 9], "direct": [3, 4, 5, 7, 10], "directcolor": [3, 4, 5, 7, 10], "directli": [2, 3, 4, 5, 6, 7, 9], "directori": [0, 2, 3, 5, 8], "disabl": [0, 3, 4, 5, 7, 10], "disabledforeground": [3, 4, 5, 7, 10], "disappear": 0, "disk": [0, 11], "displai": [3, 4, 5, 7, 10, 12], "displayof": [3, 4, 5, 7, 10], "distanc": [3, 4, 5, 7, 10], "distribut": [1, 12], "dl": 10, "dlbl": [6, 10], "dlblval": 6, "dlval": 10, "do": [0, 2, 3, 4, 5, 6, 7, 9, 10], "doc": 10, "document": [0, 11, 12], "doe": [0, 3, 4, 5, 7, 10, 12], "domain": 9, "don": 2, "done": 0, "dot": [3, 4, 5, 6, 7, 8, 9, 10, 11], "doubl": [3, 4, 5, 7, 10], "doublevar": [3, 4, 5, 7, 10], "down": 10, "draw": [7, 11, 12], "drawn": [0, 3, 5, 7], "drop": [0, 10, 11, 12], "dropdown": 12, "dtime": 6, "dtip": 10, "dtype": [6, 9], "dunlim": [5, 6], "duplic": 9, "dure": 10, "dval": 10, "e": [0, 3, 4, 5, 6, 7, 9, 10, 12], "each": [3, 4, 5, 7, 10], "easiest": 2, "easili": [2, 3, 4, 5, 7, 10], "edg": [3, 4, 5, 7, 10], "either": [0, 12], "elabor": 2, "element": [3, 4, 5, 7, 9, 10], "elif": 0, "elimin": 12, "els": 9, "elsewher": 11, "empti": [3, 4, 5, 7, 10, 12], "enabl": 2, "engin": 2, "enhanc": 0, "enter": [3, 4, 5, 7, 10], "entered_clon": [5, 11], "entered_i": [7, 11], "entered_v": [5, 11], "entered_y2": [7, 11], "entered_z": [3, 11], "entri": [0, 3, 5, 6, 9, 10, 12], "entry_point": [0, 11], "env": 2, "environ": 2, "environn": [3, 4, 5, 6, 7, 8, 9, 10], "equal": 9, "equival": [3, 4, 5, 7, 10], "error": 0, "especi": 12, "et": [3, 4, 5, 6, 7, 8, 9, 10], "etc": [0, 3, 4, 5, 6, 7, 9], "even": [0, 3, 4, 5, 7, 10], "event": [3, 4, 5, 7, 10], "event_add": [3, 4, 5, 7, 10, 11], "event_delet": [3, 4, 5, 7, 10, 11], "event_gener": [3, 4, 5, 7, 10, 11], "event_info": [3, 4, 5, 7, 10, 11], "eventu": 2, "everyth": 2, "evolv": 12, "exact": [3, 4, 5, 7, 10], "exactli": 2, "exampl": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12], "except": [3, 4, 5, 7, 10], "exclud": 12, "execut": [2, 3, 4, 5, 7, 10], "exhaust": 0, "exist": [3, 4, 5, 6, 7, 10], "expand": [3, 4, 5, 7, 10], "expect": [3, 4, 5, 7, 10], "explicitli": [0, 11], "export": 2, "expos": [3, 4, 5, 7, 10], "extens": 10, "extern": 10, "externalis": 0, "extract": [0, 6, 9], "fall": [3, 4, 5, 7, 10], "fals": [0, 3, 4, 5, 7, 9, 10], "fashion": 12, "fast": 12, "feb": [0, 3, 5, 7, 8, 11], "feel": [3, 4, 5, 7, 10], "fetch": [3, 4, 5, 7, 10], "few": 0, "fi": [2, 3, 4, 5, 6, 7, 9], "figur": [3, 5, 7, 12], "file": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11], "file0001": 9, "file1": 9, "file_nam": [3, 4, 5, 7, 10], "filenam": [3, 4, 5, 7, 10], "fill": [3, 4, 5, 7, 10, 12], "final": [0, 9, 11], "find": [0, 9], "first": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11], "first_t": [5, 11], "fix": [0, 11], "flag": [3, 4, 5, 7, 10], "float": [3, 4, 5, 7, 8, 9, 10], "focu": [3, 4, 5, 7, 10, 11], "focus_displayof": [3, 4, 5, 7, 10, 11], "focus_forc": [3, 4, 5, 7, 10, 11], "focus_get": [3, 4, 5, 7, 10, 11], "focus_lastfor": [3, 4, 5, 7, 10, 11], "focus_set": [3, 4, 5, 7, 10, 11], "focusin": [3, 4, 5, 7, 10], "focusout": [3, 4, 5, 7, 10], "follow": [3, 4, 5, 6, 7, 8, 9, 10], "font": [0, 8, 10], "foreground": [3, 4, 5, 7, 10], "forg": [0, 2], "forget": [3, 4, 5, 7, 10, 11], "form": [3, 4, 5, 7, 9, 10], "format": [0, 6, 9], "format_coord": 9, "format_coord_contour": [1, 9, 11], "format_coord_map": [1, 9, 11], "format_coord_scatt": [1, 9, 11], "formatt": 9, "forward": 5, "found": [0, 6], "frame": [3, 4, 5, 6, 7, 8, 10], "frame_widget": 10, "framework": 2, "franc": [3, 4, 5, 6, 7, 8, 9, 10], "freez": 2, "from": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "front": 10, "fssl": 2, "full": [3, 4, 5, 7, 10], "func": [3, 4, 5, 7, 10], "funcid": [3, 4, 5, 7, 10], "function": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10], "further": [3, 4, 5, 7, 10], "futur": [2, 10], "g": [0, 3, 4, 5, 7, 10, 12], "gather": 6, "gdal": 2, "gener": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11], "geo": 2, "geometri": [2, 3, 4, 5, 7, 10], "georeferenc": 5, "geos_config": 2, "geos_dir": 2, "get": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "get_cmap": [0, 5], "get_dim_var": 6, "get_miss": [1, 6, 9, 11], "get_posit": [10, 11], "get_slic": [0, 1, 6, 9, 11], "get_slice_i": 9, "get_slice_miss": [0, 1, 6, 11], "get_vminmax": [5, 11], "getboolean": [3, 4, 5, 7, 10, 11], "getdoubl": [3, 4, 5, 7, 10, 11], "getint": [3, 4, 5, 7, 10, 11], "getvar": [3, 4, 5, 7, 10, 11], "git": 2, "github": [0, 2, 11, 12], "githubusercont": 2, "give": [2, 3, 4, 5, 7, 10], "given": [0, 2, 3, 4, 5, 7, 9, 10, 12], "global": [2, 3, 4, 5, 7, 10, 12], "goe": [3, 4, 5, 7, 10], "grab": [3, 4, 5, 7, 10], "grab_curr": [3, 4, 5, 7, 10, 11], "grab_releas": [3, 4, 5, 7, 10, 11], "grab_set": [3, 4, 5, 7, 10, 11], "grab_set_glob": [3, 4, 5, 7, 10, 11], "grab_statu": [3, 4, 5, 7, 10, 11], "graph": 7, "graviti": [3, 4, 5, 7, 10], "grayscal": [3, 4, 5, 7, 10], "greater": 12, "grep": 2, "grid": [0, 3, 4, 5, 7, 10, 11, 12], "grid_anchor": [3, 4, 5, 7, 10, 11], "grid_bbox": [3, 4, 5, 7, 10, 11], "grid_columnconfigur": [3, 4, 5, 7, 10, 11], "grid_configur": [3, 4, 5, 7, 10, 11], "grid_forget": [3, 4, 5, 7, 10, 11], "grid_info": [3, 4, 5, 7, 10, 11], "grid_loc": [3, 4, 5, 7, 10, 11], "grid_propag": [3, 4, 5, 7, 10, 11], "grid_remov": [3, 4, 5, 7, 10, 11], "grid_rowconfigur": [3, 4, 5, 7, 10, 11], "grid_siz": [3, 4, 5, 7, 10, 11], "grid_slav": [3, 4, 5, 7, 10, 11], "gridlin": 11, "group": [0, 3, 4, 5, 6, 7, 8, 9, 11], "group1": 9, "grow": [3, 4, 5, 7, 10], "gui": [1, 8, 11], "gui_script": [0, 11], "guid": 1, "gvar": 5, "gy": 9, "ha": [3, 4, 5, 7, 10, 12], "hand": [0, 6, 7, 9], "handler": 10, "happen": 12, "has_cycl": [0, 1, 9, 11], "have": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11], "hdf5": 2, "hdf5_dir": 2, "head": 2, "height": [3, 4, 5, 7, 10], "helper": 0, "hemispher": 0, "henc": [6, 12], "here": 6, "hide": 10, "hidetip": [10, 11], "high": 2, "higher": [3, 4, 5, 7, 10], "highlightbackground": [3, 4, 5, 7, 10], "highlightcolor": [3, 4, 5, 7, 10], "histori": [3, 4, 5, 6, 7, 8, 9, 10, 11], "home": 2, "homebrew": 2, "homebrew_prefix": 2, "hook": 10, "horizont": 10, "hover": 10, "hover_delai": 10, "hovertip": 10, "how": [3, 4, 5, 7, 9, 10], "howev": 2, "html": 10, "http": [2, 9, 10, 12], "i": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12], "icon": 8, "id": [0, 2, 3, 4, 5, 7, 10], "ident": 12, "identifi": [0, 3, 4, 5, 6, 7, 9, 10, 11], "idl": [0, 3, 4, 5, 7, 10], "idlelib": 10, "ifil": 9, "imag": [0, 3, 4, 5, 7, 8, 10, 11], "image_nam": [3, 4, 5, 7, 10, 11], "image_typ": [3, 4, 5, 7, 10, 11], "imap": 10, "implement": 9, "import": [0, 9, 12], "in_": [3, 4, 5, 7, 10], "includ": [0, 2, 6, 9, 11], "includeid": [3, 4, 5, 7, 10], "index": [3, 4, 5, 7, 9, 10, 12], "indic": [3, 4, 5, 7, 10], "individu": [0, 6, 9, 11], "info": [3, 4, 5, 7, 10, 11], "info_patchlevel": [3, 4, 5, 7, 10, 11], "inform": [3, 4, 5, 7, 10], "ini": 10, "initi": [0, 10, 11], "initialis": 4, "input": [3, 4, 5, 7, 9, 10, 12], "inquir": [3, 4, 5, 7, 9, 10], "inra": [3, 4, 5, 6, 7, 8, 9, 10], "insertbackground": [3, 4, 5, 7, 10], "insid": [3, 4, 5, 7, 10], "instal": [0, 1, 11], "instanc": [3, 4, 5, 6, 7, 8, 10], "instat": [3, 4, 5, 7, 10, 11], "instead": [0, 2, 5, 6], "institut": [3, 4, 5, 6, 7, 8, 9, 10], "instruct": [0, 11], "int": [5, 9, 10], "integ": [3, 4, 5, 7, 10], "integr": 0, "intel": 2, "interf": 2, "intern": [3, 4, 5, 7, 10], "interp": [3, 4, 5, 7, 10], "interpret": [3, 4, 5, 7, 10, 12], "intersect": 9, "intvar": [3, 4, 5, 7, 10], "inv_x": 10, "inv_xlbl": 10, "invert": [0, 10, 11], "invok": [3, 4, 5, 7, 10], "io": 12, "ipadi": [3, 4, 5, 7, 10], "ipadx": [3, 4, 5, 7, 10], "ipython": [0, 8, 12], "isfram": 5, "item": [3, 4, 5, 7, 10], "iter": 9, "its": [2, 3, 4, 5, 7, 9, 10], "iunlim": 5, "jan": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11], "jul": [0, 5, 10], "julian": 12, "jun": [0, 5, 8, 9, 11], "jupyt": [0, 8], "just": 12, "keg": 2, "kei": [0, 3, 4, 5, 7, 10, 11], "keyboard": 0, "keypress": [3, 4, 5, 7, 10], "keyreleas": [3, 4, 5, 7, 10], "keysym": [3, 4, 5, 7, 10], "keyword": [3, 4, 5, 7, 9, 10], "know": 2, "kp_enter": 10, "kw": [3, 4, 5, 7, 10], "kwarg": [3, 4, 5, 7, 10], "l": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "label": [0, 6, 9, 10, 11], "labelwidth": 10, "lake": [0, 5, 11], "lambda": [9, 10], "larg": 12, "larger": [3, 4, 5, 7, 10, 12], "last": [3, 4, 5, 7, 9, 10, 12], "last_t": [5, 11], "lat": [0, 5, 6, 9, 11], "lat2d": 9, "latdim": 6, "later": 2, "latest": 2, "latitud": [5, 6, 9, 12], "latter": 12, "latvar": 6, "launch": 12, "layout": [0, 1, 3, 4, 5, 7, 11], "ldflag": 2, "leak": [3, 4, 5, 7, 10], "leav": [3, 4, 5, 7, 10], "left": [3, 4, 5, 6, 7, 9, 10, 12], "len": 9, "length": [3, 4, 5, 7, 9, 10], "less": 9, "let": [3, 4, 5, 7, 10], "level": [3, 4, 5, 7, 10], "lh": 6, "lib": 2, "libgeo": 2, "libproj": 2, "librari": [2, 3, 4, 5, 7, 10], "licens": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11], "lie": [3, 4, 5, 7, 10], "lift": [3, 4, 5, 7, 10, 11], "light": [3, 4, 5, 7, 10, 12], "like": [2, 6], "limit": 6, "line": [0, 1, 2, 7, 11], "link": 2, "linux": [0, 1, 11, 12], "list": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "list_intersect": [1, 9, 11], "local": [0, 2, 3, 4, 5, 7, 10], "locat": [3, 4, 5, 7, 10, 11], "lock": [3, 4, 5, 7, 10], "lon": [0, 5, 6, 9, 11, 12], "lon2d": 9, "londim": 6, "long": [3, 4, 5, 7, 10, 12], "long_nam": 0, "longer": 9, "longitud": [0, 5, 6, 9, 12], "lonvar": 6, "look": [3, 4, 5, 7, 10, 12], "loop": [3, 4, 5, 7, 10], "lower": [3, 4, 5, 7, 10, 11], "lslbl": 10, "lst1": 9, "lst2": 9, "ltcl8": 2, "ltk8": 2, "m": [0, 2, 3, 4, 5, 6, 7, 9, 10], "m1": [0, 2, 3, 4, 5, 7, 10], "m2": [3, 4, 5, 7, 10], "m3": [3, 4, 5, 7, 10], "m4": [3, 4, 5, 7, 10], "m5": [3, 4, 5, 7, 10], "macbook": 12, "maco": [0, 1, 10, 11, 12], "macu": [3, 4, 5, 6, 7, 8, 9, 10, 11], "made": 0, "mai": [0, 2, 3, 5, 6, 7, 8, 9, 11, 12], "main": [0, 3, 4, 5, 7, 8, 9, 10], "mainloop": [3, 4, 5, 7, 10, 11], "make": [0, 2, 5, 6, 11], "manag": [2, 3, 4, 5, 7, 10], "manual": 12, "map": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11], "marker": 12, "master": [3, 4, 5, 7, 9, 10], "match": [3, 4, 5, 7, 10], "matplotlib": [0, 2, 5, 9, 12], "matrix": 12, "matthia": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "max": [0, 9, 12], "maxim": 9, "maximum": [7, 9], "mc": [3, 4, 5, 6, 7, 8, 9, 10, 11], "mcuntz": [2, 12], "mean": [0, 3, 4, 5, 6, 7, 9, 10, 12], "median": [0, 9, 12], "memori": [3, 4, 5, 7, 10], "menu": [0, 3, 5, 10, 12], "menubutton": [3, 5, 10], "mesh": [3, 5, 12], "meshgrid": 9, "meta": [3, 4, 5, 7, 10], "method": [0, 3, 4, 5, 6, 7, 9, 10, 11], "might": [2, 12], "millisecond": [3, 4, 5, 7, 10], "min": [0, 9, 12], "miniconda": 2, "minim": [11, 12], "minimum": [0, 3, 4, 5, 7, 9, 10], "minmax_ylim": [7, 11], "minsiz": [3, 4, 5, 7, 10], "minu": 12, "miss": [0, 6, 8, 9], "missing_valu": [6, 8], "mit": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "mm": [3, 4, 5, 7, 10], "mod1": [3, 4, 5, 7, 10], "mod2": [3, 4, 5, 7, 10], "mod3": [3, 4, 5, 7, 10], "mod4": [3, 4, 5, 7, 10], "mod5": [3, 4, 5, 7, 10], "mode": [10, 12], "modifi": [3, 4, 5, 7, 10], "modul": [3, 4, 5, 6, 7, 8, 9, 10], "modularis": [0, 11], "month": 0, "more": [0, 2, 6, 11, 12], "most": 9, "mostli": 12, "motif": [3, 4, 5, 7, 10], "motion": [3, 4, 5, 7, 10], "mous": [3, 4, 5, 7, 10], "mousewheel": [3, 4, 5, 7, 10], "move": [0, 3, 5, 6, 7, 8, 11], "much": [3, 4, 5, 7, 10, 12], "multipl": [0, 3, 4, 5, 6, 7, 8, 9, 11, 12], "must": [2, 3, 4, 5, 7, 9, 10, 12], "my": 12, "m\u00fcller": 12, "n": [3, 4, 5, 7, 9, 10], "name": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11], "nametowidget": [3, 4, 5, 7, 10, 11], "nan": [6, 8, 9], "nanci": [3, 4, 5, 6, 7, 8, 9, 10], "nat": [6, 9], "nation": [3, 4, 5, 6, 7, 8, 9, 10], "navig": 12, "nc": [9, 12], "ncfile": 8, "ncvar": 9, "ncvcontour": [1, 6, 11], "ncview": [11, 12], "ncvmain": [1, 6, 8, 9, 11], "ncvmap": [1, 11], "ncvmethod": [0, 1, 9, 11], "ncvscatter": [1, 11], "ncvue": [0, 1, 2, 11], "ncvutil": [1, 6, 11], "ncvwidget": [1, 11], "ncvwin": 0, "ndarrai": [6, 9], "ndim": 9, "ndim1": 9, "nearest": 9, "need": [0, 2, 12], "needcleanup": [3, 4, 5, 7, 10], "netcdf": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11], "netcdf4": [2, 6, 8, 9], "netcdf_fil": 12, "netcdf_file1": 12, "netcdf_file2": 12, "new": [0, 3, 4, 5, 7, 9, 10, 11, 12], "newer": 0, "newli": [3, 4, 5, 7, 10], "newnetcdf": [3, 5, 7, 11], "newwin": 9, "next": [2, 3, 4, 5, 7, 10], "next_i": [7, 11], "next_t": [5, 11], "next_v": [5, 11], "next_z": [3, 11], "non": 6, "none": [3, 4, 5, 6, 7, 9, 10, 12], "normal": [6, 9, 12], "notat": 12, "note": [2, 12], "notebook": [0, 4], "nov": [0, 3, 4, 6, 7, 8, 9, 10, 11], "now": 0, "np": [6, 8, 9], "nrun_t": [5, 11], "nsew": [3, 4, 5, 7, 10], "nsoil": 9, "ntime": 9, "number": [3, 4, 5, 7, 10], "numer": [0, 3, 4, 5, 7, 10], "numpi": [0, 2, 6, 9], "nunlim": 5, "nw": [3, 4, 5, 7, 10], "o": [8, 11, 12], "object": 9, "occur": [3, 4, 5, 7, 10], "oct": [0, 5, 6, 11], "off": 12, "offer": 2, "offset": [3, 4, 5, 7, 10], "old": 2, "omit": [3, 4, 5, 7, 10], "onc": [2, 3, 4, 5, 7, 10], "one": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12], "ones": 9, "onli": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "onto": 6, "onward": 2, "open": [0, 2, 3, 5, 7, 8, 10, 11, 12], "openbla": 2, "oper": [0, 6, 12], "opt": 2, "opthead": 10, "optheadlabel1": 10, "optheadlabel2": 10, "optim": 2, "option": [0, 2, 3, 4, 5, 7, 8, 9, 10, 12], "option_add": [3, 4, 5, 7, 10, 11], "option_clear": [3, 4, 5, 7, 10, 11], "option_get": [3, 4, 5, 7, 10, 11], "option_readfil": [3, 4, 5, 7, 10, 11], "order": [3, 4, 5, 7, 10], "org": 10, "organis": 12, "origin": 12, "other": [0, 2, 3, 4, 5, 6, 7, 10, 12], "otherwis": [3, 4, 5, 6, 7, 9, 10], "out": 12, "output": [0, 6], "outsid": [3, 4, 5, 7, 10], "outsourc": 11, "over": [3, 4, 5, 7, 10], "overrid": [3, 4, 5, 7, 10], "overview": [3, 4, 5, 7, 10, 12], "own": [3, 4, 5, 7, 9, 10], "owner": [3, 4, 5, 7, 10], "pack": [3, 4, 5, 7, 10, 11], "pack_configur": [3, 4, 5, 7, 10, 11], "pack_forget": [3, 4, 5, 7, 10, 11], "pack_info": [3, 4, 5, 7, 10, 11], "pack_propag": [3, 4, 5, 7, 10, 11], "pack_slav": [3, 4, 5, 7, 10, 11], "packag": [0, 2], "package_data": 0, "pad": [3, 4, 5, 7, 10], "padi": [3, 4, 5, 7, 10], "padlabel": 10, "padx": [3, 4, 5, 7, 10], "page": [0, 11], "paid": [0, 2], "pair": 10, "pan": [11, 12], "panda": 10, "pane": 12, "panel": [0, 1, 3, 4, 5, 6, 7, 11], "panopli": [11, 12], "paramet": [3, 4, 5, 6, 7, 8, 9, 10], "parent": [3, 4, 5, 7, 10], "parenthes": 0, "partial": 9, "pass": [3, 4, 5, 7, 9, 10], "path": [0, 2], "pathnam": [3, 4, 5, 7, 10], "pattern": [3, 4, 5, 7, 10], "paus": 5, "pause_t": [5, 11], "pcolormesh": [0, 9], "pend": [3, 4, 7, 10], "per": [3, 4, 5, 7, 10], "percentil": 9, "period": 9, "photo": [3, 4, 5, 7, 10], "pictur": 12, "pip": [0, 2], "pixel": [3, 4, 5, 7, 10], "pkg_config_path": 2, "pkgconfig": 2, "place": [3, 4, 5, 7, 10, 11], "place_configur": [3, 4, 5, 7, 10, 11], "place_forget": [3, 4, 5, 7, 10, 11], "place_info": [3, 4, 5, 7, 10, 11], "place_slav": [3, 4, 5, 7, 10, 11], "platform": 0, "pleas": 2, "plot": [0, 3, 4, 5, 7, 8, 9, 12], "plt": 9, "png": [0, 11], "point": [3, 4, 5, 7, 9, 10, 12], "pointer": [3, 4, 5, 7, 9, 10], "pop": [2, 10], "posit": [3, 4, 5, 7, 10], "position_window": [10, 11], "possibl": [0, 2], "pour": [3, 4, 5, 6, 7, 8, 9, 10], "powershel": 2, "precis": [9, 12], "prefix": 2, "prepend": 10, "prerequisit": 2, "present": [6, 9, 12], "press": [3, 4, 5, 7, 10], "prev_i": [7, 11], "prev_t": [5, 11], "prev_v": [5, 11], "prev_z": [3, 11], "previou": [3, 4, 5, 7, 10], "primari": [3, 4, 5, 7, 10], "print": [0, 9, 11], "prioriti": [3, 4, 5, 7, 10], "privileg": 2, "pro": 12, "probabl": 2, "problem": 12, "procedur": 2, "process": [3, 4, 5, 7, 10], "processor": 2, "produc": 12, "program": 0, "proj": 2, "proj4": 0, "project": [2, 5, 12], "prompt": 2, "propag": [3, 4, 5, 7, 10, 11], "proper": 2, "properti": [3, 4, 5, 7, 10], "provid": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "prun_t": [5, 11], "pseudocolor": [3, 4, 5, 7, 10, 12], "ptp": [0, 9, 12], "public": 12, "pure": 0, "purpos": 1, "put": [0, 6], "pwd": 2, "py": [0, 10], "py_var": [3, 4, 5, 7, 10], "pydata": 10, "pyenv": 2, "pyinstal": 0, "pykdtre": 2, "pylab": 12, "pypi": [0, 2, 11], "pyplot": 0, "pyproject": [0, 11], "pyshp": 2, "pystd": 2, "python": [0, 2, 3, 4, 5, 7, 9, 10, 12], "python_configure_opt": 2, "pythonpath": 2, "qle": 9, "queri": [3, 4, 5, 7, 10], "question": 9, "quick": [1, 11], "quit": [3, 4, 5, 7, 10, 11], "r": 9, "rais": [3, 4, 5, 7, 10], "rang": [0, 3, 4, 5, 7, 9, 10], "rather": [0, 6, 10, 12], "raw": 2, "rdbend": [0, 11, 12], "rdylbu": 10, "re": [4, 10], "read": [0, 3, 4, 5, 7, 10, 11], "read_csv": 10, "readi": 12, "readthedoc": 0, "recherch": [3, 4, 5, 6, 7, 8, 9, 10], "recommend": 2, "recurs": [3, 4, 5, 7, 10], "redraw": [3, 5, 7, 11], "redraw_i": [7, 11], "redraw_y2": [7, 11], "redrawn": [3, 5, 7], "refer": 10, "region": 12, "regist": [3, 4, 5, 7, 10, 11], "rehash": 2, "reinit": [3, 5, 7, 11], "reinitialis": [3, 5, 7], "reinstal": 2, "rel": [3, 4, 5, 7, 10], "releas": [0, 2, 3, 4, 5, 7, 10], "relheight": [3, 4, 5, 7, 10], "reli": [2, 3, 4, 5, 7, 10], "reload": [3, 4, 5, 7, 10], "relwidth": [3, 4, 5, 7, 10], "relx": [3, 4, 5, 7, 10], "rememb": [3, 4, 5, 7, 10], "remov": [0, 2, 6, 9], "renam": 0, "repar": [3, 4, 5, 7, 10], "repeat": 5, "repeat_t": [5, 11], "replac": [3, 4, 5, 7, 9, 10, 11, 12], "repositori": 2, "repres": [3, 4, 5, 7, 10], "request": [3, 4, 5, 7, 10], "reset": [3, 5, 7], "resourc": [3, 4, 5, 7, 10], "resp": 9, "respect": 11, "retriev": [3, 4, 5, 7, 10], "return": [0, 3, 4, 5, 6, 7, 9, 10], "rgb": [3, 4, 5, 7, 10], "rh": 6, "right": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12], "ring": [3, 4, 5, 7, 10], "river": [0, 5, 11], "root": [3, 4, 5, 7, 8, 9, 10], "rooti": [3, 4, 5, 7, 10], "rootx": [3, 4, 5, 7, 10], "rotat": 12, "round": [3, 4, 5, 7, 10], "routin": [0, 7, 8], "row": [0, 3, 4, 5, 7, 10], "row2": [3, 4, 5, 7, 10], "rowcmap": 10, "rowconfigur": [3, 4, 5, 7, 10, 11], "rowlev": 10, "rowspan": [3, 4, 5, 7, 10], "rowwin": 9, "rowxyopt": 10, "rowzxi": 10, "run": [2, 5, 10, 12], "sai": 2, "same": [2, 3, 4, 5, 6, 7, 9, 10, 12], "scale": [5, 10], "scatter": [0, 1, 7, 9, 11], "schedul": [3, 4, 5, 7, 10, 11], "scheme": [3, 4, 5, 7, 10], "scipi": 2, "screen": [3, 4, 5, 7, 10], "script": [0, 12], "scrollbar": 10, "scroolbar": 10, "seaborn": 0, "sebastian": 12, "second": [0, 3, 4, 5, 6, 7, 10, 11, 12], "section": 0, "see": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "seem": 0, "select": [0, 3, 4, 5, 6, 7, 10, 12], "selectbackground": [3, 4, 5, 7, 10], "selectcolor": [3, 4, 5, 7, 10], "selected_cmap": [3, 5, 10, 11], "selected_i": [3, 7, 10, 11], "selected_lat": [5, 11], "selected_lon": [5, 11], "selected_proj": [5, 11], "selected_v": [5, 11], "selected_x": [3, 7, 11], "selected_y2": [7, 11], "selected_z": [3, 11], "selectforeground": [3, 4, 5, 7, 10], "selection_clear": [3, 4, 5, 7, 10, 11], "selection_get": [3, 4, 5, 7, 10, 11], "selection_handl": [3, 4, 5, 7, 10, 11], "selection_own": [3, 4, 5, 7, 10, 11], "selection_own_get": [3, 4, 5, 7, 10, 11], "selector": [0, 3, 5, 7], "self": [0, 3, 4, 5, 6, 7, 9, 10], "selvar": [1, 9, 11], "send": [3, 4, 5, 7, 10, 11], "sep": [0, 11], "separ": [0, 8, 11], "sepchar": [0, 9], "sequenc": [3, 4, 5, 7, 10], "server": [3, 4, 5, 7, 10], "set": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "set_axis_label": [1, 9, 11], "set_dim_i": [1, 6, 11], "set_dim_lat": [1, 6, 11], "set_dim_lon": [1, 6, 11], "set_dim_var": [1, 6, 11], "set_dim_x": [1, 6, 11], "set_dim_y2": [1, 6, 11], "set_dim_z": [1, 6, 11], "set_miss": [1, 6, 9, 11], "set_tstep": [5, 11], "set_unlim": [5, 11], "setup": 0, "setuptools_scm": 0, "setvar": [3, 4, 5, 7, 10, 11], "sever": [3, 4, 5, 6, 7, 10, 12], "sh": 2, "shall": [3, 4, 5, 7, 9, 10], "shape": [2, 5, 9], "shift": [3, 4, 5, 7, 10], "shortli": [3, 4, 5, 7, 10], "should": [2, 3, 4, 5, 7, 10], "showcont": [10, 11], "showtip": [10, 11], "sibl": [3, 4, 5, 7, 10], "side": [3, 4, 5, 6, 7, 9, 10], "sierra": 2, "silicon": [0, 2], "similar": [0, 6], "simpl": [0, 10], "simpli": [2, 9], "singl": [3, 4, 5, 7, 9, 10], "six": 2, "size": [0, 3, 4, 5, 7, 8, 9, 10, 11, 12], "slave": [3, 4, 5, 7, 10, 11], "slice": [0, 6, 9, 11], "slider": [3, 4, 5, 7, 10, 12], "slightli": [11, 12], "slower": 12, "small": 9, "so": [0, 10], "softwar": 2, "soil": 12, "solid": 12, "some": 12, "someth": [3, 5, 7], "sometim": 12, "sourc": [1, 3, 4, 5, 6, 7, 8, 9, 10], "southern": 0, "space": [0, 3, 4, 5, 7, 10, 11], "span": [3, 4, 5, 7, 10], "spec": [3, 4, 5, 7, 10], "specif": 12, "specifi": [3, 4, 5, 7, 9, 10], "sphinx_book_them": 0, "spin": 10, "spinbox": [0, 3, 5, 6, 7, 9, 10, 11, 12], "spinbox_valu": [1, 9, 11], "spinned_i": [3, 7, 11], "spinned_lat": [5, 11], "spinned_lon": [5, 11], "spinned_v": [5, 11], "spinned_x": [3, 7, 11], "spinned_y2": [7, 11], "spinned_z": [3, 11], "squeez": [0, 6, 9], "src": [0, 3, 5, 7, 8, 11], "stabl": 0, "stack": [3, 4, 5, 7, 10], "stackoverflow": 9, "standalon": [0, 2, 8, 11], "standard": [8, 9, 12], "standard_nam": 0, "start": [3, 4, 5, 6, 7, 8, 10], "state": [3, 4, 5, 7, 10, 11], "statement": 0, "statespec": [3, 4, 5, 7, 10], "staticcolor": [3, 4, 5, 7, 10], "staticgrai": [3, 4, 5, 7, 10], "statu": [3, 4, 5, 7, 10], "std": [0, 6, 9, 12], "step": 5, "stick": [3, 4, 5, 7, 10], "sticki": [3, 4, 5, 7, 10], "str": [5, 8, 9, 10], "string": [0, 3, 4, 5, 6, 7, 9, 10], "stringvar": [3, 4, 5, 7, 10], "structur": [0, 12], "style": [0, 10, 12], "sub": 10, "submit": [0, 9], "subpackag": 1, "subplot": 9, "subset": [3, 4, 5, 7, 10], "subst": [3, 4, 5, 7, 10], "sudo": 2, "sum": [0, 9, 12], "sun": 0, "suppli": 9, "support": [0, 12], "suppos": 12, "suppress": 2, "sure": 2, "switch": [0, 12], "symbol": 12, "system": [0, 2], "t": 2, "taglist": [3, 4, 5, 7, 10], "take": [0, 3, 4, 5, 6, 7, 10, 12], "takefocu": [3, 4, 5, 7, 10], "target": [3, 4, 5, 7, 10, 11, 12], "taskbar": 8, "tcl": [0, 2, 3, 4, 5, 7, 10], "tcltk": 2, "templat": 12, "test": [3, 4, 5, 7, 9, 10, 11, 12], "text": [3, 5, 9, 10], "textvari": 10, "than": [0, 6, 9, 10, 11, 12], "thei": [3, 4, 5, 7, 10], "them": 11, "theme": [0, 2, 3, 5, 7, 8, 11, 12], "theme_us": 0, "thenc": 2, "thi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "third": [3, 4, 5, 7, 10], "though": [2, 12], "three": [2, 7, 12], "through": [3, 4, 5, 7, 10], "tick": 12, "time": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12], "tip": 10, "titlebar": 8, "tk": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "tk_bisqu": [3, 4, 5, 7, 10, 11], "tk_focusfollowsmous": [3, 4, 5, 7, 10, 11], "tk_focusnext": [3, 4, 5, 7, 10, 11], "tk_focusprev": [3, 4, 5, 7, 10, 11], "tk_setpalett": [3, 4, 5, 7, 10, 11], "tk_silence_deprec": 2, "tk_strictmotif": [3, 4, 5, 7, 10, 11], "tkagg": 12, "tkfont": 10, "tkinter": [3, 4, 5, 7, 10], "tkrais": [3, 4, 5, 7, 10, 11], "tlabel": 10, "tname": 6, "toml": [0, 11], "tool": 12, "toolbar": 12, "tooltip": [0, 1, 6, 10, 11], "top": [3, 4, 5, 7, 10, 12], "toplevel": [0, 3, 4, 5, 7, 8, 10], "track": 10, "transpos": 0, "tree": 10, "treeview": [1, 10, 11], "tri": [3, 4, 5, 7, 10], "trigger": [3, 4, 5, 7, 10], "tripl": [3, 4, 5, 7, 10], "troughcolor": [3, 4, 5, 7, 10], "true": [3, 4, 5, 7, 9, 10, 12], "truecolor": [3, 4, 5, 7, 10], "try": [3, 4, 5, 7, 10], "tstep": 5, "tstep_t": [5, 11], "tt": 10, "ttk": [0, 2, 6, 9, 10], "tupl": [3, 4, 5, 7, 9, 10], "tvar": 6, "twinx": 9, "two": [6, 7, 9], "type": [0, 3, 4, 5, 6, 7, 9, 10, 12], "ubuntu": 2, "unam": 2, "unbind": [3, 4, 5, 7, 10, 11], "unbind_al": [3, 4, 5, 7, 10, 11], "unbind_class": [3, 4, 5, 7, 10, 11], "unbound": [3, 4, 5, 7, 10], "uncheck": [3, 5, 7], "uncom": 2, "under": [3, 4, 5, 7, 10, 12], "underli": 12, "underlin": 10, "unidentifi": 2, "uninstal": 2, "unit": [0, 9, 11], "univers": 2, "unlik": [11, 12], "unlimit": [0, 4, 5, 6, 11], "unmap": [3, 4, 5, 7, 10], "unschedul": [10, 11], "untick": 12, "until": [3, 4, 5, 7, 10], "up": [2, 3, 4, 5, 7, 8, 10], "updat": [0, 2, 3, 4, 5, 7, 10, 11], "update_idletask": [3, 4, 5, 7, 10, 11], "upgrad": 2, "upper": [3, 4, 5, 7, 10], "url": 10, "us": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12], "usag": 1, "user": [2, 3, 4, 5, 7, 10], "usr": 2, "utf8_str": [3, 4, 5, 7, 10], "util": [0, 9, 11], "v": 5, "v0": [0, 9], "v0_8": 0, "v1": [0, 11], "v2": [0, 11], "v3": [0, 11], "v4": [0, 11], "valid": [0, 3, 4, 5, 7, 10], "vallei": 0, "valu": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11], "var": [0, 5, 6, 9, 12], "varabl": 6, "vardim": 9, "vardim2var": [1, 5, 9, 11], "variabl": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12], "varianc": [9, 12], "varieti": 12, "variou": [3, 5, 7], "veget": 0, "vendor": [3, 4, 5, 7, 10], "vendorvers": [3, 4, 5, 7, 10], "veri": [2, 3, 4, 5, 7, 10, 12], "version": [0, 2, 3, 4, 5, 7, 10, 11], "vertic": 10, "via": [0, 2, 3, 5, 7, 8], "view": [1, 11], "virtual": [2, 3, 4, 5, 7, 10], "virtualenv": 2, "visibl": [3, 4, 5, 7, 10], "visual": [3, 4, 5, 7, 10, 11], "vmax": 5, "vmin": 5, "vy": 9, "w_soil": 9, "wa": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12], "wai": 2, "wait": [3, 4, 5, 7, 10], "wait_vari": [3, 4, 5, 7, 10, 11], "wait_vis": [3, 4, 5, 7, 10, 11], "wait_window": [3, 4, 5, 7, 10, 11], "waitvar": [3, 4, 5, 7, 10, 11], "want": [2, 12], "warn": 2, "water": 12, "we": [2, 6], "web": 10, "weight": [3, 4, 5, 7, 10], "well": [2, 3, 5, 6, 7, 12], "were": [0, 3, 4, 5, 6, 7, 10, 12], "what": [3, 5, 7], "wheel": [0, 11], "when": [0, 3, 4, 5, 7, 10, 12], "whenev": [3, 4, 5, 7, 10], "where": [3, 4, 5, 7, 9, 10, 12], "whether": [3, 4, 5, 7, 10], "which": [0, 3, 4, 5, 6, 7, 9, 10, 12], "while": [2, 3, 4, 5, 6, 7, 8, 9, 10], "widget": [3, 4, 5, 6, 7, 8, 9, 10], "width": [3, 4, 5, 7, 9, 10], "widthxheight": [3, 4, 5, 7, 10], "window": [0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12], "winfo_atom": [3, 4, 5, 7, 10, 11], "winfo_atomnam": [3, 4, 5, 7, 10, 11], "winfo_cel": [3, 4, 5, 7, 10, 11], "winfo_children": [3, 4, 5, 7, 10, 11], "winfo_class": [3, 4, 5, 7, 10, 11], "winfo_colormapful": [3, 4, 5, 7, 10, 11], "winfo_contain": [3, 4, 5, 7, 10, 11], "winfo_depth": [3, 4, 5, 7, 10, 11], "winfo_exist": [3, 4, 5, 7, 10, 11], "winfo_fpixel": [3, 4, 5, 7, 10, 11], "winfo_geometri": [3, 4, 5, 7, 10, 11], "winfo_height": [3, 4, 5, 7, 10, 11], "winfo_i": [3, 4, 5, 7, 10, 11], "winfo_id": [3, 4, 5, 7, 10, 11], "winfo_interp": [3, 4, 5, 7, 10, 11], "winfo_ismap": [3, 4, 5, 7, 10, 11], "winfo_manag": [3, 4, 5, 7, 10, 11], "winfo_nam": [3, 4, 5, 7, 10, 11], "winfo_par": [3, 4, 5, 7, 10, 11], "winfo_pathnam": [3, 4, 5, 7, 10, 11], "winfo_pixel": [3, 4, 5, 7, 10, 11], "winfo_pointeri": [3, 4, 5, 7, 10, 11], "winfo_pointerx": [3, 4, 5, 7, 10, 11], "winfo_pointerxi": [3, 4, 5, 7, 10, 11], "winfo_reqheight": [3, 4, 5, 7, 10, 11], "winfo_reqwidth": [3, 4, 5, 7, 10, 11], "winfo_rgb": [3, 4, 5, 7, 10, 11], "winfo_rooti": [3, 4, 5, 7, 10, 11], "winfo_rootx": [3, 4, 5, 7, 10, 11], "winfo_screen": [3, 4, 5, 7, 10, 11], "winfo_screencel": [3, 4, 5, 7, 10, 11], "winfo_screendepth": [3, 4, 5, 7, 10, 11], "winfo_screenheight": [3, 4, 5, 7, 10, 11], "winfo_screenmmheight": [3, 4, 5, 7, 10, 11], "winfo_screenmmwidth": [3, 4, 5, 7, 10, 11], "winfo_screenvisu": [3, 4, 5, 7, 10, 11], "winfo_screenwidth": [3, 4, 5, 7, 10, 11], "winfo_serv": [3, 4, 5, 7, 10, 11], "winfo_toplevel": [3, 4, 5, 7, 10, 11], "winfo_view": [3, 4, 5, 7, 10, 11], "winfo_visu": [3, 4, 5, 7, 10, 11], "winfo_visualid": [3, 4, 5, 7, 10, 11], "winfo_visualsavail": [3, 4, 5, 7, 10, 11], "winfo_vrootheight": [3, 4, 5, 7, 10, 11], "winfo_vrooti": [3, 4, 5, 7, 10, 11], "winfo_vrootwidth": [3, 4, 5, 7, 10, 11], "winfo_vrootx": [3, 4, 5, 7, 10, 11], "winfo_width": [3, 4, 5, 7, 10, 11], "winfo_x": [3, 4, 5, 7, 10, 11], "within": [0, 2, 3, 4, 5, 7, 10, 11, 12], "without": [0, 3, 4, 5, 7, 10, 11, 12], "work": [0, 2, 3, 4, 5, 7, 10, 11, 12], "would": [3, 4, 5, 6, 7, 10], "wrapper": 2, "write": [3, 5, 7], "writeabl": 10, "written": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "wrong": 0, "x": [0, 3, 4, 5, 6, 7, 9, 10, 11, 12], "x11": [3, 4, 5, 7, 10], "xd0": 9, "xdtype": 9, "xlbl": 10, "xmajorrminor": [3, 4, 5, 7, 10], "xscroll": 10, "xx": [6, 9], "xz": 2, "y": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11], "y2": [0, 6, 9], "y2dtype": 9, "yd": 9, "ydtype": 9, "year": 0, "ylab": 9, "ylim": 7, "ylim2": 7, "you": [2, 3, 4, 5, 7, 10, 12], "your": [2, 12], "yscroll": 10, "yy": 9, "yy2": 9, "z": [0, 2, 3, 6, 9], "zip_dim_name_length": [1, 9, 11], "zmax": [0, 3], "zmin": [0, 3], "zoom": [7, 11, 12], "zsh": 2, "zz": 9}, "titles": ["Changelog", "Contents", "Installation", "ncvue.ncvcontour", "ncvue.ncvmain", "ncvue.ncvmap", "ncvue.ncvmethods", "ncvue.ncvscatter", "ncvue.ncvue", "ncvue.ncvutils", "ncvue.ncvwidgets", "API", "ncvue - A GUI to view netCDF files"], "titleterms": {"A": 12, "about": 12, "api": 11, "binari": 2, "build": 2, "changelog": 0, "content": 1, "contour": 12, "depend": 2, "distribut": 2, "file": 12, "from": 2, "gener": 12, "gui": 12, "guid": 12, "instal": 2, "layout": 12, "licens": 12, "line": 12, "linux": 2, "maco": 2, "map": 12, "ncvcontour": 3, "ncvmain": 4, "ncvmap": 5, "ncvmethod": 6, "ncvscatter": 7, "ncvue": [3, 4, 5, 6, 7, 8, 9, 10, 12], "ncvutil": 9, "ncvwidget": 10, "netcdf": 12, "panel": 12, "purpos": 11, "quick": 12, "scatter": 12, "sourc": 2, "subpackag": 11, "usag": 12, "view": 12, "window": 2}}) \ No newline at end of file +Search.setIndex({"alltitles": {"API": [[11, "module-ncvue"]], "About ncvue": [[12, "about-ncvue"]], "Binary distributions": [[2, "binary-distributions"]], "Building from source": [[2, "building-from-source"]], "Changelog": [[0, "changelog"]], "Contents": [[1, "contents"]], "Contour panel": [[12, "contour-panel"]], "Dependencies": [[2, "dependencies"]], "General layout": [[12, "general-layout"]], "Installation": [[2, "installation"]], "License": [[12, "license"]], "Linux": [[2, "linux"]], "Map panel": [[12, "map-panel"]], "Purpose": [[11, "purpose"]], "Quick usage guide": [[12, "quick-usage-guide"]], "Scatter/Line panel": [[12, "scatter-line-panel"]], "Subpackages": [[11, "subpackages"]], "Windows": [[2, "windows"]], "macOS": [[2, "macos"]], "ncvue - A GUI to view netCDF files": [[12, "ncvue-a-gui-to-view-netcdf-files"]], "ncvue.ncvcontour": [[3, "module-ncvue.ncvcontour"]], "ncvue.ncvmain": [[4, "module-ncvue.ncvmain"]], "ncvue.ncvmap": [[5, "module-ncvue.ncvmap"]], "ncvue.ncvmethods": [[6, "module-ncvue.ncvmethods"]], "ncvue.ncvscatter": [[7, "module-ncvue.ncvscatter"]], "ncvue.ncvue": [[8, "module-ncvue.ncvue"]], "ncvue.ncvutils": [[9, "module-ncvue.ncvutils"]], "ncvue.ncvwidgets": [[10, "module-ncvue.ncvwidgets"]]}, "docnames": ["changelog", "index", "install", "ncvcontour", "ncvmain", "ncvmap", "ncvmethods", "ncvscatter", "ncvue", "ncvutils", "ncvwidgets", "package", "readme"], "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, "sphinx.ext.viewcode": 1}, "filenames": ["changelog.rst", "index.rst", "install.rst", "ncvcontour.rst", "ncvmain.rst", "ncvmap.rst", "ncvmethods.rst", "ncvscatter.rst", "ncvue.rst", "ncvutils.rst", "ncvwidgets.rst", "package.rst", "readme.rst"], "indexentries": {"add_checkbutton() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_checkbutton", false]], "add_combobox() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_combobox", false]], "add_cyclic() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.add_cyclic", false]], "add_entry() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_entry", false]], "add_imagemenu() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_imagemenu", false]], "add_menu() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_menu", false]], "add_scale() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_scale", false]], "add_spinbox() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_spinbox", false]], "add_tooltip() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.add_tooltip", false]], "after() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.after", false]], "after() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.after", false]], "after() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.after", false]], "after() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.after", false]], "after() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.after", false]], "after_cancel() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.after_cancel", false]], "after_cancel() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.after_cancel", false]], "after_cancel() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.after_cancel", false]], "after_cancel() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.after_cancel", false]], "after_cancel() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.after_cancel", false]], "after_idle() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.after_idle", false]], "after_idle() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.after_idle", false]], "after_idle() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.after_idle", false]], "after_idle() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.after_idle", false]], "after_idle() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.after_idle", false]], "analyse_netcdf() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.analyse_netcdf", false]], "anchor() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.anchor", false]], "anchor() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.anchor", false]], "anchor() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.anchor", false]], "anchor() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.anchor", false]], "anchor() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.anchor", false]], "bbox() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bbox", false]], "bbox() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bbox", false]], "bbox() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bbox", false]], "bbox() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bbox", false]], "bbox() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bbox", false]], "bell() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bell", false]], "bell() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bell", false]], "bell() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bell", false]], "bell() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bell", false]], "bell() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bell", false]], "bind() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bind", false]], "bind() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bind", false]], "bind() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bind", false]], "bind() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bind", false]], "bind() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bind", false]], "bind_all() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bind_all", false]], "bind_all() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bind_all", false]], "bind_all() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bind_all", false]], "bind_all() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bind_all", false]], "bind_all() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bind_all", false]], "bind_class() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bind_class", false]], "bind_class() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bind_class", false]], "bind_class() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bind_class", false]], "bind_class() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bind_class", false]], "bind_class() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bind_class", false]], "bindtags() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.bindtags", false]], "bindtags() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.bindtags", false]], "bindtags() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.bindtags", false]], "bindtags() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.bindtags", false]], "bindtags() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.bindtags", false]], "callurl() (in module ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.callurl", false]], "cget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.cget", false]], "cget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.cget", false]], "cget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.cget", false]], "cget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.cget", false]], "cget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.cget", false]], "check_new_netcdf() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.check_new_netcdf", false]], "checked() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.checked", false]], "checked() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.checked", false]], "checked_all() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.checked_all", false]], "checked_x() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.checked_x", false]], "checked_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.checked_y", false]], "checked_y2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.checked_y2", false]], "checked_yy2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.checked_yy2", false]], "clipboard_append() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.clipboard_append", false]], "clipboard_append() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.clipboard_append", false]], "clipboard_append() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.clipboard_append", false]], "clipboard_append() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.clipboard_append", false]], "clipboard_append() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.clipboard_append", false]], "clipboard_clear() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.clipboard_clear", false]], "clipboard_clear() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.clipboard_clear", false]], "clipboard_clear() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.clipboard_clear", false]], "clipboard_clear() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.clipboard_clear", false]], "clipboard_clear() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.clipboard_clear", false]], "clipboard_get() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.clipboard_get", false]], "clipboard_get() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.clipboard_get", false]], "clipboard_get() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.clipboard_get", false]], "clipboard_get() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.clipboard_get", false]], "clipboard_get() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.clipboard_get", false]], "clone_ncvmain() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.clone_ncvmain", false]], "columnconfigure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.columnconfigure", false]], "columnconfigure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.columnconfigure", false]], "columnconfigure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.columnconfigure", false]], "columnconfigure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.columnconfigure", false]], "columnconfigure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.columnconfigure", false]], "config() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.config", false]], "config() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.config", false]], "config() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.config", false]], "config() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.config", false]], "config() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.config", false]], "configure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.configure", false]], "configure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.configure", false]], "configure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.configure", false]], "configure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.configure", false]], "configure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.configure", false]], "delay_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.delay_t", false]], "deletecommand() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.deletecommand", false]], "deletecommand() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.deletecommand", false]], "deletecommand() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.deletecommand", false]], "deletecommand() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.deletecommand", false]], "deletecommand() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.deletecommand", false]], "destroy() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.destroy", false]], "destroy() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.destroy", false]], "destroy() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.destroy", false]], "destroy() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.destroy", false]], "destroy() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.destroy", false]], "dimmethods (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.DIMMETHODS", false]], "entered_clon() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.entered_clon", false]], "entered_v() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.entered_v", false]], "entered_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.entered_y", false]], "entered_y2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.entered_y2", false]], "entered_z() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.entered_z", false]], "event_add() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.event_add", false]], "event_add() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.event_add", false]], "event_add() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.event_add", false]], "event_add() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.event_add", false]], "event_add() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.event_add", false]], "event_delete() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.event_delete", false]], "event_delete() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.event_delete", false]], "event_delete() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.event_delete", false]], "event_delete() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.event_delete", false]], "event_delete() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.event_delete", false]], "event_generate() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.event_generate", false]], "event_generate() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.event_generate", false]], "event_generate() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.event_generate", false]], "event_generate() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.event_generate", false]], "event_generate() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.event_generate", false]], "event_info() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.event_info", false]], "event_info() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.event_info", false]], "event_info() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.event_info", false]], "event_info() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.event_info", false]], "event_info() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.event_info", false]], "first_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.first_t", false]], "focus() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus", false]], "focus() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus", false]], "focus() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus", false]], "focus() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus", false]], "focus() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus", false]], "focus_displayof() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus_displayof", false]], "focus_displayof() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus_displayof", false]], "focus_displayof() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus_displayof", false]], "focus_displayof() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus_displayof", false]], "focus_displayof() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus_displayof", false]], "focus_force() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus_force", false]], "focus_force() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus_force", false]], "focus_force() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus_force", false]], "focus_force() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus_force", false]], "focus_force() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus_force", false]], "focus_get() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus_get", false]], "focus_get() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus_get", false]], "focus_get() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus_get", false]], "focus_get() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus_get", false]], "focus_get() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus_get", false]], "focus_lastfor() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus_lastfor", false]], "focus_lastfor() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus_lastfor", false]], "focus_lastfor() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus_lastfor", false]], "focus_lastfor() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus_lastfor", false]], "focus_lastfor() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus_lastfor", false]], "focus_set() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.focus_set", false]], "focus_set() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.focus_set", false]], "focus_set() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.focus_set", false]], "focus_set() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.focus_set", false]], "focus_set() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.focus_set", false]], "forget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.forget", false]], "forget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.forget", false]], "forget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.forget", false]], "forget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.forget", false]], "forget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.forget", false]], "format_coord_contour() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.format_coord_contour", false]], "format_coord_map() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.format_coord_map", false]], "format_coord_scatter() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.format_coord_scatter", false]], "get_miss() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.get_miss", false]], "get_position() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.get_position", false]], "get_slice() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.get_slice", false]], "get_slice_miss() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.get_slice_miss", false]], "get_vminmax() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.get_vminmax", false]], "getboolean() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.getboolean", false]], "getboolean() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.getboolean", false]], "getboolean() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.getboolean", false]], "getboolean() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.getboolean", false]], "getboolean() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.getboolean", false]], "getdouble() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.getdouble", false]], "getdouble() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.getdouble", false]], "getdouble() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.getdouble", false]], "getdouble() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.getdouble", false]], "getdouble() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.getdouble", false]], "getint() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.getint", false]], "getint() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.getint", false]], "getint() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.getint", false]], "getint() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.getint", false]], "getint() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.getint", false]], "getvar() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.getvar", false]], "getvar() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.getvar", false]], "getvar() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.getvar", false]], "getvar() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.getvar", false]], "getvar() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.getvar", false]], "grab_current() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grab_current", false]], "grab_current() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grab_current", false]], "grab_current() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grab_current", false]], "grab_current() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grab_current", false]], "grab_current() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grab_current", false]], "grab_release() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grab_release", false]], "grab_release() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grab_release", false]], "grab_release() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grab_release", false]], "grab_release() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grab_release", false]], "grab_release() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grab_release", false]], "grab_set() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grab_set", false]], "grab_set() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grab_set", false]], "grab_set() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grab_set", false]], "grab_set() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grab_set", false]], "grab_set() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grab_set", false]], "grab_set_global() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grab_set_global", false]], "grab_set_global() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grab_set_global", false]], "grab_set_global() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grab_set_global", false]], "grab_set_global() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grab_set_global", false]], "grab_set_global() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grab_set_global", false]], "grab_status() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grab_status", false]], "grab_status() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grab_status", false]], "grab_status() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grab_status", false]], "grab_status() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grab_status", false]], "grab_status() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grab_status", false]], "grid() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid", false]], "grid() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid", false]], "grid() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid", false]], "grid() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid", false]], "grid() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid", false]], "grid_anchor() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_anchor", false]], "grid_anchor() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_anchor", false]], "grid_anchor() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_anchor", false]], "grid_anchor() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_anchor", false]], "grid_anchor() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_anchor", false]], "grid_bbox() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_bbox", false]], "grid_bbox() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_bbox", false]], "grid_bbox() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_bbox", false]], "grid_bbox() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_bbox", false]], "grid_bbox() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_bbox", false]], "grid_columnconfigure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_columnconfigure", false]], "grid_columnconfigure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_columnconfigure", false]], "grid_columnconfigure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_columnconfigure", false]], "grid_columnconfigure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_columnconfigure", false]], "grid_columnconfigure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_columnconfigure", false]], "grid_configure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_configure", false]], "grid_configure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_configure", false]], "grid_configure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_configure", false]], "grid_configure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_configure", false]], "grid_configure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_configure", false]], "grid_forget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_forget", false]], "grid_forget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_forget", false]], "grid_forget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_forget", false]], "grid_forget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_forget", false]], "grid_forget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_forget", false]], "grid_info() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_info", false]], "grid_info() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_info", false]], "grid_info() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_info", false]], "grid_info() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_info", false]], "grid_info() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_info", false]], "grid_location() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_location", false]], "grid_location() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_location", false]], "grid_location() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_location", false]], "grid_location() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_location", false]], "grid_location() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_location", false]], "grid_propagate() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_propagate", false]], "grid_propagate() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_propagate", false]], "grid_propagate() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_propagate", false]], "grid_propagate() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_propagate", false]], "grid_propagate() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_propagate", false]], "grid_remove() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_remove", false]], "grid_remove() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_remove", false]], "grid_remove() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_remove", false]], "grid_remove() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_remove", false]], "grid_remove() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_remove", false]], "grid_rowconfigure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_rowconfigure", false]], "grid_rowconfigure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_rowconfigure", false]], "grid_rowconfigure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_rowconfigure", false]], "grid_rowconfigure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_rowconfigure", false]], "grid_rowconfigure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_rowconfigure", false]], "grid_size() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_size", false]], "grid_size() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_size", false]], "grid_size() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_size", false]], "grid_size() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_size", false]], "grid_size() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_size", false]], "grid_slaves() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.grid_slaves", false]], "grid_slaves() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.grid_slaves", false]], "grid_slaves() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.grid_slaves", false]], "grid_slaves() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.grid_slaves", false]], "grid_slaves() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.grid_slaves", false]], "has_cyclic() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.has_cyclic", false]], "hidetip() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.hidetip", false]], "identify() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.identify", false]], "identify() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.identify", false]], "identify() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.identify", false]], "identify() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.identify", false]], "identify() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.identify", false]], "image_names() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.image_names", false]], "image_names() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.image_names", false]], "image_names() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.image_names", false]], "image_names() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.image_names", false]], "image_names() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.image_names", false]], "image_types() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.image_types", false]], "image_types() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.image_types", false]], "image_types() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.image_types", false]], "image_types() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.image_types", false]], "image_types() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.image_types", false]], "info() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.info", false]], "info() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.info", false]], "info() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.info", false]], "info() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.info", false]], "info() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.info", false]], "info_patchlevel() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.info_patchlevel", false]], "info_patchlevel() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.info_patchlevel", false]], "info_patchlevel() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.info_patchlevel", false]], "info_patchlevel() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.info_patchlevel", false]], "info_patchlevel() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.info_patchlevel", false]], "instate() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.instate", false]], "instate() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.instate", false]], "instate() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.instate", false]], "instate() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.instate", false]], "instate() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.instate", false]], "keys() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.keys", false]], "keys() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.keys", false]], "keys() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.keys", false]], "keys() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.keys", false]], "keys() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.keys", false]], "last_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.last_t", false]], "lift() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.lift", false]], "lift() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.lift", false]], "lift() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.lift", false]], "lift() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.lift", false]], "lift() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.lift", false]], "list_intersection() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.list_intersection", false]], "location() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.location", false]], "location() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.location", false]], "location() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.location", false]], "location() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.location", false]], "location() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.location", false]], "lower() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.lower", false]], "lower() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.lower", false]], "lower() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.lower", false]], "lower() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.lower", false]], "lower() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.lower", false]], "mainloop() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.mainloop", false]], "mainloop() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.mainloop", false]], "mainloop() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.mainloop", false]], "mainloop() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.mainloop", false]], "mainloop() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.mainloop", false]], "minmax_ylim() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.minmax_ylim", false]], "module": [[3, "module-ncvue.ncvcontour", false], [4, "module-ncvue.ncvmain", false], [5, "module-ncvue.ncvmap", false], [6, "module-ncvue.ncvmethods", false], [7, "module-ncvue.ncvscatter", false], [8, "module-ncvue.ncvue", false], [9, "module-ncvue.ncvutils", false], [10, "module-ncvue.ncvwidgets", false], [11, "module-ncvue", false]], "nametowidget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.nametowidget", false]], "nametowidget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.nametowidget", false]], "nametowidget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.nametowidget", false]], "nametowidget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.nametowidget", false]], "nametowidget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.nametowidget", false]], "ncvcontour (class in ncvue.ncvcontour)": [[3, "ncvue.ncvcontour.ncvContour", false]], "ncvmain (class in ncvue.ncvmain)": [[4, "ncvue.ncvmain.ncvMain", false]], "ncvmap (class in ncvue.ncvmap)": [[5, "ncvue.ncvmap.ncvMap", false]], "ncvscatter (class in ncvue.ncvscatter)": [[7, "ncvue.ncvscatter.ncvScatter", false]], "ncvue": [[11, "module-ncvue", false]], "ncvue() (in module ncvue.ncvue)": [[8, "ncvue.ncvue.ncvue", false]], "ncvue.ncvcontour": [[3, "module-ncvue.ncvcontour", false]], "ncvue.ncvmain": [[4, "module-ncvue.ncvmain", false]], "ncvue.ncvmap": [[5, "module-ncvue.ncvmap", false]], "ncvue.ncvmethods": [[6, "module-ncvue.ncvmethods", false]], "ncvue.ncvscatter": [[7, "module-ncvue.ncvscatter", false]], "ncvue.ncvue": [[8, "module-ncvue.ncvue", false]], "ncvue.ncvutils": [[9, "module-ncvue.ncvutils", false]], "ncvue.ncvwidgets": [[10, "module-ncvue.ncvwidgets", false]], "newnetcdf() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.newnetcdf", false]], "newnetcdf() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.newnetcdf", false]], "newnetcdf() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.newnetcdf", false]], "next_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.next_t", false]], "next_v() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.next_v", false]], "next_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.next_y", false]], "next_z() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.next_z", false]], "nrun_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.nrun_t", false]], "option_add() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.option_add", false]], "option_add() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.option_add", false]], "option_add() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.option_add", false]], "option_add() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.option_add", false]], "option_add() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.option_add", false]], "option_clear() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.option_clear", false]], "option_clear() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.option_clear", false]], "option_clear() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.option_clear", false]], "option_clear() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.option_clear", false]], "option_clear() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.option_clear", false]], "option_get() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.option_get", false]], "option_get() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.option_get", false]], "option_get() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.option_get", false]], "option_get() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.option_get", false]], "option_get() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.option_get", false]], "option_readfile() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.option_readfile", false]], "option_readfile() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.option_readfile", false]], "option_readfile() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.option_readfile", false]], "option_readfile() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.option_readfile", false]], "option_readfile() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.option_readfile", false]], "pack() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack", false]], "pack() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack", false]], "pack() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack", false]], "pack() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack", false]], "pack() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack", false]], "pack_configure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack_configure", false]], "pack_configure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack_configure", false]], "pack_configure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack_configure", false]], "pack_configure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack_configure", false]], "pack_configure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack_configure", false]], "pack_forget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack_forget", false]], "pack_forget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack_forget", false]], "pack_forget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack_forget", false]], "pack_forget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack_forget", false]], "pack_forget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack_forget", false]], "pack_info() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack_info", false]], "pack_info() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack_info", false]], "pack_info() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack_info", false]], "pack_info() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack_info", false]], "pack_info() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack_info", false]], "pack_propagate() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack_propagate", false]], "pack_propagate() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack_propagate", false]], "pack_propagate() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack_propagate", false]], "pack_propagate() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack_propagate", false]], "pack_propagate() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack_propagate", false]], "pack_slaves() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.pack_slaves", false]], "pack_slaves() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.pack_slaves", false]], "pack_slaves() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pack_slaves", false]], "pack_slaves() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.pack_slaves", false]], "pack_slaves() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.pack_slaves", false]], "pause_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.pause_t", false]], "place() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.place", false]], "place() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.place", false]], "place() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.place", false]], "place() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.place", false]], "place() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.place", false]], "place_configure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.place_configure", false]], "place_configure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.place_configure", false]], "place_configure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.place_configure", false]], "place_configure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.place_configure", false]], "place_configure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.place_configure", false]], "place_forget() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.place_forget", false]], "place_forget() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.place_forget", false]], "place_forget() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.place_forget", false]], "place_forget() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.place_forget", false]], "place_forget() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.place_forget", false]], "place_info() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.place_info", false]], "place_info() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.place_info", false]], "place_info() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.place_info", false]], "place_info() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.place_info", false]], "place_info() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.place_info", false]], "place_slaves() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.place_slaves", false]], "place_slaves() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.place_slaves", false]], "place_slaves() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.place_slaves", false]], "place_slaves() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.place_slaves", false]], "place_slaves() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.place_slaves", false]], "position_window() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.position_window", false]], "prev_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.prev_t", false]], "prev_v() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.prev_v", false]], "prev_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.prev_y", false]], "prev_z() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.prev_z", false]], "propagate() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.propagate", false]], "propagate() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.propagate", false]], "propagate() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.propagate", false]], "propagate() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.propagate", false]], "propagate() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.propagate", false]], "prun_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.prun_t", false]], "quit() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.quit", false]], "quit() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.quit", false]], "quit() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.quit", false]], "quit() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.quit", false]], "quit() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.quit", false]], "redraw() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.redraw", false]], "redraw() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.redraw", false]], "redraw() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.redraw", false]], "redraw_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.redraw_y", false]], "redraw_y2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.redraw_y2", false]], "register() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.register", false]], "register() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.register", false]], "register() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.register", false]], "register() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.register", false]], "register() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.register", false]], "reinit() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.reinit", false]], "reinit() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.reinit", false]], "reinit() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.reinit", false]], "repeat_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.repeat_t", false]], "rowconfigure() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.rowconfigure", false]], "rowconfigure() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.rowconfigure", false]], "rowconfigure() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.rowconfigure", false]], "rowconfigure() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.rowconfigure", false]], "rowconfigure() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.rowconfigure", false]], "schedule() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.schedule", false]], "selected_cmap() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selected_cmap", false]], "selected_cmap() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selected_cmap", false]], "selected_lat() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selected_lat", false]], "selected_lon() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selected_lon", false]], "selected_proj() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selected_proj", false]], "selected_v() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selected_v", false]], "selected_x() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selected_x", false]], "selected_x() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selected_x", false]], "selected_y() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selected_y", false]], "selected_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selected_y", false]], "selected_y2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selected_y2", false]], "selected_z() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selected_z", false]], "selection_clear() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selection_clear", false]], "selection_clear() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.selection_clear", false]], "selection_clear() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selection_clear", false]], "selection_clear() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selection_clear", false]], "selection_clear() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.selection_clear", false]], "selection_get() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selection_get", false]], "selection_get() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.selection_get", false]], "selection_get() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selection_get", false]], "selection_get() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selection_get", false]], "selection_get() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.selection_get", false]], "selection_handle() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selection_handle", false]], "selection_handle() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.selection_handle", false]], "selection_handle() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selection_handle", false]], "selection_handle() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selection_handle", false]], "selection_handle() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.selection_handle", false]], "selection_own() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selection_own", false]], "selection_own() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.selection_own", false]], "selection_own() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selection_own", false]], "selection_own() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selection_own", false]], "selection_own() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.selection_own", false]], "selection_own_get() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.selection_own_get", false]], "selection_own_get() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.selection_own_get", false]], "selection_own_get() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.selection_own_get", false]], "selection_own_get() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.selection_own_get", false]], "selection_own_get() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.selection_own_get", false]], "selvar() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.selvar", false]], "send() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.send", false]], "send() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.send", false]], "send() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.send", false]], "send() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.send", false]], "send() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.send", false]], "set_axis_label() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.set_axis_label", false]], "set_dim_lat() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_lat", false]], "set_dim_lon() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_lon", false]], "set_dim_var() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_var", false]], "set_dim_x() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_x", false]], "set_dim_y() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_y", false]], "set_dim_y2() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_y2", false]], "set_dim_z() (in module ncvue.ncvmethods)": [[6, "ncvue.ncvmethods.set_dim_z", false]], "set_miss() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.set_miss", false]], "set_tstep() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.set_tstep", false]], "set_unlim() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.set_unlim", false]], "setvar() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.setvar", false]], "setvar() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.setvar", false]], "setvar() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.setvar", false]], "setvar() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.setvar", false]], "setvar() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.setvar", false]], "showcontents() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.showcontents", false]], "showtip() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.showtip", false]], "size() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.size", false]], "size() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.size", false]], "size() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.size", false]], "size() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.size", false]], "size() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.size", false]], "slaves() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.slaves", false]], "slaves() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.slaves", false]], "slaves() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.slaves", false]], "slaves() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.slaves", false]], "slaves() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.slaves", false]], "spinbox_values() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.spinbox_values", false]], "spinned_lat() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.spinned_lat", false]], "spinned_lon() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.spinned_lon", false]], "spinned_v() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.spinned_v", false]], "spinned_x() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.spinned_x", false]], "spinned_x() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.spinned_x", false]], "spinned_y() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.spinned_y", false]], "spinned_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.spinned_y", false]], "spinned_y2() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.spinned_y2", false]], "spinned_z() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.spinned_z", false]], "state() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.state", false]], "state() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.state", false]], "state() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.state", false]], "state() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.state", false]], "state() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.state", false]], "tk_bisque() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_bisque", false]], "tk_bisque() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_bisque", false]], "tk_bisque() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_bisque", false]], "tk_bisque() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_bisque", false]], "tk_bisque() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_bisque", false]], "tk_focusfollowsmouse() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_focusFollowsMouse", false]], "tk_focusfollowsmouse() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_focusFollowsMouse", false]], "tk_focusfollowsmouse() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_focusFollowsMouse", false]], "tk_focusfollowsmouse() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_focusFollowsMouse", false]], "tk_focusfollowsmouse() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_focusFollowsMouse", false]], "tk_focusnext() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_focusNext", false]], "tk_focusnext() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_focusNext", false]], "tk_focusnext() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_focusNext", false]], "tk_focusnext() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_focusNext", false]], "tk_focusnext() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_focusNext", false]], "tk_focusprev() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_focusPrev", false]], "tk_focusprev() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_focusPrev", false]], "tk_focusprev() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_focusPrev", false]], "tk_focusprev() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_focusPrev", false]], "tk_focusprev() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_focusPrev", false]], "tk_setpalette() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_setPalette", false]], "tk_setpalette() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_setPalette", false]], "tk_setpalette() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_setPalette", false]], "tk_setpalette() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_setPalette", false]], "tk_setpalette() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_setPalette", false]], "tk_strictmotif() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tk_strictMotif", false]], "tk_strictmotif() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tk_strictMotif", false]], "tk_strictmotif() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tk_strictMotif", false]], "tk_strictmotif() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tk_strictMotif", false]], "tk_strictmotif() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tk_strictMotif", false]], "tkraise() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.tkraise", false]], "tkraise() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.tkraise", false]], "tkraise() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tkraise", false]], "tkraise() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.tkraise", false]], "tkraise() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.tkraise", false]], "tooltip (class in ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.Tooltip", false]], "treeview (class in ncvue.ncvwidgets)": [[10, "ncvue.ncvwidgets.Treeview", false]], "tstep_t() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.tstep_t", false]], "unbind() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.unbind", false]], "unbind() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.unbind", false]], "unbind() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.unbind", false]], "unbind() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.unbind", false]], "unbind() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.unbind", false]], "unbind_all() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.unbind_all", false]], "unbind_all() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.unbind_all", false]], "unbind_all() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.unbind_all", false]], "unbind_all() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.unbind_all", false]], "unbind_all() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.unbind_all", false]], "unbind_class() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.unbind_class", false]], "unbind_class() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.unbind_class", false]], "unbind_class() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.unbind_class", false]], "unbind_class() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.unbind_class", false]], "unbind_class() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.unbind_class", false]], "unschedule() (tooltip method)": [[10, "ncvue.ncvwidgets.Tooltip.unschedule", false]], "update() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.update", false]], "update() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.update", false]], "update() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.update", false]], "update() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.update", false]], "update() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.update", false]], "update_idletasks() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.update_idletasks", false]], "update_idletasks() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.update_idletasks", false]], "update_idletasks() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.update_idletasks", false]], "update_idletasks() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.update_idletasks", false]], "update_idletasks() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.update_idletasks", false]], "vardim2var() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.vardim2var", false]], "wait_variable() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.wait_variable", false]], "wait_variable() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.wait_variable", false]], "wait_variable() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.wait_variable", false]], "wait_variable() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.wait_variable", false]], "wait_variable() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.wait_variable", false]], "wait_visibility() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.wait_visibility", false]], "wait_visibility() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.wait_visibility", false]], "wait_visibility() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.wait_visibility", false]], "wait_visibility() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.wait_visibility", false]], "wait_visibility() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.wait_visibility", false]], "wait_window() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.wait_window", false]], "wait_window() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.wait_window", false]], "wait_window() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.wait_window", false]], "wait_window() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.wait_window", false]], "wait_window() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.wait_window", false]], "waitvar() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.waitvar", false]], "waitvar() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.waitvar", false]], "waitvar() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.waitvar", false]], "waitvar() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.waitvar", false]], "waitvar() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.waitvar", false]], "winfo_atom() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_atom", false]], "winfo_atom() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_atom", false]], "winfo_atom() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_atom", false]], "winfo_atom() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_atom", false]], "winfo_atom() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_atom", false]], "winfo_atomname() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_atomname", false]], "winfo_atomname() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_atomname", false]], "winfo_atomname() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_atomname", false]], "winfo_atomname() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_atomname", false]], "winfo_atomname() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_atomname", false]], "winfo_cells() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_cells", false]], "winfo_cells() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_cells", false]], "winfo_cells() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_cells", false]], "winfo_cells() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_cells", false]], "winfo_cells() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_cells", false]], "winfo_children() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_children", false]], "winfo_children() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_children", false]], "winfo_children() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_children", false]], "winfo_children() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_children", false]], "winfo_children() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_children", false]], "winfo_class() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_class", false]], "winfo_class() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_class", false]], "winfo_class() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_class", false]], "winfo_class() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_class", false]], "winfo_class() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_class", false]], "winfo_colormapfull() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_colormapfull", false]], "winfo_colormapfull() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_colormapfull", false]], "winfo_colormapfull() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_colormapfull", false]], "winfo_colormapfull() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_colormapfull", false]], "winfo_colormapfull() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_colormapfull", false]], "winfo_containing() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_containing", false]], "winfo_containing() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_containing", false]], "winfo_containing() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_containing", false]], "winfo_containing() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_containing", false]], "winfo_containing() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_containing", false]], "winfo_depth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_depth", false]], "winfo_depth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_depth", false]], "winfo_depth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_depth", false]], "winfo_depth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_depth", false]], "winfo_depth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_depth", false]], "winfo_exists() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_exists", false]], "winfo_exists() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_exists", false]], "winfo_exists() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_exists", false]], "winfo_exists() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_exists", false]], "winfo_exists() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_exists", false]], "winfo_fpixels() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_fpixels", false]], "winfo_fpixels() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_fpixels", false]], "winfo_fpixels() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_fpixels", false]], "winfo_fpixels() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_fpixels", false]], "winfo_fpixels() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_fpixels", false]], "winfo_geometry() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_geometry", false]], "winfo_geometry() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_geometry", false]], "winfo_geometry() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_geometry", false]], "winfo_geometry() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_geometry", false]], "winfo_geometry() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_geometry", false]], "winfo_height() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_height", false]], "winfo_height() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_height", false]], "winfo_height() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_height", false]], "winfo_height() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_height", false]], "winfo_height() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_height", false]], "winfo_id() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_id", false]], "winfo_id() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_id", false]], "winfo_id() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_id", false]], "winfo_id() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_id", false]], "winfo_id() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_id", false]], "winfo_interps() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_interps", false]], "winfo_interps() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_interps", false]], "winfo_interps() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_interps", false]], "winfo_interps() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_interps", false]], "winfo_interps() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_interps", false]], "winfo_ismapped() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_ismapped", false]], "winfo_ismapped() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_ismapped", false]], "winfo_ismapped() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_ismapped", false]], "winfo_ismapped() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_ismapped", false]], "winfo_ismapped() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_ismapped", false]], "winfo_manager() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_manager", false]], "winfo_manager() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_manager", false]], "winfo_manager() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_manager", false]], "winfo_manager() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_manager", false]], "winfo_manager() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_manager", false]], "winfo_name() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_name", false]], "winfo_name() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_name", false]], "winfo_name() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_name", false]], "winfo_name() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_name", false]], "winfo_name() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_name", false]], "winfo_parent() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_parent", false]], "winfo_parent() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_parent", false]], "winfo_parent() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_parent", false]], "winfo_parent() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_parent", false]], "winfo_parent() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_parent", false]], "winfo_pathname() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_pathname", false]], "winfo_pathname() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_pathname", false]], "winfo_pathname() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_pathname", false]], "winfo_pathname() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_pathname", false]], "winfo_pathname() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_pathname", false]], "winfo_pixels() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_pixels", false]], "winfo_pixels() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_pixels", false]], "winfo_pixels() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_pixels", false]], "winfo_pixels() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_pixels", false]], "winfo_pixels() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_pixels", false]], "winfo_pointerx() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_pointerx", false]], "winfo_pointerx() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_pointerx", false]], "winfo_pointerx() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_pointerx", false]], "winfo_pointerx() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_pointerx", false]], "winfo_pointerx() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_pointerx", false]], "winfo_pointerxy() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_pointerxy", false]], "winfo_pointerxy() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_pointerxy", false]], "winfo_pointerxy() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_pointerxy", false]], "winfo_pointerxy() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_pointerxy", false]], "winfo_pointerxy() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_pointerxy", false]], "winfo_pointery() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_pointery", false]], "winfo_pointery() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_pointery", false]], "winfo_pointery() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_pointery", false]], "winfo_pointery() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_pointery", false]], "winfo_pointery() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_pointery", false]], "winfo_reqheight() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_reqheight", false]], "winfo_reqheight() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_reqheight", false]], "winfo_reqheight() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_reqheight", false]], "winfo_reqheight() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_reqheight", false]], "winfo_reqheight() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_reqheight", false]], "winfo_reqwidth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_reqwidth", false]], "winfo_reqwidth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_reqwidth", false]], "winfo_reqwidth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_reqwidth", false]], "winfo_reqwidth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_reqwidth", false]], "winfo_reqwidth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_reqwidth", false]], "winfo_rgb() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_rgb", false]], "winfo_rgb() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_rgb", false]], "winfo_rgb() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_rgb", false]], "winfo_rgb() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_rgb", false]], "winfo_rgb() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_rgb", false]], "winfo_rootx() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_rootx", false]], "winfo_rootx() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_rootx", false]], "winfo_rootx() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_rootx", false]], "winfo_rootx() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_rootx", false]], "winfo_rootx() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_rootx", false]], "winfo_rooty() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_rooty", false]], "winfo_rooty() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_rooty", false]], "winfo_rooty() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_rooty", false]], "winfo_rooty() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_rooty", false]], "winfo_rooty() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_rooty", false]], "winfo_screen() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screen", false]], "winfo_screen() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screen", false]], "winfo_screen() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screen", false]], "winfo_screen() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screen", false]], "winfo_screen() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screen", false]], "winfo_screencells() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screencells", false]], "winfo_screencells() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screencells", false]], "winfo_screencells() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screencells", false]], "winfo_screencells() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screencells", false]], "winfo_screencells() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screencells", false]], "winfo_screendepth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screendepth", false]], "winfo_screendepth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screendepth", false]], "winfo_screendepth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screendepth", false]], "winfo_screendepth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screendepth", false]], "winfo_screendepth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screendepth", false]], "winfo_screenheight() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screenheight", false]], "winfo_screenheight() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screenheight", false]], "winfo_screenheight() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screenheight", false]], "winfo_screenheight() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screenheight", false]], "winfo_screenheight() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screenheight", false]], "winfo_screenmmheight() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screenmmheight", false]], "winfo_screenmmheight() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screenmmheight", false]], "winfo_screenmmheight() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screenmmheight", false]], "winfo_screenmmheight() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screenmmheight", false]], "winfo_screenmmheight() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screenmmheight", false]], "winfo_screenmmwidth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screenmmwidth", false]], "winfo_screenmmwidth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screenmmwidth", false]], "winfo_screenmmwidth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screenmmwidth", false]], "winfo_screenmmwidth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screenmmwidth", false]], "winfo_screenmmwidth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screenmmwidth", false]], "winfo_screenvisual() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screenvisual", false]], "winfo_screenvisual() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screenvisual", false]], "winfo_screenvisual() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screenvisual", false]], "winfo_screenvisual() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screenvisual", false]], "winfo_screenvisual() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screenvisual", false]], "winfo_screenwidth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_screenwidth", false]], "winfo_screenwidth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_screenwidth", false]], "winfo_screenwidth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_screenwidth", false]], "winfo_screenwidth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_screenwidth", false]], "winfo_screenwidth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_screenwidth", false]], "winfo_server() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_server", false]], "winfo_server() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_server", false]], "winfo_server() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_server", false]], "winfo_server() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_server", false]], "winfo_server() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_server", false]], "winfo_toplevel() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_toplevel", false]], "winfo_toplevel() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_toplevel", false]], "winfo_toplevel() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_toplevel", false]], "winfo_toplevel() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_toplevel", false]], "winfo_toplevel() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_toplevel", false]], "winfo_viewable() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_viewable", false]], "winfo_viewable() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_viewable", false]], "winfo_viewable() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_viewable", false]], "winfo_viewable() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_viewable", false]], "winfo_viewable() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_viewable", false]], "winfo_visual() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_visual", false]], "winfo_visual() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_visual", false]], "winfo_visual() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_visual", false]], "winfo_visual() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_visual", false]], "winfo_visual() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_visual", false]], "winfo_visualid() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_visualid", false]], "winfo_visualid() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_visualid", false]], "winfo_visualid() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_visualid", false]], "winfo_visualid() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_visualid", false]], "winfo_visualid() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_visualid", false]], "winfo_visualsavailable() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_visualsavailable", false]], "winfo_visualsavailable() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_visualsavailable", false]], "winfo_visualsavailable() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_visualsavailable", false]], "winfo_visualsavailable() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_visualsavailable", false]], "winfo_visualsavailable() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_visualsavailable", false]], "winfo_vrootheight() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_vrootheight", false]], "winfo_vrootheight() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_vrootheight", false]], "winfo_vrootheight() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_vrootheight", false]], "winfo_vrootheight() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_vrootheight", false]], "winfo_vrootheight() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_vrootheight", false]], "winfo_vrootwidth() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_vrootwidth", false]], "winfo_vrootwidth() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_vrootwidth", false]], "winfo_vrootwidth() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_vrootwidth", false]], "winfo_vrootwidth() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_vrootwidth", false]], "winfo_vrootwidth() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_vrootwidth", false]], "winfo_vrootx() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_vrootx", false]], "winfo_vrootx() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_vrootx", false]], "winfo_vrootx() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_vrootx", false]], "winfo_vrootx() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_vrootx", false]], "winfo_vrootx() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_vrootx", false]], "winfo_vrooty() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_vrooty", false]], "winfo_vrooty() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_vrooty", false]], "winfo_vrooty() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_vrooty", false]], "winfo_vrooty() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_vrooty", false]], "winfo_vrooty() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_vrooty", false]], "winfo_width() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_width", false]], "winfo_width() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_width", false]], "winfo_width() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_width", false]], "winfo_width() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_width", false]], "winfo_width() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_width", false]], "winfo_x() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_x", false]], "winfo_x() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_x", false]], "winfo_x() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_x", false]], "winfo_x() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_x", false]], "winfo_x() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_x", false]], "winfo_y() (ncvcontour method)": [[3, "ncvue.ncvcontour.ncvContour.winfo_y", false]], "winfo_y() (ncvmain method)": [[4, "ncvue.ncvmain.ncvMain.winfo_y", false]], "winfo_y() (ncvmap method)": [[5, "ncvue.ncvmap.ncvMap.winfo_y", false]], "winfo_y() (ncvscatter method)": [[7, "ncvue.ncvscatter.ncvScatter.winfo_y", false]], "winfo_y() (treeview method)": [[10, "ncvue.ncvwidgets.Treeview.winfo_y", false]], "zip_dim_name_length() (in module ncvue.ncvutils)": [[9, "ncvue.ncvutils.zip_dim_name_length", false]]}, "objects": {"": [[11, 0, 0, "-", "ncvue"]], "ncvue": [[3, 0, 0, "-", "ncvcontour"], [4, 0, 0, "-", "ncvmain"], [5, 0, 0, "-", "ncvmap"], [6, 0, 0, "-", "ncvmethods"], [7, 0, 0, "-", "ncvscatter"], [8, 0, 0, "-", "ncvue"], [9, 0, 0, "-", "ncvutils"], [10, 0, 0, "-", "ncvwidgets"]], "ncvue.ncvcontour": [[3, 1, 1, "", "ncvContour"]], "ncvue.ncvcontour.ncvContour": [[3, 2, 1, "", "after"], [3, 2, 1, "", "after_cancel"], [3, 2, 1, "", "after_idle"], [3, 2, 1, "", "anchor"], [3, 2, 1, "", "bbox"], [3, 2, 1, "", "bell"], [3, 2, 1, "", "bind"], [3, 2, 1, "", "bind_all"], [3, 2, 1, "", "bind_class"], [3, 2, 1, "", "bindtags"], [3, 2, 1, "", "cget"], [3, 2, 1, "", "checked"], [3, 2, 1, "", "clipboard_append"], [3, 2, 1, "", "clipboard_clear"], [3, 2, 1, "", "clipboard_get"], [3, 2, 1, "", "columnconfigure"], [3, 2, 1, "", "config"], [3, 2, 1, "", "configure"], [3, 2, 1, "", "deletecommand"], [3, 2, 1, "", "destroy"], [3, 2, 1, "", "entered_z"], [3, 2, 1, "", "event_add"], [3, 2, 1, "", "event_delete"], [3, 2, 1, "", "event_generate"], [3, 2, 1, "", "event_info"], [3, 2, 1, "", "focus"], [3, 2, 1, "", "focus_displayof"], [3, 2, 1, "", "focus_force"], [3, 2, 1, "", "focus_get"], [3, 2, 1, "", "focus_lastfor"], [3, 2, 1, "", "focus_set"], [3, 2, 1, "", "forget"], [3, 2, 1, "", "getboolean"], [3, 2, 1, "", "getdouble"], [3, 2, 1, "", "getint"], [3, 2, 1, "", "getvar"], [3, 2, 1, "", "grab_current"], [3, 2, 1, "", "grab_release"], [3, 2, 1, "", "grab_set"], [3, 2, 1, "", "grab_set_global"], [3, 2, 1, "", "grab_status"], [3, 2, 1, "", "grid"], [3, 2, 1, "", "grid_anchor"], [3, 2, 1, "", "grid_bbox"], [3, 2, 1, "", "grid_columnconfigure"], [3, 2, 1, "", "grid_configure"], [3, 2, 1, "", "grid_forget"], [3, 2, 1, "", "grid_info"], [3, 2, 1, "", "grid_location"], [3, 2, 1, "", "grid_propagate"], [3, 2, 1, "", "grid_remove"], [3, 2, 1, "", "grid_rowconfigure"], [3, 2, 1, "", "grid_size"], [3, 2, 1, "", "grid_slaves"], [3, 2, 1, "", "identify"], [3, 2, 1, "", "image_names"], [3, 2, 1, "", "image_types"], [3, 2, 1, "", "info"], [3, 2, 1, "", "info_patchlevel"], [3, 2, 1, "", "instate"], [3, 2, 1, "", "keys"], [3, 2, 1, "", "lift"], [3, 2, 1, "", "location"], [3, 2, 1, "", "lower"], [3, 2, 1, "", "mainloop"], [3, 2, 1, "", "nametowidget"], [3, 2, 1, "", "newnetcdf"], [3, 2, 1, "", "next_z"], [3, 2, 1, "", "option_add"], [3, 2, 1, "", "option_clear"], [3, 2, 1, "", "option_get"], [3, 2, 1, "", "option_readfile"], [3, 2, 1, "", "pack"], [3, 2, 1, "", "pack_configure"], [3, 2, 1, "", "pack_forget"], [3, 2, 1, "", "pack_info"], [3, 2, 1, "", "pack_propagate"], [3, 2, 1, "", "pack_slaves"], [3, 2, 1, "", "place"], [3, 2, 1, "", "place_configure"], [3, 2, 1, "", "place_forget"], [3, 2, 1, "", "place_info"], [3, 2, 1, "", "place_slaves"], [3, 2, 1, "", "prev_z"], [3, 2, 1, "", "propagate"], [3, 2, 1, "", "quit"], [3, 2, 1, "", "redraw"], [3, 2, 1, "", "register"], [3, 2, 1, "", "reinit"], [3, 2, 1, "", "rowconfigure"], [3, 2, 1, "", "selected_cmap"], [3, 2, 1, "", "selected_x"], [3, 2, 1, "", "selected_y"], [3, 2, 1, "", "selected_z"], [3, 2, 1, "", "selection_clear"], [3, 2, 1, "", "selection_get"], [3, 2, 1, "", "selection_handle"], [3, 2, 1, "", "selection_own"], [3, 2, 1, "", "selection_own_get"], [3, 2, 1, "", "send"], [3, 2, 1, "", "setvar"], [3, 2, 1, "", "size"], [3, 2, 1, "", "slaves"], [3, 2, 1, "", "spinned_x"], [3, 2, 1, "", "spinned_y"], [3, 2, 1, "", "spinned_z"], [3, 2, 1, "", "state"], [3, 2, 1, "", "tk_bisque"], [3, 2, 1, "", "tk_focusFollowsMouse"], [3, 2, 1, "", "tk_focusNext"], [3, 2, 1, "", "tk_focusPrev"], [3, 2, 1, "", "tk_setPalette"], [3, 2, 1, "", "tk_strictMotif"], [3, 2, 1, "", "tkraise"], [3, 2, 1, "", "unbind"], [3, 2, 1, "", "unbind_all"], [3, 2, 1, "", "unbind_class"], [3, 2, 1, "", "update"], [3, 2, 1, "", "update_idletasks"], [3, 2, 1, "", "wait_variable"], [3, 2, 1, "", "wait_visibility"], [3, 2, 1, "", "wait_window"], [3, 2, 1, "", "waitvar"], [3, 2, 1, "", "winfo_atom"], [3, 2, 1, "", "winfo_atomname"], [3, 2, 1, "", "winfo_cells"], [3, 2, 1, "", "winfo_children"], [3, 2, 1, "", "winfo_class"], [3, 2, 1, "", "winfo_colormapfull"], [3, 2, 1, "", "winfo_containing"], [3, 2, 1, "", "winfo_depth"], [3, 2, 1, "", "winfo_exists"], [3, 2, 1, "", "winfo_fpixels"], [3, 2, 1, "", "winfo_geometry"], [3, 2, 1, "", "winfo_height"], [3, 2, 1, "", "winfo_id"], [3, 2, 1, "", "winfo_interps"], [3, 2, 1, "", "winfo_ismapped"], [3, 2, 1, "", "winfo_manager"], [3, 2, 1, "", "winfo_name"], [3, 2, 1, "", "winfo_parent"], [3, 2, 1, "", "winfo_pathname"], [3, 2, 1, "", "winfo_pixels"], [3, 2, 1, "", "winfo_pointerx"], [3, 2, 1, "", "winfo_pointerxy"], [3, 2, 1, "", "winfo_pointery"], [3, 2, 1, "", "winfo_reqheight"], [3, 2, 1, "", "winfo_reqwidth"], [3, 2, 1, "", "winfo_rgb"], [3, 2, 1, "", "winfo_rootx"], [3, 2, 1, "", "winfo_rooty"], [3, 2, 1, "", "winfo_screen"], [3, 2, 1, "", "winfo_screencells"], [3, 2, 1, "", "winfo_screendepth"], [3, 2, 1, "", "winfo_screenheight"], [3, 2, 1, "", "winfo_screenmmheight"], [3, 2, 1, "", "winfo_screenmmwidth"], [3, 2, 1, "", "winfo_screenvisual"], [3, 2, 1, "", "winfo_screenwidth"], [3, 2, 1, "", "winfo_server"], [3, 2, 1, "", "winfo_toplevel"], [3, 2, 1, "", "winfo_viewable"], [3, 2, 1, "", "winfo_visual"], [3, 2, 1, "", "winfo_visualid"], [3, 2, 1, "", "winfo_visualsavailable"], [3, 2, 1, "", "winfo_vrootheight"], [3, 2, 1, "", "winfo_vrootwidth"], [3, 2, 1, "", "winfo_vrootx"], [3, 2, 1, "", "winfo_vrooty"], [3, 2, 1, "", "winfo_width"], [3, 2, 1, "", "winfo_x"], [3, 2, 1, "", "winfo_y"]], "ncvue.ncvmain": [[4, 1, 1, "", "ncvMain"]], "ncvue.ncvmain.ncvMain": [[4, 2, 1, "", "after"], [4, 2, 1, "", "after_cancel"], [4, 2, 1, "", "after_idle"], [4, 2, 1, "", "anchor"], [4, 2, 1, "", "bbox"], [4, 2, 1, "", "bell"], [4, 2, 1, "", "bind"], [4, 2, 1, "", "bind_all"], [4, 2, 1, "", "bind_class"], [4, 2, 1, "", "bindtags"], [4, 2, 1, "", "cget"], [4, 2, 1, "", "check_new_netcdf"], [4, 2, 1, "", "clipboard_append"], [4, 2, 1, "", "clipboard_clear"], [4, 2, 1, "", "clipboard_get"], [4, 2, 1, "", "columnconfigure"], [4, 2, 1, "", "config"], [4, 2, 1, "", "configure"], [4, 2, 1, "", "deletecommand"], [4, 2, 1, "", "destroy"], [4, 2, 1, "", "event_add"], [4, 2, 1, "", "event_delete"], [4, 2, 1, "", "event_generate"], [4, 2, 1, "", "event_info"], [4, 2, 1, "", "focus"], [4, 2, 1, "", "focus_displayof"], [4, 2, 1, "", "focus_force"], [4, 2, 1, "", "focus_get"], [4, 2, 1, "", "focus_lastfor"], [4, 2, 1, "", "focus_set"], [4, 2, 1, "", "forget"], [4, 2, 1, "", "getboolean"], [4, 2, 1, "", "getdouble"], [4, 2, 1, "", "getint"], [4, 2, 1, "", "getvar"], [4, 2, 1, "", "grab_current"], [4, 2, 1, "", "grab_release"], [4, 2, 1, "", "grab_set"], [4, 2, 1, "", "grab_set_global"], [4, 2, 1, "", "grab_status"], [4, 2, 1, "", "grid"], [4, 2, 1, "", "grid_anchor"], [4, 2, 1, "", "grid_bbox"], [4, 2, 1, "", "grid_columnconfigure"], [4, 2, 1, "", "grid_configure"], [4, 2, 1, "", "grid_forget"], [4, 2, 1, "", "grid_info"], [4, 2, 1, "", "grid_location"], [4, 2, 1, "", "grid_propagate"], [4, 2, 1, "", "grid_remove"], [4, 2, 1, "", "grid_rowconfigure"], [4, 2, 1, "", "grid_size"], [4, 2, 1, "", "grid_slaves"], [4, 2, 1, "", "identify"], [4, 2, 1, "", "image_names"], [4, 2, 1, "", "image_types"], [4, 2, 1, "", "info"], [4, 2, 1, "", "info_patchlevel"], [4, 2, 1, "", "instate"], [4, 2, 1, "", "keys"], [4, 2, 1, "", "lift"], [4, 2, 1, "", "location"], [4, 2, 1, "", "lower"], [4, 2, 1, "", "mainloop"], [4, 2, 1, "", "nametowidget"], [4, 2, 1, "", "option_add"], [4, 2, 1, "", "option_clear"], [4, 2, 1, "", "option_get"], [4, 2, 1, "", "option_readfile"], [4, 2, 1, "", "pack"], [4, 2, 1, "", "pack_configure"], [4, 2, 1, "", "pack_forget"], [4, 2, 1, "", "pack_info"], [4, 2, 1, "", "pack_propagate"], [4, 2, 1, "", "pack_slaves"], [4, 2, 1, "", "place"], [4, 2, 1, "", "place_configure"], [4, 2, 1, "", "place_forget"], [4, 2, 1, "", "place_info"], [4, 2, 1, "", "place_slaves"], [4, 2, 1, "", "propagate"], [4, 2, 1, "", "quit"], [4, 2, 1, "", "register"], [4, 2, 1, "", "rowconfigure"], [4, 2, 1, "", "selection_clear"], [4, 2, 1, "", "selection_get"], [4, 2, 1, "", "selection_handle"], [4, 2, 1, "", "selection_own"], [4, 2, 1, "", "selection_own_get"], [4, 2, 1, "", "send"], [4, 2, 1, "", "setvar"], [4, 2, 1, "", "size"], [4, 2, 1, "", "slaves"], [4, 2, 1, "", "state"], [4, 2, 1, "", "tk_bisque"], [4, 2, 1, "", "tk_focusFollowsMouse"], [4, 2, 1, "", "tk_focusNext"], [4, 2, 1, "", "tk_focusPrev"], [4, 2, 1, "", "tk_setPalette"], [4, 2, 1, "", "tk_strictMotif"], [4, 2, 1, "", "tkraise"], [4, 2, 1, "", "unbind"], [4, 2, 1, "", "unbind_all"], [4, 2, 1, "", "unbind_class"], [4, 2, 1, "", "update"], [4, 2, 1, "", "update_idletasks"], [4, 2, 1, "", "wait_variable"], [4, 2, 1, "", "wait_visibility"], [4, 2, 1, "", "wait_window"], [4, 2, 1, "", "waitvar"], [4, 2, 1, "", "winfo_atom"], [4, 2, 1, "", "winfo_atomname"], [4, 2, 1, "", "winfo_cells"], [4, 2, 1, "", "winfo_children"], [4, 2, 1, "", "winfo_class"], [4, 2, 1, "", "winfo_colormapfull"], [4, 2, 1, "", "winfo_containing"], [4, 2, 1, "", "winfo_depth"], [4, 2, 1, "", "winfo_exists"], [4, 2, 1, "", "winfo_fpixels"], [4, 2, 1, "", "winfo_geometry"], [4, 2, 1, "", "winfo_height"], [4, 2, 1, "", "winfo_id"], [4, 2, 1, "", "winfo_interps"], [4, 2, 1, "", "winfo_ismapped"], [4, 2, 1, "", "winfo_manager"], [4, 2, 1, "", "winfo_name"], [4, 2, 1, "", "winfo_parent"], [4, 2, 1, "", "winfo_pathname"], [4, 2, 1, "", "winfo_pixels"], [4, 2, 1, "", "winfo_pointerx"], [4, 2, 1, "", "winfo_pointerxy"], [4, 2, 1, "", "winfo_pointery"], [4, 2, 1, "", "winfo_reqheight"], [4, 2, 1, "", "winfo_reqwidth"], [4, 2, 1, "", "winfo_rgb"], [4, 2, 1, "", "winfo_rootx"], [4, 2, 1, "", "winfo_rooty"], [4, 2, 1, "", "winfo_screen"], [4, 2, 1, "", "winfo_screencells"], [4, 2, 1, "", "winfo_screendepth"], [4, 2, 1, "", "winfo_screenheight"], [4, 2, 1, "", "winfo_screenmmheight"], [4, 2, 1, "", "winfo_screenmmwidth"], [4, 2, 1, "", "winfo_screenvisual"], [4, 2, 1, "", "winfo_screenwidth"], [4, 2, 1, "", "winfo_server"], [4, 2, 1, "", "winfo_toplevel"], [4, 2, 1, "", "winfo_viewable"], [4, 2, 1, "", "winfo_visual"], [4, 2, 1, "", "winfo_visualid"], [4, 2, 1, "", "winfo_visualsavailable"], [4, 2, 1, "", "winfo_vrootheight"], [4, 2, 1, "", "winfo_vrootwidth"], [4, 2, 1, "", "winfo_vrootx"], [4, 2, 1, "", "winfo_vrooty"], [4, 2, 1, "", "winfo_width"], [4, 2, 1, "", "winfo_x"], [4, 2, 1, "", "winfo_y"]], "ncvue.ncvmap": [[5, 1, 1, "", "ncvMap"]], "ncvue.ncvmap.ncvMap": [[5, 2, 1, "", "after"], [5, 2, 1, "", "after_cancel"], [5, 2, 1, "", "after_idle"], [5, 2, 1, "", "anchor"], [5, 2, 1, "", "bbox"], [5, 2, 1, "", "bell"], [5, 2, 1, "", "bind"], [5, 2, 1, "", "bind_all"], [5, 2, 1, "", "bind_class"], [5, 2, 1, "", "bindtags"], [5, 2, 1, "", "cget"], [5, 2, 1, "", "checked"], [5, 2, 1, "", "checked_all"], [5, 2, 1, "", "clipboard_append"], [5, 2, 1, "", "clipboard_clear"], [5, 2, 1, "", "clipboard_get"], [5, 2, 1, "", "columnconfigure"], [5, 2, 1, "", "config"], [5, 2, 1, "", "configure"], [5, 2, 1, "", "delay_t"], [5, 2, 1, "", "deletecommand"], [5, 2, 1, "", "destroy"], [5, 2, 1, "", "entered_clon"], [5, 2, 1, "", "entered_v"], [5, 2, 1, "", "event_add"], [5, 2, 1, "", "event_delete"], [5, 2, 1, "", "event_generate"], [5, 2, 1, "", "event_info"], [5, 2, 1, "", "first_t"], [5, 2, 1, "", "focus"], [5, 2, 1, "", "focus_displayof"], [5, 2, 1, "", "focus_force"], [5, 2, 1, "", "focus_get"], [5, 2, 1, "", "focus_lastfor"], [5, 2, 1, "", "focus_set"], [5, 2, 1, "", "forget"], [5, 2, 1, "", "get_vminmax"], [5, 2, 1, "", "getboolean"], [5, 2, 1, "", "getdouble"], [5, 2, 1, "", "getint"], [5, 2, 1, "", "getvar"], [5, 2, 1, "", "grab_current"], [5, 2, 1, "", "grab_release"], [5, 2, 1, "", "grab_set"], [5, 2, 1, "", "grab_set_global"], [5, 2, 1, "", "grab_status"], [5, 2, 1, "", "grid"], [5, 2, 1, "", "grid_anchor"], [5, 2, 1, "", "grid_bbox"], [5, 2, 1, "", "grid_columnconfigure"], [5, 2, 1, "", "grid_configure"], [5, 2, 1, "", "grid_forget"], [5, 2, 1, "", "grid_info"], [5, 2, 1, "", "grid_location"], [5, 2, 1, "", "grid_propagate"], [5, 2, 1, "", "grid_remove"], [5, 2, 1, "", "grid_rowconfigure"], [5, 2, 1, "", "grid_size"], [5, 2, 1, "", "grid_slaves"], [5, 2, 1, "", "identify"], [5, 2, 1, "", "image_names"], [5, 2, 1, "", "image_types"], [5, 2, 1, "", "info"], [5, 2, 1, "", "info_patchlevel"], [5, 2, 1, "", "instate"], [5, 2, 1, "", "keys"], [5, 2, 1, "", "last_t"], [5, 2, 1, "", "lift"], [5, 2, 1, "", "location"], [5, 2, 1, "", "lower"], [5, 2, 1, "", "mainloop"], [5, 2, 1, "", "nametowidget"], [5, 2, 1, "", "newnetcdf"], [5, 2, 1, "", "next_t"], [5, 2, 1, "", "next_v"], [5, 2, 1, "", "nrun_t"], [5, 2, 1, "", "option_add"], [5, 2, 1, "", "option_clear"], [5, 2, 1, "", "option_get"], [5, 2, 1, "", "option_readfile"], [5, 2, 1, "", "pack"], [5, 2, 1, "", "pack_configure"], [5, 2, 1, "", "pack_forget"], [5, 2, 1, "", "pack_info"], [5, 2, 1, "", "pack_propagate"], [5, 2, 1, "", "pack_slaves"], [5, 2, 1, "", "pause_t"], [5, 2, 1, "", "place"], [5, 2, 1, "", "place_configure"], [5, 2, 1, "", "place_forget"], [5, 2, 1, "", "place_info"], [5, 2, 1, "", "place_slaves"], [5, 2, 1, "", "prev_t"], [5, 2, 1, "", "prev_v"], [5, 2, 1, "", "propagate"], [5, 2, 1, "", "prun_t"], [5, 2, 1, "", "quit"], [5, 2, 1, "", "redraw"], [5, 2, 1, "", "register"], [5, 2, 1, "", "reinit"], [5, 2, 1, "", "repeat_t"], [5, 2, 1, "", "rowconfigure"], [5, 2, 1, "", "selected_cmap"], [5, 2, 1, "", "selected_lat"], [5, 2, 1, "", "selected_lon"], [5, 2, 1, "", "selected_proj"], [5, 2, 1, "", "selected_v"], [5, 2, 1, "", "selection_clear"], [5, 2, 1, "", "selection_get"], [5, 2, 1, "", "selection_handle"], [5, 2, 1, "", "selection_own"], [5, 2, 1, "", "selection_own_get"], [5, 2, 1, "", "send"], [5, 2, 1, "", "set_tstep"], [5, 2, 1, "", "set_unlim"], [5, 2, 1, "", "setvar"], [5, 2, 1, "", "size"], [5, 2, 1, "", "slaves"], [5, 2, 1, "", "spinned_lat"], [5, 2, 1, "", "spinned_lon"], [5, 2, 1, "", "spinned_v"], [5, 2, 1, "", "state"], [5, 2, 1, "", "tk_bisque"], [5, 2, 1, "", "tk_focusFollowsMouse"], [5, 2, 1, "", "tk_focusNext"], [5, 2, 1, "", "tk_focusPrev"], [5, 2, 1, "", "tk_setPalette"], [5, 2, 1, "", "tk_strictMotif"], [5, 2, 1, "", "tkraise"], [5, 2, 1, "", "tstep_t"], [5, 2, 1, "", "unbind"], [5, 2, 1, "", "unbind_all"], [5, 2, 1, "", "unbind_class"], [5, 2, 1, "", "update"], [5, 2, 1, "", "update_idletasks"], [5, 2, 1, "", "wait_variable"], [5, 2, 1, "", "wait_visibility"], [5, 2, 1, "", "wait_window"], [5, 2, 1, "", "waitvar"], [5, 2, 1, "", "winfo_atom"], [5, 2, 1, "", "winfo_atomname"], [5, 2, 1, "", "winfo_cells"], [5, 2, 1, "", "winfo_children"], [5, 2, 1, "", "winfo_class"], [5, 2, 1, "", "winfo_colormapfull"], [5, 2, 1, "", "winfo_containing"], [5, 2, 1, "", "winfo_depth"], [5, 2, 1, "", "winfo_exists"], [5, 2, 1, "", "winfo_fpixels"], [5, 2, 1, "", "winfo_geometry"], [5, 2, 1, "", "winfo_height"], [5, 2, 1, "", "winfo_id"], [5, 2, 1, "", "winfo_interps"], [5, 2, 1, "", "winfo_ismapped"], [5, 2, 1, "", "winfo_manager"], [5, 2, 1, "", "winfo_name"], [5, 2, 1, "", "winfo_parent"], [5, 2, 1, "", "winfo_pathname"], [5, 2, 1, "", "winfo_pixels"], [5, 2, 1, "", "winfo_pointerx"], [5, 2, 1, "", "winfo_pointerxy"], [5, 2, 1, "", "winfo_pointery"], [5, 2, 1, "", "winfo_reqheight"], [5, 2, 1, "", "winfo_reqwidth"], [5, 2, 1, "", "winfo_rgb"], [5, 2, 1, "", "winfo_rootx"], [5, 2, 1, "", "winfo_rooty"], [5, 2, 1, "", "winfo_screen"], [5, 2, 1, "", "winfo_screencells"], [5, 2, 1, "", "winfo_screendepth"], [5, 2, 1, "", "winfo_screenheight"], [5, 2, 1, "", "winfo_screenmmheight"], [5, 2, 1, "", "winfo_screenmmwidth"], [5, 2, 1, "", "winfo_screenvisual"], [5, 2, 1, "", "winfo_screenwidth"], [5, 2, 1, "", "winfo_server"], [5, 2, 1, "", "winfo_toplevel"], [5, 2, 1, "", "winfo_viewable"], [5, 2, 1, "", "winfo_visual"], [5, 2, 1, "", "winfo_visualid"], [5, 2, 1, "", "winfo_visualsavailable"], [5, 2, 1, "", "winfo_vrootheight"], [5, 2, 1, "", "winfo_vrootwidth"], [5, 2, 1, "", "winfo_vrootx"], [5, 2, 1, "", "winfo_vrooty"], [5, 2, 1, "", "winfo_width"], [5, 2, 1, "", "winfo_x"], [5, 2, 1, "", "winfo_y"]], "ncvue.ncvmethods": [[6, 3, 1, "", "analyse_netcdf"], [6, 3, 1, "", "get_miss"], [6, 3, 1, "", "get_slice_miss"], [6, 3, 1, "", "set_dim_lat"], [6, 3, 1, "", "set_dim_lon"], [6, 3, 1, "", "set_dim_var"], [6, 3, 1, "", "set_dim_x"], [6, 3, 1, "", "set_dim_y"], [6, 3, 1, "", "set_dim_y2"], [6, 3, 1, "", "set_dim_z"]], "ncvue.ncvscatter": [[7, 1, 1, "", "ncvScatter"]], "ncvue.ncvscatter.ncvScatter": [[7, 2, 1, "", "after"], [7, 2, 1, "", "after_cancel"], [7, 2, 1, "", "after_idle"], [7, 2, 1, "", "anchor"], [7, 2, 1, "", "bbox"], [7, 2, 1, "", "bell"], [7, 2, 1, "", "bind"], [7, 2, 1, "", "bind_all"], [7, 2, 1, "", "bind_class"], [7, 2, 1, "", "bindtags"], [7, 2, 1, "", "cget"], [7, 2, 1, "", "checked_x"], [7, 2, 1, "", "checked_y"], [7, 2, 1, "", "checked_y2"], [7, 2, 1, "", "checked_yy2"], [7, 2, 1, "", "clipboard_append"], [7, 2, 1, "", "clipboard_clear"], [7, 2, 1, "", "clipboard_get"], [7, 2, 1, "", "columnconfigure"], [7, 2, 1, "", "config"], [7, 2, 1, "", "configure"], [7, 2, 1, "", "deletecommand"], [7, 2, 1, "", "destroy"], [7, 2, 1, "", "entered_y"], [7, 2, 1, "", "entered_y2"], [7, 2, 1, "", "event_add"], [7, 2, 1, "", "event_delete"], [7, 2, 1, "", "event_generate"], [7, 2, 1, "", "event_info"], [7, 2, 1, "", "focus"], [7, 2, 1, "", "focus_displayof"], [7, 2, 1, "", "focus_force"], [7, 2, 1, "", "focus_get"], [7, 2, 1, "", "focus_lastfor"], [7, 2, 1, "", "focus_set"], [7, 2, 1, "", "forget"], [7, 2, 1, "", "getboolean"], [7, 2, 1, "", "getdouble"], [7, 2, 1, "", "getint"], [7, 2, 1, "", "getvar"], [7, 2, 1, "", "grab_current"], [7, 2, 1, "", "grab_release"], [7, 2, 1, "", "grab_set"], [7, 2, 1, "", "grab_set_global"], [7, 2, 1, "", "grab_status"], [7, 2, 1, "", "grid"], [7, 2, 1, "", "grid_anchor"], [7, 2, 1, "", "grid_bbox"], [7, 2, 1, "", "grid_columnconfigure"], [7, 2, 1, "", "grid_configure"], [7, 2, 1, "", "grid_forget"], [7, 2, 1, "", "grid_info"], [7, 2, 1, "", "grid_location"], [7, 2, 1, "", "grid_propagate"], [7, 2, 1, "", "grid_remove"], [7, 2, 1, "", "grid_rowconfigure"], [7, 2, 1, "", "grid_size"], [7, 2, 1, "", "grid_slaves"], [7, 2, 1, "", "identify"], [7, 2, 1, "", "image_names"], [7, 2, 1, "", "image_types"], [7, 2, 1, "", "info"], [7, 2, 1, "", "info_patchlevel"], [7, 2, 1, "", "instate"], [7, 2, 1, "", "keys"], [7, 2, 1, "", "lift"], [7, 2, 1, "", "location"], [7, 2, 1, "", "lower"], [7, 2, 1, "", "mainloop"], [7, 2, 1, "", "minmax_ylim"], [7, 2, 1, "", "nametowidget"], [7, 2, 1, "", "newnetcdf"], [7, 2, 1, "", "next_y"], [7, 2, 1, "", "option_add"], [7, 2, 1, "", "option_clear"], [7, 2, 1, "", "option_get"], [7, 2, 1, "", "option_readfile"], [7, 2, 1, "", "pack"], [7, 2, 1, "", "pack_configure"], [7, 2, 1, "", "pack_forget"], [7, 2, 1, "", "pack_info"], [7, 2, 1, "", "pack_propagate"], [7, 2, 1, "", "pack_slaves"], [7, 2, 1, "", "place"], [7, 2, 1, "", "place_configure"], [7, 2, 1, "", "place_forget"], [7, 2, 1, "", "place_info"], [7, 2, 1, "", "place_slaves"], [7, 2, 1, "", "prev_y"], [7, 2, 1, "", "propagate"], [7, 2, 1, "", "quit"], [7, 2, 1, "", "redraw"], [7, 2, 1, "", "redraw_y"], [7, 2, 1, "", "redraw_y2"], [7, 2, 1, "", "register"], [7, 2, 1, "", "reinit"], [7, 2, 1, "", "rowconfigure"], [7, 2, 1, "", "selected_x"], [7, 2, 1, "", "selected_y"], [7, 2, 1, "", "selected_y2"], [7, 2, 1, "", "selection_clear"], [7, 2, 1, "", "selection_get"], [7, 2, 1, "", "selection_handle"], [7, 2, 1, "", "selection_own"], [7, 2, 1, "", "selection_own_get"], [7, 2, 1, "", "send"], [7, 2, 1, "", "setvar"], [7, 2, 1, "", "size"], [7, 2, 1, "", "slaves"], [7, 2, 1, "", "spinned_x"], [7, 2, 1, "", "spinned_y"], [7, 2, 1, "", "spinned_y2"], [7, 2, 1, "", "state"], [7, 2, 1, "", "tk_bisque"], [7, 2, 1, "", "tk_focusFollowsMouse"], [7, 2, 1, "", "tk_focusNext"], [7, 2, 1, "", "tk_focusPrev"], [7, 2, 1, "", "tk_setPalette"], [7, 2, 1, "", "tk_strictMotif"], [7, 2, 1, "", "tkraise"], [7, 2, 1, "", "unbind"], [7, 2, 1, "", "unbind_all"], [7, 2, 1, "", "unbind_class"], [7, 2, 1, "", "update"], [7, 2, 1, "", "update_idletasks"], [7, 2, 1, "", "wait_variable"], [7, 2, 1, "", "wait_visibility"], [7, 2, 1, "", "wait_window"], [7, 2, 1, "", "waitvar"], [7, 2, 1, "", "winfo_atom"], [7, 2, 1, "", "winfo_atomname"], [7, 2, 1, "", "winfo_cells"], [7, 2, 1, "", "winfo_children"], [7, 2, 1, "", "winfo_class"], [7, 2, 1, "", "winfo_colormapfull"], [7, 2, 1, "", "winfo_containing"], [7, 2, 1, "", "winfo_depth"], [7, 2, 1, "", "winfo_exists"], [7, 2, 1, "", "winfo_fpixels"], [7, 2, 1, "", "winfo_geometry"], [7, 2, 1, "", "winfo_height"], [7, 2, 1, "", "winfo_id"], [7, 2, 1, "", "winfo_interps"], [7, 2, 1, "", "winfo_ismapped"], [7, 2, 1, "", "winfo_manager"], [7, 2, 1, "", "winfo_name"], [7, 2, 1, "", "winfo_parent"], [7, 2, 1, "", "winfo_pathname"], [7, 2, 1, "", "winfo_pixels"], [7, 2, 1, "", "winfo_pointerx"], [7, 2, 1, "", "winfo_pointerxy"], [7, 2, 1, "", "winfo_pointery"], [7, 2, 1, "", "winfo_reqheight"], [7, 2, 1, "", "winfo_reqwidth"], [7, 2, 1, "", "winfo_rgb"], [7, 2, 1, "", "winfo_rootx"], [7, 2, 1, "", "winfo_rooty"], [7, 2, 1, "", "winfo_screen"], [7, 2, 1, "", "winfo_screencells"], [7, 2, 1, "", "winfo_screendepth"], [7, 2, 1, "", "winfo_screenheight"], [7, 2, 1, "", "winfo_screenmmheight"], [7, 2, 1, "", "winfo_screenmmwidth"], [7, 2, 1, "", "winfo_screenvisual"], [7, 2, 1, "", "winfo_screenwidth"], [7, 2, 1, "", "winfo_server"], [7, 2, 1, "", "winfo_toplevel"], [7, 2, 1, "", "winfo_viewable"], [7, 2, 1, "", "winfo_visual"], [7, 2, 1, "", "winfo_visualid"], [7, 2, 1, "", "winfo_visualsavailable"], [7, 2, 1, "", "winfo_vrootheight"], [7, 2, 1, "", "winfo_vrootwidth"], [7, 2, 1, "", "winfo_vrootx"], [7, 2, 1, "", "winfo_vrooty"], [7, 2, 1, "", "winfo_width"], [7, 2, 1, "", "winfo_x"], [7, 2, 1, "", "winfo_y"]], "ncvue.ncvue": [[8, 3, 1, "", "ncvue"]], "ncvue.ncvutils": [[9, 4, 1, "", "DIMMETHODS"], [9, 3, 1, "", "add_cyclic"], [9, 3, 1, "", "clone_ncvmain"], [9, 3, 1, "", "format_coord_contour"], [9, 3, 1, "", "format_coord_map"], [9, 3, 1, "", "format_coord_scatter"], [9, 3, 1, "", "get_slice"], [9, 3, 1, "", "has_cyclic"], [9, 3, 1, "", "list_intersection"], [9, 3, 1, "", "selvar"], [9, 3, 1, "", "set_axis_label"], [9, 3, 1, "", "set_miss"], [9, 3, 1, "", "spinbox_values"], [9, 3, 1, "", "vardim2var"], [9, 3, 1, "", "zip_dim_name_length"]], "ncvue.ncvwidgets": [[10, 1, 1, "", "Tooltip"], [10, 1, 1, "", "Treeview"], [10, 3, 1, "", "add_checkbutton"], [10, 3, 1, "", "add_combobox"], [10, 3, 1, "", "add_entry"], [10, 3, 1, "", "add_imagemenu"], [10, 3, 1, "", "add_menu"], [10, 3, 1, "", "add_scale"], [10, 3, 1, "", "add_spinbox"], [10, 3, 1, "", "add_tooltip"], [10, 3, 1, "", "callurl"]], "ncvue.ncvwidgets.Tooltip": [[10, 2, 1, "", "get_position"], [10, 2, 1, "", "hidetip"], [10, 2, 1, "", "position_window"], [10, 2, 1, "", "schedule"], [10, 2, 1, "", "showcontents"], [10, 2, 1, "", "showtip"], [10, 2, 1, "", "unschedule"]], "ncvue.ncvwidgets.Treeview": [[10, 2, 1, "", "after"], [10, 2, 1, "", "after_cancel"], [10, 2, 1, "", "after_idle"], [10, 2, 1, "", "anchor"], [10, 2, 1, "", "bbox"], [10, 2, 1, "", "bell"], [10, 2, 1, "", "bind"], [10, 2, 1, "", "bind_all"], [10, 2, 1, "", "bind_class"], [10, 2, 1, "", "bindtags"], [10, 2, 1, "", "cget"], [10, 2, 1, "", "clipboard_append"], [10, 2, 1, "", "clipboard_clear"], [10, 2, 1, "", "clipboard_get"], [10, 2, 1, "", "columnconfigure"], [10, 2, 1, "", "config"], [10, 2, 1, "", "configure"], [10, 2, 1, "", "deletecommand"], [10, 2, 1, "", "destroy"], [10, 2, 1, "", "event_add"], [10, 2, 1, "", "event_delete"], [10, 2, 1, "", "event_generate"], [10, 2, 1, "", "event_info"], [10, 2, 1, "", "focus"], [10, 2, 1, "", "focus_displayof"], [10, 2, 1, "", "focus_force"], [10, 2, 1, "", "focus_get"], [10, 2, 1, "", "focus_lastfor"], [10, 2, 1, "", "focus_set"], [10, 2, 1, "", "forget"], [10, 2, 1, "", "getboolean"], [10, 2, 1, "", "getdouble"], [10, 2, 1, "", "getint"], [10, 2, 1, "", "getvar"], [10, 2, 1, "", "grab_current"], [10, 2, 1, "", "grab_release"], [10, 2, 1, "", "grab_set"], [10, 2, 1, "", "grab_set_global"], [10, 2, 1, "", "grab_status"], [10, 2, 1, "", "grid"], [10, 2, 1, "", "grid_anchor"], [10, 2, 1, "", "grid_bbox"], [10, 2, 1, "", "grid_columnconfigure"], [10, 2, 1, "", "grid_configure"], [10, 2, 1, "", "grid_forget"], [10, 2, 1, "", "grid_info"], [10, 2, 1, "", "grid_location"], [10, 2, 1, "", "grid_propagate"], [10, 2, 1, "", "grid_remove"], [10, 2, 1, "", "grid_rowconfigure"], [10, 2, 1, "", "grid_size"], [10, 2, 1, "", "grid_slaves"], [10, 2, 1, "", "identify"], [10, 2, 1, "", "image_names"], [10, 2, 1, "", "image_types"], [10, 2, 1, "", "info"], [10, 2, 1, "", "info_patchlevel"], [10, 2, 1, "", "instate"], [10, 2, 1, "", "keys"], [10, 2, 1, "", "lift"], [10, 2, 1, "", "location"], [10, 2, 1, "", "lower"], [10, 2, 1, "", "mainloop"], [10, 2, 1, "", "nametowidget"], [10, 2, 1, "", "option_add"], [10, 2, 1, "", "option_clear"], [10, 2, 1, "", "option_get"], [10, 2, 1, "", "option_readfile"], [10, 2, 1, "", "pack"], [10, 2, 1, "", "pack_configure"], [10, 2, 1, "", "pack_forget"], [10, 2, 1, "", "pack_info"], [10, 2, 1, "", "pack_propagate"], [10, 2, 1, "", "pack_slaves"], [10, 2, 1, "", "place"], [10, 2, 1, "", "place_configure"], [10, 2, 1, "", "place_forget"], [10, 2, 1, "", "place_info"], [10, 2, 1, "", "place_slaves"], [10, 2, 1, "", "propagate"], [10, 2, 1, "", "quit"], [10, 2, 1, "", "register"], [10, 2, 1, "", "rowconfigure"], [10, 2, 1, "", "selection_clear"], [10, 2, 1, "", "selection_get"], [10, 2, 1, "", "selection_handle"], [10, 2, 1, "", "selection_own"], [10, 2, 1, "", "selection_own_get"], [10, 2, 1, "", "send"], [10, 2, 1, "", "setvar"], [10, 2, 1, "", "size"], [10, 2, 1, "", "slaves"], [10, 2, 1, "", "state"], [10, 2, 1, "", "tk_bisque"], [10, 2, 1, "", "tk_focusFollowsMouse"], [10, 2, 1, "", "tk_focusNext"], [10, 2, 1, "", "tk_focusPrev"], [10, 2, 1, "", "tk_setPalette"], [10, 2, 1, "", "tk_strictMotif"], [10, 2, 1, "", "tkraise"], [10, 2, 1, "", "unbind"], [10, 2, 1, "", "unbind_all"], [10, 2, 1, "", "unbind_class"], [10, 2, 1, "", "update"], [10, 2, 1, "", "update_idletasks"], [10, 2, 1, "", "wait_variable"], [10, 2, 1, "", "wait_visibility"], [10, 2, 1, "", "wait_window"], [10, 2, 1, "", "waitvar"], [10, 2, 1, "", "winfo_atom"], [10, 2, 1, "", "winfo_atomname"], [10, 2, 1, "", "winfo_cells"], [10, 2, 1, "", "winfo_children"], [10, 2, 1, "", "winfo_class"], [10, 2, 1, "", "winfo_colormapfull"], [10, 2, 1, "", "winfo_containing"], [10, 2, 1, "", "winfo_depth"], [10, 2, 1, "", "winfo_exists"], [10, 2, 1, "", "winfo_fpixels"], [10, 2, 1, "", "winfo_geometry"], [10, 2, 1, "", "winfo_height"], [10, 2, 1, "", "winfo_id"], [10, 2, 1, "", "winfo_interps"], [10, 2, 1, "", "winfo_ismapped"], [10, 2, 1, "", "winfo_manager"], [10, 2, 1, "", "winfo_name"], [10, 2, 1, "", "winfo_parent"], [10, 2, 1, "", "winfo_pathname"], [10, 2, 1, "", "winfo_pixels"], [10, 2, 1, "", "winfo_pointerx"], [10, 2, 1, "", "winfo_pointerxy"], [10, 2, 1, "", "winfo_pointery"], [10, 2, 1, "", "winfo_reqheight"], [10, 2, 1, "", "winfo_reqwidth"], [10, 2, 1, "", "winfo_rgb"], [10, 2, 1, "", "winfo_rootx"], [10, 2, 1, "", "winfo_rooty"], [10, 2, 1, "", "winfo_screen"], [10, 2, 1, "", "winfo_screencells"], [10, 2, 1, "", "winfo_screendepth"], [10, 2, 1, "", "winfo_screenheight"], [10, 2, 1, "", "winfo_screenmmheight"], [10, 2, 1, "", "winfo_screenmmwidth"], [10, 2, 1, "", "winfo_screenvisual"], [10, 2, 1, "", "winfo_screenwidth"], [10, 2, 1, "", "winfo_server"], [10, 2, 1, "", "winfo_toplevel"], [10, 2, 1, "", "winfo_viewable"], [10, 2, 1, "", "winfo_visual"], [10, 2, 1, "", "winfo_visualid"], [10, 2, 1, "", "winfo_visualsavailable"], [10, 2, 1, "", "winfo_vrootheight"], [10, 2, 1, "", "winfo_vrootwidth"], [10, 2, 1, "", "winfo_vrootx"], [10, 2, 1, "", "winfo_vrooty"], [10, 2, 1, "", "winfo_width"], [10, 2, 1, "", "winfo_x"], [10, 2, 1, "", "winfo_y"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"], "4": ["py", "data", "Python data"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function", "4": "py:data"}, "terms": {"": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12], "0": [0, 3, 4, 5, 6, 7, 9, 10, 11, 12], "0001": 9, "1": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12], "10": [2, 10, 12], "1000": 10, "11": [9, 12], "111": 9, "12": 2, "120": 9, "13": [0, 2, 8], "144": 9, "17": 9, "17520": 9, "18": 9, "180": [0, 9], "1e": 9, "2": [0, 9, 11, 12], "20": [0, 9], "2020": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "2021": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11], "2022": [0, 11], "2023": 10, "2024": [0, 3, 4, 5, 6, 7, 8, 9, 11, 12], "21": 9, "216": 9, "240": 9, "26": 9, "28": 9, "288": 9, "2d": 3, "3": [0, 2, 3, 4, 5, 7, 9, 10, 11, 12], "30": 9, "300": 9, "31": 0, "32": 9, "360": [0, 9], "361": 9, "3697432": 9, "3c": [3, 4, 5, 7, 10], "4": [0, 9, 10, 11], "45": 9, "5": [0, 2, 9, 11], "50": 9, "52608": 12, "54": 9, "6": [0, 2, 3, 4, 5, 7, 9, 10, 11], "60": [9, 12], "63": 9, "64": 9, "65536": [3, 4, 5, 7, 10], "66": 9, "7": [0, 11], "72": 9, "74": 9, "8": [0, 2, 11], "80": [3, 4, 5, 7, 10], "9": [0, 9], "90": 9, "91": 9, "A": [1, 2, 3, 4, 5, 7, 10], "Be": 12, "But": 12, "If": [2, 3, 4, 5, 7, 9, 10, 12], "In": [2, 10], "It": [2, 3, 4, 5, 7, 10, 11, 12], "No": 9, "Not": 9, "On": [2, 12], "One": [2, 12], "Or": [2, 12], "The": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "Then": [3, 5, 7], "There": 2, "These": 6, "To": [3, 4, 5, 7, 10], "With": [3, 4, 5, 7, 10], "__init__": [3, 4, 5, 7], "_fillvalu": [6, 8], "_netcdf4": [6, 9], "_noarg_": [3, 4, 5, 7, 10], "_subplot": 9, "about": [1, 3, 4, 5, 7, 10], "abov": 2, "abovethi": [3, 4, 5, 7, 10], "accord": [3, 4, 5, 7, 10], "accordingli": 0, "account": [3, 4, 5, 7, 10], "action": [0, 11], "activ": [0, 3, 4, 5, 7, 10], "activebackground": [3, 4, 5, 7, 10], "activeforeground": [3, 4, 5, 7, 10], "ad": [0, 4, 5, 6, 9, 10, 11], "adapt": 0, "add": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "add_checkbutton": [1, 10, 11], "add_combobox": [1, 10, 11], "add_cycl": [0, 1, 9, 11], "add_cyclic_point": 9, "add_entri": [1, 10, 11], "add_imagemenu": [1, 10, 11], "add_menu": [1, 10, 11], "add_scal": [1, 10, 11], "add_spinbox": [1, 10, 11], "add_tooltip": [1, 10, 11], "addit": [3, 4, 5, 7, 10], "addition": [3, 4, 5, 7, 10], "address": [3, 4, 5, 6, 7, 9], "adher": [3, 4, 5, 7, 10], "administr": 2, "after": [2, 3, 4, 5, 7, 9, 10, 11], "after_cancel": [3, 4, 5, 7, 10, 11], "after_idl": [3, 4, 5, 7, 10, 11], "again": 0, "against": 7, "agricultur": [3, 4, 5, 6, 7, 8, 9, 10], "aim": [11, 12], "align": 10, "aliment": [3, 4, 5, 6, 7, 8, 9, 10], "all": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12], "allow": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "along": [5, 9], "alreadi": [2, 9], "also": [0, 2, 3, 4, 5, 6, 7, 10, 12], "alt": [3, 4, 5, 7, 10], "altern": [3, 4, 5, 7, 10], "alwai": 12, "amount": [3, 4, 5, 7, 10], "amplitud": [9, 12], "an": [0, 2, 3, 4, 5, 7, 8, 9, 10], "analys": [4, 6], "analyse_netcdf": [0, 1, 6, 11], "analysi": 0, "ancestor": [3, 4, 5, 7, 10], "anchor": [3, 4, 5, 7, 10, 11], "anchor_widget": 10, "ani": [2, 3, 4, 5, 7, 9, 10, 12], "anim": [0, 5, 11, 12], "anoth": [3, 4, 5, 7, 9, 10, 12], "anymor": [0, 3, 4, 5, 7, 10], "anywai": 2, "api": [0, 1, 10], "app": [0, 2, 11], "appear": [3, 4, 5, 7, 10], "append": [3, 4, 5, 7, 10], "appl": [0, 2], "appli": [3, 4, 5, 7, 9, 10], "applic": [0, 2, 3, 4, 5, 7, 10], "apt": 2, "ar": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "arang": 9, "arbitrari": [3, 4, 5, 7, 10], "area": 10, "arg": [0, 3, 4, 5, 6, 7, 10], "argument": [3, 4, 5, 6, 7, 10], "arithmet": [0, 9, 12], "arm64": 2, "arrai": [0, 6, 9], "ascii": 0, "associ": [3, 4, 5, 7, 9, 10], "assur": 0, "astr": [3, 4, 5, 7, 10], "atom": [3, 4, 5, 7, 10], "attribut": [0, 6], "automat": [0, 3, 4, 5, 7, 10, 12], "avail": [3, 4, 5, 7, 10, 12], "averag": 9, "avoid": 0, "awar": 12, "ax": [0, 7, 9, 12], "ax2": 9, "axessubplot": 9, "axi": [0, 5, 6, 7, 9, 11, 12], "azur": [0, 12], "b1": [3, 4, 5, 7, 10], "b2": [3, 4, 5, 7, 10], "b3": [3, 4, 5, 7, 10], "b4": [3, 4, 5, 7, 10], "b5": [3, 4, 5, 7, 10], "back": [0, 3, 4, 5, 7, 8, 10, 11], "backend": 12, "background": [3, 4, 5, 7, 10], "backward": 5, "badg": 0, "base": [3, 4, 5, 6, 7, 10, 12], "bash": 2, "basic": 2, "basin": 0, "bbox": [3, 4, 5, 7, 10, 11], "becaus": [0, 2, 12], "becom": [3, 4, 5, 7, 10], "been": [3, 4, 5, 7, 10], "befor": [3, 4, 5, 7, 9, 10, 12], "being": [11, 12], "bell": [3, 4, 5, 7, 10, 11], "belong": 6, "below": [0, 2, 12], "belowthi": [3, 4, 5, 7, 10], "best": 2, "better": [0, 11], "between": [0, 3, 4, 5, 7, 8, 9, 10], "bin": 2, "binari": 1, "bind": [0, 3, 4, 5, 7, 10, 11], "bind_al": [3, 4, 5, 7, 10, 11], "bind_class": [3, 4, 5, 7, 10, 11], "bindtag": [3, 4, 5, 7, 10, 11], "bit": [3, 4, 5, 7, 10], "bitmap": [3, 4, 5, 7, 10], "blue": 10, "bool": [3, 4, 5, 7, 10], "boolean": [3, 4, 5, 7, 10], "booleanvar": [3, 4, 5, 7, 10], "border": [0, 3, 4, 5, 7, 10, 11], "bordermod": [3, 4, 5, 7, 10], "both": [0, 3, 4, 5, 7, 9, 10], "bottom": [3, 4, 5, 7, 10], "bound": [3, 4, 5, 7, 10], "boundari": [3, 4, 5, 7, 10], "box": [2, 3, 4, 5, 7, 10, 12], "bracket": 0, "break": [3, 4, 5, 7, 10], "brew": 2, "brown": [3, 4, 5, 7, 10], "browser": 10, "bug": [0, 6, 11], "bugfix": 0, "build": [0, 1, 12], "build_ext": 2, "built": 2, "builtin": 9, "bump": 0, "button": [0, 3, 4, 5, 7, 9, 10, 12], "button1": [3, 4, 5, 7, 10], "button2": [3, 4, 5, 7, 10], "button3": [3, 4, 5, 7, 10], "button4": [3, 4, 5, 7, 10], "button5": [3, 4, 5, 7, 10], "buttonpress": [3, 4, 5, 7, 10], "buttonreleas": [3, 4, 5, 7, 10], "c": [2, 12], "calcul": [0, 4, 6], "call": [0, 3, 4, 5, 6, 7, 8, 10, 12], "callback": [3, 4, 5, 7, 10], "callurl": [1, 10, 11], "can": [0, 2, 3, 4, 5, 7, 10, 12], "cancel": [3, 4, 5, 7, 10], "cannot": 12, "canva": [3, 5, 7, 12], "capabl": [11, 12], "cartograph": 2, "cartopi": [0, 2, 9, 11, 12], "case": [2, 12], "catch": [0, 6], "caus": [3, 4, 5, 7, 10], "caution": [3, 4, 5, 7, 10], "cd": 2, "cell": [0, 3, 4, 5, 7, 9, 10], "central": [0, 5, 12], "cfg": 0, "cflag": 2, "cget": [3, 4, 5, 7, 10, 11], "chang": [0, 3, 4, 5, 7, 8, 9, 10, 12], "changelog": 1, "charact": 0, "check": [3, 4, 5, 7, 9, 10, 11], "check_new_netcdf": [4, 11], "checkbutton": [0, 3, 5, 7, 10, 11], "checked_al": [5, 11], "checked_i": [7, 11], "checked_x": [7, 11], "checked_y2": [7, 11], "checked_yy2": [7, 11], "child": [3, 4, 5, 7, 10], "children": [3, 4, 5, 7, 10], "chip": [0, 2], "choic": 10, "choos": [2, 6, 10, 12], "chooser": 11, "chosen": [0, 3, 5, 9, 10], "chr": 0, "chunk": [3, 4, 5, 7, 10], "cibuildwheel": 0, "circl": 12, "circul": [3, 4, 5, 7, 10], "circular": 0, "claim": 0, "clash": 2, "class": [0, 3, 4, 5, 6, 7, 8, 9, 10], "classnam": [3, 4, 5, 7, 10], "clat2d": 9, "clear": [3, 4, 5, 7, 10], "click": [2, 12], "clipboard": [3, 4, 5, 7, 10], "clipboard_append": [3, 4, 5, 7, 10, 11], "clipboard_clear": [3, 4, 5, 7, 10, 11], "clipboard_get": [3, 4, 5, 7, 10, 11], "clon": 9, "clon2d": 9, "clone": 2, "clone_ncvmain": [1, 9, 11], "close": 0, "cmap": [3, 5, 10], "cmaplbl": 10, "cmd": [3, 4, 5, 7, 10], "cnf": [3, 4, 5, 7, 10], "coastlin": 12, "col": [0, 6], "col2": [3, 4, 5, 7, 10], "color": [3, 4, 5, 7, 10, 12], "colorbar": [0, 5, 11], "colormap": [0, 3, 4, 5, 7, 10], "colormodel": [3, 4, 5, 7, 10], "colour": 10, "column": [3, 4, 5, 7, 9, 10], "columnconfigur": [3, 4, 5, 7, 10, 11], "columnspan": [3, 4, 5, 7, 10], "com": [2, 9], "combin": 9, "combobox": [3, 5, 7, 10], "comboboxselect": 10, "come": 2, "command": [2, 3, 4, 5, 7, 9, 10, 12], "commit": [0, 11], "common": [0, 6, 9, 11], "commun": [0, 3, 5, 7, 8], "complet": 12, "comprehens": 9, "concaten": [3, 4, 5, 7, 10], "concern": 7, "conda": [0, 2], "config": [2, 3, 4, 5, 7, 9, 10, 11], "configur": [3, 4, 5, 7, 10, 11], "connect": [3, 5, 7], "consider": 12, "consist": [3, 4, 5, 7, 10], "constant": 10, "contain": [3, 4, 5, 7, 10], "content": [3, 4, 5, 7, 10, 12], "continu": 0, "contour": [0, 1, 3, 5, 9, 11], "contourf": 0, "control": [2, 3, 4, 5, 7, 10], "conveni": [6, 10], "coordin": [0, 3, 4, 5, 7, 9, 10], "copi": [0, 9, 10], "copyright": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "corner": [3, 4, 5, 7, 10], "correct": [0, 9, 12], "correctli": 12, "correspond": [3, 4, 5, 7, 9, 10], "could": 6, "creat": [3, 4, 5, 7, 9, 10], "cuntz": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "curl": 2, "current": [0, 3, 4, 5, 7, 8, 10], "cx_freez": [0, 11], "cyclic": 9, "cyclic_data": 9, "cyclic_i": 9, "cyclic_lat2d": 9, "cyclic_lon": 9, "cyclic_lon2d": 9, "cyclic_x": 9, "cython": 2, "d": 10, "dai": 0, "dark": [0, 10, 12], "darkgrid": 0, "data": [0, 2, 3, 4, 5, 7, 8, 9, 10, 12], "databas": [3, 4, 5, 7, 10], "dataset": 9, "datatyp": 8, "date": [4, 9], "datetim": [6, 12], "datetime64": [0, 6, 9], "de": [3, 4, 5, 6, 7, 8, 9, 10, 11], "deactiv": [3, 4, 5, 7, 10], "deal": 0, "dec": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11], "default": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12], "default_fillv": [6, 8], "delai": 5, "delay_t": [5, 11], "delet": [3, 4, 5, 7, 10], "deletecommand": [3, 4, 5, 7, 10, 11], "depend": [1, 9], "deprec": 2, "depth": [3, 4, 5, 7, 10, 12], "deriv": [3, 4, 5, 7, 10], "descend": [3, 4, 5, 7, 10], "describ": 12, "descript": [3, 4, 5, 7, 10], "destroi": [3, 4, 5, 7, 10, 11], "detail": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "detect": [0, 6, 9, 11, 12], "determin": [3, 4, 5, 6, 7, 10], "dev": 2, "develop": [0, 2], "deviat": [9, 12], "dialog": 2, "did": 12, "differ": [0, 3, 4, 5, 7, 8, 9, 10, 11, 12], "digit": 0, "dim": [6, 9, 10], "dim1": 9, "dimens": [0, 3, 4, 5, 6, 7, 9, 10, 11, 12], "dimension": 9, "dimmethod": [1, 9, 11], "dimspin": [6, 9], "direct": [3, 4, 5, 7, 10], "directcolor": [3, 4, 5, 7, 10], "directli": [2, 3, 4, 5, 6, 7, 9], "directori": [0, 2, 3, 5, 8], "disabl": [0, 3, 4, 5, 7, 10], "disabledforeground": [3, 4, 5, 7, 10], "disappear": 0, "disk": [0, 11], "displai": [3, 4, 5, 7, 10, 12], "displayof": [3, 4, 5, 7, 10], "distanc": [3, 4, 5, 7, 10], "distribut": [1, 12], "dl": 10, "dlbl": [6, 10], "dlblval": 6, "dlval": 10, "do": [0, 2, 3, 4, 5, 6, 7, 9, 10], "doc": 10, "document": [0, 11, 12], "doe": [0, 3, 4, 5, 7, 10, 12], "domain": 9, "don": 2, "done": 0, "dot": [3, 4, 5, 6, 7, 8, 9, 10, 11], "doubl": [3, 4, 5, 7, 10], "doublevar": [3, 4, 5, 7, 10], "down": 10, "draw": [0, 5, 7, 11, 12], "draw_idl": [0, 5], "drawn": [0, 3, 5, 7], "drop": [0, 10, 11, 12], "dropdown": 12, "dtime": 6, "dtip": 10, "dtype": [6, 9], "dunlim": [5, 6], "duplic": 9, "dure": 10, "dval": 10, "e": [0, 3, 4, 5, 6, 7, 9, 10, 12], "each": [3, 4, 5, 7, 10], "easiest": 2, "easili": [2, 3, 4, 5, 7, 10], "edg": [3, 4, 5, 7, 10], "either": [0, 12], "elabor": 2, "element": [3, 4, 5, 7, 9, 10], "elif": 0, "elimin": 12, "els": 9, "elsewher": 11, "empti": [3, 4, 5, 7, 10, 12], "enabl": 2, "engin": 2, "enhanc": 0, "enter": [3, 4, 5, 7, 10], "entered_clon": [5, 11], "entered_i": [7, 11], "entered_v": [5, 11], "entered_y2": [7, 11], "entered_z": [3, 11], "entri": [0, 3, 5, 6, 9, 10, 12], "entry_point": [0, 11], "env": 2, "environ": 2, "environn": [3, 4, 5, 6, 7, 8, 9, 10], "equal": 9, "equival": [3, 4, 5, 7, 10], "error": 0, "especi": 12, "et": [3, 4, 5, 6, 7, 8, 9, 10], "etc": [0, 3, 4, 5, 6, 7, 9], "even": [0, 3, 4, 5, 7, 10], "event": [3, 4, 5, 7, 10], "event_add": [3, 4, 5, 7, 10, 11], "event_delet": [3, 4, 5, 7, 10, 11], "event_gener": [3, 4, 5, 7, 10, 11], "event_info": [3, 4, 5, 7, 10, 11], "eventu": 2, "everyth": 2, "evolv": 12, "exact": [3, 4, 5, 7, 10], "exactli": 2, "exampl": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12], "except": [3, 4, 5, 7, 10], "exclud": 12, "execut": [2, 3, 4, 5, 7, 10], "exhaust": 0, "exist": [3, 4, 5, 6, 7, 10], "expand": [3, 4, 5, 7, 10], "expect": [3, 4, 5, 7, 10], "explicitli": [0, 11], "export": 2, "expos": [3, 4, 5, 7, 10], "extens": 10, "extern": 10, "externalis": 0, "extract": [0, 6, 9], "fall": [3, 4, 5, 7, 10], "fals": [0, 3, 4, 5, 7, 9, 10], "fashion": 12, "fast": 12, "faster": [0, 5], "feb": [0, 3, 5, 7, 8, 11], "feel": [3, 4, 5, 7, 10], "fetch": [3, 4, 5, 7, 10], "few": 0, "fi": [2, 3, 4, 5, 6, 7, 9], "figur": [3, 5, 7, 12], "file": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11], "file0001": 9, "file1": 9, "file_nam": [3, 4, 5, 7, 10], "filenam": [3, 4, 5, 7, 10], "fill": [3, 4, 5, 7, 10, 12], "final": [0, 9, 11], "find": [0, 9], "first": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11], "first_t": [5, 11], "fix": [0, 11], "flag": [3, 4, 5, 7, 10], "float": [3, 4, 5, 7, 8, 9, 10], "focu": [3, 4, 5, 7, 10, 11], "focus_displayof": [3, 4, 5, 7, 10, 11], "focus_forc": [3, 4, 5, 7, 10, 11], "focus_get": [3, 4, 5, 7, 10, 11], "focus_lastfor": [3, 4, 5, 7, 10, 11], "focus_set": [3, 4, 5, 7, 10, 11], "focusin": [3, 4, 5, 7, 10], "focusout": [3, 4, 5, 7, 10], "follow": [3, 4, 5, 6, 7, 8, 9, 10], "font": [0, 8, 10], "foreground": [3, 4, 5, 7, 10], "forg": [0, 2], "forget": [3, 4, 5, 7, 10, 11], "form": [3, 4, 5, 7, 9, 10], "format": [0, 6, 8, 9], "format_coord": 9, "format_coord_contour": [1, 9, 11], "format_coord_map": [1, 9, 11], "format_coord_scatt": [1, 9, 11], "formatt": 9, "forward": 5, "found": [0, 6], "frame": [3, 4, 5, 6, 7, 8, 10], "frame_widget": 10, "framework": 2, "franc": [3, 4, 5, 6, 7, 8, 9, 10], "freez": 2, "from": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "front": 10, "fssl": 2, "full": [3, 4, 5, 7, 10], "func": [3, 4, 5, 7, 10], "funcid": [3, 4, 5, 7, 10], "function": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10], "further": [3, 4, 5, 7, 10], "futur": [2, 10], "g": [0, 3, 4, 5, 7, 10, 12], "gather": 6, "gdal": 2, "gener": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11], "geo": 2, "geometri": [2, 3, 4, 5, 7, 10], "georeferenc": 5, "geos_config": 2, "geos_dir": 2, "get": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "get_cmap": [0, 5], "get_dim_var": 6, "get_miss": [1, 6, 9, 11], "get_posit": [10, 11], "get_slic": [0, 1, 6, 9, 11], "get_slice_i": 9, "get_slice_miss": [0, 1, 6, 11], "get_vminmax": [5, 11], "getboolean": [3, 4, 5, 7, 10, 11], "getdoubl": [3, 4, 5, 7, 10, 11], "getint": [3, 4, 5, 7, 10, 11], "getvar": [3, 4, 5, 7, 10, 11], "git": 2, "github": [0, 2, 11, 12], "githubusercont": 2, "give": [2, 3, 4, 5, 7, 10], "given": [0, 2, 3, 4, 5, 7, 9, 10, 12], "global": [2, 3, 4, 5, 7, 10, 12], "goe": [3, 4, 5, 7, 10], "grab": [3, 4, 5, 7, 10], "grab_curr": [3, 4, 5, 7, 10, 11], "grab_releas": [3, 4, 5, 7, 10, 11], "grab_set": [3, 4, 5, 7, 10, 11], "grab_set_glob": [3, 4, 5, 7, 10, 11], "grab_statu": [3, 4, 5, 7, 10, 11], "graph": 7, "graviti": [3, 4, 5, 7, 10], "grayscal": [3, 4, 5, 7, 10], "greater": 12, "grep": 2, "grid": [0, 3, 4, 5, 7, 10, 11, 12], "grid_anchor": [3, 4, 5, 7, 10, 11], "grid_bbox": [3, 4, 5, 7, 10, 11], "grid_columnconfigur": [3, 4, 5, 7, 10, 11], "grid_configur": [3, 4, 5, 7, 10, 11], "grid_forget": [3, 4, 5, 7, 10, 11], "grid_info": [3, 4, 5, 7, 10, 11], "grid_loc": [3, 4, 5, 7, 10, 11], "grid_propag": [3, 4, 5, 7, 10, 11], "grid_remov": [3, 4, 5, 7, 10, 11], "grid_rowconfigur": [3, 4, 5, 7, 10, 11], "grid_siz": [3, 4, 5, 7, 10, 11], "grid_slav": [3, 4, 5, 7, 10, 11], "gridlin": 11, "group": [0, 3, 4, 5, 6, 7, 8, 9, 11], "group1": 9, "grow": [3, 4, 5, 7, 10], "gui": [1, 8, 11], "gui_script": [0, 11], "guid": 1, "gvar": 5, "gy": 9, "ha": [3, 4, 5, 7, 10, 12], "hand": [0, 6, 7, 9], "handler": 10, "happen": 12, "has_cycl": [0, 1, 9, 11], "have": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11], "hdf5": 2, "hdf5_dir": 2, "head": 2, "height": [3, 4, 5, 7, 10], "helper": 0, "hemispher": 0, "henc": [6, 12], "here": 6, "hide": 10, "hidetip": [10, 11], "high": 2, "higher": [3, 4, 5, 7, 10], "highlightbackground": [3, 4, 5, 7, 10], "highlightcolor": [3, 4, 5, 7, 10], "histori": [3, 4, 5, 6, 7, 8, 9, 10, 11], "home": 2, "homebrew": 2, "homebrew_prefix": 2, "hook": 10, "horizont": 10, "hover": 10, "hover_delai": 10, "hovertip": 10, "how": [3, 4, 5, 7, 9, 10], "howev": 2, "html": 10, "http": [2, 9, 10, 12], "i": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12], "icon": 8, "id": [0, 2, 3, 4, 5, 7, 10], "ident": 12, "identifi": [0, 3, 4, 5, 6, 7, 9, 10, 11], "idl": [0, 3, 4, 5, 7, 10], "idlelib": 10, "ifil": 9, "imag": [0, 3, 4, 5, 7, 8, 10, 11], "image_nam": [3, 4, 5, 7, 10, 11], "image_typ": [3, 4, 5, 7, 10, 11], "imap": 10, "implement": 9, "import": [0, 9, 12], "in_": [3, 4, 5, 7, 10], "includ": [0, 2, 6, 9, 11], "includeid": [3, 4, 5, 7, 10], "index": [3, 4, 5, 7, 9, 10, 12], "indic": [3, 4, 5, 7, 10], "individu": [0, 6, 9, 11], "info": [3, 4, 5, 7, 10, 11], "info_patchlevel": [3, 4, 5, 7, 10, 11], "inform": [3, 4, 5, 7, 10], "ini": 10, "initi": [0, 10, 11], "initialis": 4, "input": [3, 4, 5, 7, 9, 10, 12], "inquir": [3, 4, 5, 7, 9, 10], "inra": [3, 4, 5, 6, 7, 8, 9, 10], "insertbackground": [3, 4, 5, 7, 10], "insid": [3, 4, 5, 7, 10], "instal": [0, 1, 11], "instanc": [3, 4, 5, 6, 7, 8, 10], "instat": [3, 4, 5, 7, 10, 11], "instead": [0, 2, 5, 6], "institut": [3, 4, 5, 6, 7, 8, 9, 10], "instruct": [0, 11], "int": [5, 9, 10], "integ": [3, 4, 5, 7, 10], "integr": 0, "intel": 2, "interf": 2, "intern": [3, 4, 5, 7, 10], "interp": [3, 4, 5, 7, 10], "interpret": [3, 4, 5, 7, 10, 12], "intersect": 9, "intvar": [3, 4, 5, 7, 10], "inv_x": 10, "inv_xlbl": 10, "invert": [0, 10, 11], "invok": [3, 4, 5, 7, 10], "io": 12, "ipadi": [3, 4, 5, 7, 10], "ipadx": [3, 4, 5, 7, 10], "ipython": [0, 8, 12], "isfram": 5, "item": [3, 4, 5, 7, 10], "iter": 9, "its": [2, 3, 4, 5, 7, 9, 10], "iunlim": 5, "jan": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11], "jul": [0, 5, 8, 10], "julian": 12, "jun": [0, 5, 8, 9, 11], "jupyt": [0, 8], "just": 12, "keg": 2, "kei": [0, 3, 4, 5, 7, 10, 11], "keyboard": 0, "keypress": [3, 4, 5, 7, 10], "keyreleas": [3, 4, 5, 7, 10], "keysym": [3, 4, 5, 7, 10], "keyword": [3, 4, 5, 7, 9, 10], "know": 2, "kp_enter": 10, "kw": [3, 4, 5, 7, 10], "kwarg": [3, 4, 5, 7, 10], "l": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "label": [0, 6, 9, 10, 11], "labelwidth": 10, "lake": [0, 5, 11], "lambda": [9, 10], "larg": 12, "larger": [3, 4, 5, 7, 10, 12], "last": [3, 4, 5, 7, 9, 10, 12], "last_t": [5, 11], "lat": [0, 5, 6, 9, 11], "lat2d": 9, "latdim": 6, "later": 2, "latest": 2, "latitud": [5, 6, 9, 12], "latter": 12, "latvar": 6, "launch": 12, "layout": [0, 1, 3, 4, 5, 7, 11], "ldflag": 2, "leak": [3, 4, 5, 7, 10], "leav": [3, 4, 5, 7, 10], "left": [3, 4, 5, 6, 7, 9, 10, 12], "len": 9, "length": [3, 4, 5, 7, 9, 10], "less": 9, "let": [3, 4, 5, 7, 10], "level": [3, 4, 5, 7, 10], "lh": 6, "lib": 2, "libgeo": 2, "libproj": 2, "librari": [2, 3, 4, 5, 7, 10], "licens": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11], "lie": [3, 4, 5, 7, 10], "lift": [3, 4, 5, 7, 10, 11], "light": [3, 4, 5, 7, 10, 12], "like": [2, 6], "limit": 6, "line": [0, 1, 2, 7, 11], "link": 2, "linux": [0, 1, 11, 12], "list": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "list_intersect": [1, 9, 11], "local": [0, 2, 3, 4, 5, 7, 10], "locat": [3, 4, 5, 7, 10, 11], "lock": [3, 4, 5, 7, 10], "lon": [0, 5, 6, 9, 11, 12], "lon2d": 9, "londim": 6, "long": [3, 4, 5, 7, 10, 12], "long_nam": 0, "longer": 9, "longitud": [0, 5, 6, 9, 12], "lonvar": 6, "look": [3, 4, 5, 7, 10, 12], "loop": [3, 4, 5, 7, 10], "lower": [3, 4, 5, 7, 10, 11], "lslbl": 10, "lst1": 9, "lst2": 9, "ltcl8": 2, "ltk8": 2, "m": [0, 2, 3, 4, 5, 6, 7, 9, 10], "m1": [0, 2, 3, 4, 5, 7, 10], "m2": [3, 4, 5, 7, 10], "m3": [3, 4, 5, 7, 10], "m4": [3, 4, 5, 7, 10], "m5": [3, 4, 5, 7, 10], "macbook": 12, "maco": [0, 1, 10, 11, 12], "macu": [3, 4, 5, 6, 7, 8, 9, 10, 11], "made": 0, "mai": [0, 2, 3, 5, 6, 7, 8, 9, 11, 12], "main": [0, 3, 4, 5, 7, 8, 9, 10], "mainloop": [3, 4, 5, 7, 10, 11], "make": [0, 2, 5, 6, 11], "manag": [2, 3, 4, 5, 7, 10], "manual": 12, "map": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11], "marker": 12, "master": [3, 4, 5, 7, 9, 10], "match": [3, 4, 5, 7, 10], "matplotlib": [0, 2, 5, 9, 12], "matrix": 12, "matthia": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "max": [0, 9, 12], "maxim": 9, "maximum": [7, 9], "mc": [3, 4, 5, 6, 7, 8, 9, 10, 11], "mcuntz": [2, 12], "mean": [0, 3, 4, 5, 6, 7, 9, 10, 12], "median": [0, 9, 12], "memori": [3, 4, 5, 7, 10], "menu": [0, 3, 5, 10, 12], "menubutton": [3, 5, 10], "mesh": [3, 5, 12], "meshgrid": 9, "meta": [3, 4, 5, 7, 10], "method": [0, 3, 4, 5, 6, 7, 9, 10, 11], "might": [2, 12], "millisecond": [3, 4, 5, 7, 10], "min": [0, 9, 12], "miniconda": 2, "minim": [11, 12], "minimum": [0, 3, 4, 5, 7, 9, 10], "minmax_ylim": [7, 11], "minsiz": [3, 4, 5, 7, 10], "minu": 12, "miss": [0, 6, 8, 9], "missing_valu": [6, 8], "mit": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "mm": [3, 4, 5, 7, 10], "mod1": [3, 4, 5, 7, 10], "mod2": [3, 4, 5, 7, 10], "mod3": [3, 4, 5, 7, 10], "mod4": [3, 4, 5, 7, 10], "mod5": [3, 4, 5, 7, 10], "mode": [10, 12], "modifi": [3, 4, 5, 7, 10], "modul": [3, 4, 5, 6, 7, 8, 9, 10], "modularis": [0, 11], "month": 0, "more": [0, 2, 6, 11, 12], "most": 9, "mostli": 12, "motif": [3, 4, 5, 7, 10], "motion": [3, 4, 5, 7, 10], "mous": [3, 4, 5, 7, 10], "mousewheel": [3, 4, 5, 7, 10], "move": [0, 3, 5, 6, 7, 8, 11], "much": [3, 4, 5, 7, 10, 12], "multipl": [0, 3, 4, 5, 6, 7, 8, 9, 11, 12], "must": [2, 3, 4, 5, 7, 9, 10, 12], "my": 12, "m\u00fcller": 12, "n": [3, 4, 5, 7, 9, 10], "name": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11], "nametowidget": [3, 4, 5, 7, 10, 11], "nan": [6, 8, 9], "nanci": [3, 4, 5, 6, 7, 8, 9, 10], "nat": [6, 9], "nation": [3, 4, 5, 6, 7, 8, 9, 10], "navig": 12, "nc": [9, 12], "ncfile": 8, "ncvar": 9, "ncvcontour": [1, 6, 11], "ncview": [11, 12], "ncvmain": [1, 6, 8, 9, 11], "ncvmap": [1, 11], "ncvmethod": [0, 1, 9, 11], "ncvscatter": [1, 11], "ncvue": [0, 1, 2, 11], "ncvutil": [1, 6, 11], "ncvwidget": [1, 11], "ncvwin": 0, "ndarrai": [6, 9], "ndim": 9, "ndim1": 9, "nearest": 9, "need": [0, 2, 12], "needcleanup": [3, 4, 5, 7, 10], "netcdf": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11], "netcdf4": [2, 6, 8, 9], "netcdf_fil": 12, "netcdf_file1": 12, "netcdf_file2": 12, "new": [0, 3, 4, 5, 7, 9, 10, 11, 12], "newer": 0, "newli": [3, 4, 5, 7, 10], "newnetcdf": [3, 5, 7, 11], "newwin": 9, "next": [2, 3, 4, 5, 7, 10], "next_i": [7, 11], "next_t": [5, 11], "next_v": [5, 11], "next_z": [3, 11], "non": 6, "none": [3, 4, 5, 6, 7, 9, 10, 12], "normal": [6, 9, 12], "notat": 12, "note": [2, 12], "notebook": [0, 4], "nov": [0, 3, 4, 6, 7, 8, 9, 10, 11], "now": 0, "np": [6, 8, 9], "nrun_t": [5, 11], "nsew": [3, 4, 5, 7, 10], "nsoil": 9, "ntime": 9, "number": [3, 4, 5, 7, 10], "numer": [0, 3, 4, 5, 7, 10], "numpi": [0, 2, 6, 9], "nunlim": 5, "nw": [3, 4, 5, 7, 10], "o": [8, 11, 12], "object": 9, "occur": [3, 4, 5, 7, 10], "oct": [0, 5, 6, 11], "off": 12, "offer": 2, "offset": [3, 4, 5, 7, 10], "old": 2, "omit": [3, 4, 5, 7, 10], "onc": [2, 3, 4, 5, 7, 10], "one": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12], "ones": 9, "onli": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "onto": 6, "onward": 2, "open": [0, 2, 3, 5, 7, 8, 10, 11, 12], "openbla": 2, "oper": [0, 6, 12], "opt": 2, "opthead": 10, "optheadlabel1": 10, "optheadlabel2": 10, "optim": 2, "option": [0, 2, 3, 4, 5, 7, 8, 9, 10, 12], "option_add": [3, 4, 5, 7, 10, 11], "option_clear": [3, 4, 5, 7, 10, 11], "option_get": [3, 4, 5, 7, 10, 11], "option_readfil": [3, 4, 5, 7, 10, 11], "order": [3, 4, 5, 7, 10], "org": 10, "organis": 12, "origin": 12, "other": [0, 2, 3, 4, 5, 6, 7, 10, 12], "otherwis": [3, 4, 5, 6, 7, 9, 10], "out": 12, "output": [0, 6], "outsid": [3, 4, 5, 7, 10], "outsourc": 11, "over": [3, 4, 5, 7, 10], "overrid": [3, 4, 5, 7, 10], "overview": [3, 4, 5, 7, 10, 12], "own": [3, 4, 5, 7, 9, 10], "owner": [3, 4, 5, 7, 10], "pack": [3, 4, 5, 7, 10, 11], "pack_configur": [3, 4, 5, 7, 10, 11], "pack_forget": [3, 4, 5, 7, 10, 11], "pack_info": [3, 4, 5, 7, 10, 11], "pack_propag": [3, 4, 5, 7, 10, 11], "pack_slav": [3, 4, 5, 7, 10, 11], "packag": [0, 2], "package_data": 0, "pad": [3, 4, 5, 7, 10], "padi": [3, 4, 5, 7, 10], "padlabel": 10, "padx": [3, 4, 5, 7, 10], "page": [0, 11], "paid": [0, 2], "pair": 10, "pan": [11, 12], "panda": 10, "pane": 12, "panel": [0, 1, 3, 4, 5, 6, 7, 11], "panopli": [11, 12], "paramet": [3, 4, 5, 6, 7, 8, 9, 10], "parent": [3, 4, 5, 7, 10], "parenthes": 0, "partial": 9, "pass": [3, 4, 5, 7, 9, 10], "path": [0, 2], "pathnam": [3, 4, 5, 7, 10], "pattern": [3, 4, 5, 7, 10], "paus": 5, "pause_t": [5, 11], "pcolormesh": [0, 9], "pend": [3, 4, 7, 10], "per": [3, 4, 5, 7, 10], "percentil": 9, "period": 9, "photo": [3, 4, 5, 7, 10], "pictur": 12, "pip": [0, 2], "pixel": [3, 4, 5, 7, 10], "pkg_config_path": 2, "pkgconfig": 2, "place": [3, 4, 5, 7, 10, 11], "place_configur": [3, 4, 5, 7, 10, 11], "place_forget": [3, 4, 5, 7, 10, 11], "place_info": [3, 4, 5, 7, 10, 11], "place_slav": [3, 4, 5, 7, 10, 11], "platform": 0, "pleas": 2, "plot": [0, 3, 4, 5, 7, 8, 9, 12], "plt": 9, "png": [0, 11], "point": [3, 4, 5, 7, 9, 10, 12], "pointer": [3, 4, 5, 7, 9, 10], "pop": [2, 10], "posit": [3, 4, 5, 7, 10], "position_window": [10, 11], "possibl": [0, 2], "pour": [3, 4, 5, 6, 7, 8, 9, 10], "powershel": 2, "precis": [9, 12], "prefix": 2, "prepend": 10, "prerequisit": 2, "present": [6, 9, 12], "press": [3, 4, 5, 7, 10], "prev_i": [7, 11], "prev_t": [5, 11], "prev_v": [5, 11], "prev_z": [3, 11], "previou": [3, 4, 5, 7, 10], "primari": [3, 4, 5, 7, 10], "print": [0, 9, 11], "prioriti": [3, 4, 5, 7, 10], "privileg": 2, "pro": 12, "probabl": 2, "problem": 12, "procedur": 2, "process": [3, 4, 5, 7, 10], "processor": 2, "produc": 12, "program": 0, "proj": 2, "proj4": 0, "project": [2, 5, 12], "prompt": 2, "propag": [3, 4, 5, 7, 10, 11], "proper": 2, "properti": [3, 4, 5, 7, 10], "provid": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "prun_t": [5, 11], "pseudocolor": [3, 4, 5, 7, 10, 12], "ptp": [0, 9, 12], "public": 12, "pure": 0, "purpos": 1, "put": [0, 6], "pwd": 2, "py": [0, 10], "py_var": [3, 4, 5, 7, 10], "pydata": 10, "pyenv": 2, "pyinstal": 0, "pykdtre": 2, "pylab": 12, "pypi": [0, 2, 11], "pyplot": 0, "pyproject": [0, 11], "pyshp": 2, "pystd": 2, "python": [0, 2, 3, 4, 5, 7, 9, 10, 12], "python_configure_opt": 2, "pythonpath": 2, "qle": 9, "queri": [3, 4, 5, 7, 10], "question": 9, "quick": [1, 11], "quit": [3, 4, 5, 7, 10, 11], "r": 9, "rais": [3, 4, 5, 7, 10], "rang": [0, 3, 4, 5, 7, 9, 10], "rather": [0, 6, 10, 12], "raw": 2, "rdbend": [0, 11, 12], "rdylbu": 10, "re": [4, 10], "read": [0, 3, 4, 5, 7, 10, 11], "read_csv": 10, "readi": 12, "readthedoc": 0, "recherch": [3, 4, 5, 6, 7, 8, 9, 10], "recommend": 2, "recurs": [3, 4, 5, 7, 10], "redraw": [3, 5, 7, 11], "redraw_i": [7, 11], "redraw_y2": [7, 11], "redrawn": [3, 5, 7], "refer": 10, "region": 12, "regist": [3, 4, 5, 7, 10, 11], "rehash": 2, "reinit": [3, 5, 7, 11], "reinitialis": [3, 5, 7], "reinstal": 2, "rel": [3, 4, 5, 7, 10], "releas": [0, 2, 3, 4, 5, 7, 10], "relheight": [3, 4, 5, 7, 10], "reli": [2, 3, 4, 5, 7, 10], "reload": [3, 4, 5, 7, 10], "relwidth": [3, 4, 5, 7, 10], "relx": [3, 4, 5, 7, 10], "rememb": [3, 4, 5, 7, 10], "remov": [0, 2, 6, 9], "renam": 0, "repar": [3, 4, 5, 7, 10], "repeat": 5, "repeat_t": [5, 11], "replac": [3, 4, 5, 7, 9, 10, 11, 12], "repositori": 2, "repres": [3, 4, 5, 7, 10], "request": [3, 4, 5, 7, 10], "reset": [3, 5, 7], "resourc": [3, 4, 5, 7, 10], "resp": 9, "respect": 11, "retriev": [3, 4, 5, 7, 10], "return": [0, 3, 4, 5, 6, 7, 9, 10], "rgb": [3, 4, 5, 7, 10], "rh": 6, "right": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12], "ring": [3, 4, 5, 7, 10], "river": [0, 5, 11], "root": [3, 4, 5, 7, 8, 9, 10], "rooti": [3, 4, 5, 7, 10], "rootx": [3, 4, 5, 7, 10], "rotat": 12, "round": [3, 4, 5, 7, 10], "routin": [0, 7, 8], "row": [0, 3, 4, 5, 7, 10], "row2": [3, 4, 5, 7, 10], "rowcmap": 10, "rowconfigur": [3, 4, 5, 7, 10, 11], "rowlev": 10, "rowspan": [3, 4, 5, 7, 10], "rowwin": 9, "rowxyopt": 10, "rowzxi": 10, "run": [2, 5, 10, 12], "sai": 2, "same": [2, 3, 4, 5, 6, 7, 9, 10, 12], "scale": [5, 10], "scatter": [0, 1, 7, 9, 11], "schedul": [3, 4, 5, 7, 10, 11], "scheme": [3, 4, 5, 7, 10], "scipi": 2, "screen": [3, 4, 5, 7, 10], "script": [0, 12], "scrollbar": 10, "scroolbar": 10, "seaborn": 0, "sebastian": 12, "second": [0, 3, 4, 5, 6, 7, 10, 11, 12], "section": 0, "see": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "seem": 0, "select": [0, 3, 4, 5, 6, 7, 10, 12], "selectbackground": [3, 4, 5, 7, 10], "selectcolor": [3, 4, 5, 7, 10], "selected_cmap": [3, 5, 10, 11], "selected_i": [3, 7, 10, 11], "selected_lat": [5, 11], "selected_lon": [5, 11], "selected_proj": [5, 11], "selected_v": [5, 11], "selected_x": [3, 7, 11], "selected_y2": [7, 11], "selected_z": [3, 11], "selectforeground": [3, 4, 5, 7, 10], "selection_clear": [3, 4, 5, 7, 10, 11], "selection_get": [3, 4, 5, 7, 10, 11], "selection_handl": [3, 4, 5, 7, 10, 11], "selection_own": [3, 4, 5, 7, 10, 11], "selection_own_get": [3, 4, 5, 7, 10, 11], "selector": [0, 3, 5, 7], "self": [0, 3, 4, 5, 6, 7, 9, 10], "selvar": [1, 9, 11], "send": [3, 4, 5, 7, 10, 11], "sep": [0, 11], "separ": [0, 8, 11], "sepchar": [0, 9], "sequenc": [3, 4, 5, 7, 10], "server": [3, 4, 5, 7, 10], "set": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "set_axis_label": [1, 9, 11], "set_dim_i": [1, 6, 11], "set_dim_lat": [1, 6, 11], "set_dim_lon": [1, 6, 11], "set_dim_var": [1, 6, 11], "set_dim_x": [1, 6, 11], "set_dim_y2": [1, 6, 11], "set_dim_z": [1, 6, 11], "set_miss": [1, 6, 9, 11], "set_tstep": [5, 11], "set_unlim": [5, 11], "setup": 0, "setuptools_scm": 0, "setvar": [3, 4, 5, 7, 10, 11], "sever": [3, 4, 5, 6, 7, 10, 12], "sh": 2, "shall": [3, 4, 5, 7, 9, 10], "shape": [2, 5, 9], "shift": [3, 4, 5, 7, 10], "shortli": [3, 4, 5, 7, 10], "should": [2, 3, 4, 5, 7, 10], "showcont": [10, 11], "showtip": [10, 11], "sibl": [3, 4, 5, 7, 10], "side": [3, 4, 5, 6, 7, 9, 10], "sierra": 2, "silicon": [0, 2], "similar": [0, 6], "simpl": [0, 10], "simpli": [2, 9], "singl": [3, 4, 5, 7, 9, 10], "six": 2, "size": [0, 3, 4, 5, 7, 8, 9, 10, 11, 12], "slave": [3, 4, 5, 7, 10, 11], "slice": [0, 6, 9, 11], "slider": [3, 4, 5, 7, 10, 12], "slightli": [11, 12], "slower": 12, "small": 9, "so": [0, 10], "softwar": 2, "soil": 12, "solid": 12, "some": 12, "someth": [3, 5, 7], "sometim": 12, "sourc": [1, 3, 4, 5, 6, 7, 8, 9, 10], "southern": 0, "space": [0, 3, 4, 5, 7, 10, 11], "span": [3, 4, 5, 7, 10], "spec": [3, 4, 5, 7, 10], "specif": 12, "specifi": [3, 4, 5, 7, 9, 10], "sphinx_book_them": 0, "spin": 10, "spinbox": [0, 3, 5, 6, 7, 9, 10, 11, 12], "spinbox_valu": [1, 9, 11], "spinned_i": [3, 7, 11], "spinned_lat": [5, 11], "spinned_lon": [5, 11], "spinned_v": [5, 11], "spinned_x": [3, 7, 11], "spinned_y2": [7, 11], "spinned_z": [3, 11], "squeez": [0, 6, 9], "src": [0, 3, 5, 7, 8, 11], "stabl": 0, "stack": [3, 4, 5, 7, 10], "stackoverflow": 9, "standalon": [0, 2, 8, 11], "standard": [8, 9, 12], "standard_nam": 0, "start": [3, 4, 5, 6, 7, 8, 10], "state": [3, 4, 5, 7, 10, 11], "statement": 0, "statespec": [3, 4, 5, 7, 10], "staticcolor": [3, 4, 5, 7, 10], "staticgrai": [3, 4, 5, 7, 10], "statu": [3, 4, 5, 7, 10], "std": [0, 6, 9, 12], "step": 5, "stick": [3, 4, 5, 7, 10], "sticki": [3, 4, 5, 7, 10], "str": [5, 8, 9, 10], "string": [0, 3, 4, 5, 6, 7, 8, 9, 10], "stringvar": [3, 4, 5, 7, 10], "structur": [0, 12], "style": [0, 10, 12], "sub": 10, "submit": [0, 9], "subpackag": 1, "subplot": 9, "subset": [3, 4, 5, 7, 10], "subst": [3, 4, 5, 7, 10], "sudo": 2, "sum": [0, 9, 12], "sun": 0, "suppli": 9, "support": [0, 12], "suppos": 12, "suppress": 2, "sure": 2, "switch": [0, 12], "symbol": 12, "system": [0, 2], "t": 2, "taglist": [3, 4, 5, 7, 10], "take": [0, 3, 4, 5, 6, 7, 10, 12], "takefocu": [3, 4, 5, 7, 10], "target": [3, 4, 5, 7, 10, 11, 12], "taskbar": 8, "tcl": [0, 2, 3, 4, 5, 7, 10], "tcltk": 2, "templat": 12, "test": [3, 4, 5, 7, 9, 10, 11, 12], "text": [3, 5, 9, 10], "textvari": 10, "than": [0, 6, 9, 10, 11, 12], "thei": [3, 4, 5, 7, 10], "them": 11, "theme": [0, 2, 3, 5, 7, 8, 11, 12], "theme_us": 0, "thenc": 2, "thi": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "third": [3, 4, 5, 7, 10], "though": [2, 12], "three": [2, 7, 12], "through": [3, 4, 5, 7, 10], "tick": 12, "time": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12], "tip": 10, "titlebar": 8, "tk": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12], "tk_bisqu": [3, 4, 5, 7, 10, 11], "tk_focusfollowsmous": [3, 4, 5, 7, 10, 11], "tk_focusnext": [3, 4, 5, 7, 10, 11], "tk_focusprev": [3, 4, 5, 7, 10, 11], "tk_setpalett": [3, 4, 5, 7, 10, 11], "tk_silence_deprec": 2, "tk_strictmotif": [3, 4, 5, 7, 10, 11], "tkagg": 12, "tkfont": 10, "tkinter": [3, 4, 5, 7, 10], "tkrais": [3, 4, 5, 7, 10, 11], "tlabel": 10, "tname": 6, "toml": [0, 11], "tool": 12, "toolbar": 12, "tooltip": [0, 1, 6, 10, 11], "top": [3, 4, 5, 7, 10, 12], "toplevel": [0, 3, 4, 5, 7, 8, 10], "track": 10, "transpos": 0, "tree": 10, "treeview": [1, 10, 11], "tri": [3, 4, 5, 7, 10], "trigger": [3, 4, 5, 7, 10], "tripl": [3, 4, 5, 7, 10], "troughcolor": [3, 4, 5, 7, 10], "true": [3, 4, 5, 7, 9, 10, 12], "truecolor": [3, 4, 5, 7, 10], "try": [3, 4, 5, 7, 10], "tstep": 5, "tstep_t": [5, 11], "tt": 10, "ttk": [0, 2, 6, 9, 10], "tupl": [3, 4, 5, 7, 9, 10], "tvar": 6, "twinx": 9, "two": [6, 7, 9], "type": [0, 3, 4, 5, 6, 7, 9, 10, 12], "ubuntu": 2, "unam": 2, "unbind": [3, 4, 5, 7, 10, 11], "unbind_al": [3, 4, 5, 7, 10, 11], "unbind_class": [3, 4, 5, 7, 10, 11], "unbound": [3, 4, 5, 7, 10], "uncheck": [3, 5, 7], "uncom": 2, "under": [3, 4, 5, 7, 10, 12], "underli": 12, "underlin": 10, "unidentifi": 2, "uninstal": 2, "unit": [0, 9, 11], "univers": 2, "unlik": [11, 12], "unlimit": [0, 4, 5, 6, 11], "unmap": [3, 4, 5, 7, 10], "unschedul": [10, 11], "untick": 12, "until": [3, 4, 5, 7, 10], "up": [2, 3, 4, 5, 7, 8, 10], "updat": [0, 2, 3, 4, 5, 7, 10, 11], "update_idletask": [3, 4, 5, 7, 10, 11], "upgrad": 2, "upper": [3, 4, 5, 7, 10], "url": 10, "us": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12], "usag": 1, "user": [2, 3, 4, 5, 7, 10], "usr": 2, "utf8_str": [3, 4, 5, 7, 10], "util": [0, 9, 11], "v": 5, "v0": [0, 9], "v0_8": 0, "v1": [0, 11], "v2": [0, 11], "v3": [0, 11], "v4": [0, 11], "valid": [0, 3, 4, 5, 7, 10], "vallei": 0, "valu": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11], "var": [0, 5, 6, 9, 12], "varabl": 6, "vardim": 9, "vardim2var": [1, 5, 9, 11], "variabl": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12], "varianc": [9, 12], "varieti": 12, "variou": [3, 5, 7], "veget": 0, "vendor": [3, 4, 5, 7, 10], "vendorvers": [3, 4, 5, 7, 10], "veri": [2, 3, 4, 5, 7, 10, 12], "version": [0, 2, 3, 4, 5, 7, 10, 11], "vertic": 10, "via": [0, 2, 3, 5, 7, 8], "view": [1, 11], "virtual": [2, 3, 4, 5, 7, 10], "virtualenv": 2, "visibl": [3, 4, 5, 7, 10], "visual": [3, 4, 5, 7, 10, 11], "vmax": 5, "vmin": 5, "vy": 9, "w_soil": 9, "wa": [0, 3, 4, 5, 6, 7, 8, 9, 10, 12], "wai": 2, "wait": [3, 4, 5, 7, 10], "wait_vari": [3, 4, 5, 7, 10, 11], "wait_vis": [3, 4, 5, 7, 10, 11], "wait_window": [3, 4, 5, 7, 10, 11], "waitvar": [3, 4, 5, 7, 10, 11], "want": [2, 12], "warn": 2, "water": 12, "we": [2, 6], "web": 10, "weight": [3, 4, 5, 7, 10], "well": [2, 3, 5, 6, 7, 12], "were": [0, 3, 4, 5, 6, 7, 10, 12], "what": [3, 5, 7], "wheel": [0, 11], "when": [0, 3, 4, 5, 7, 10, 12], "whenev": [3, 4, 5, 7, 10], "where": [3, 4, 5, 7, 9, 10, 12], "whether": [3, 4, 5, 7, 10], "which": [0, 3, 4, 5, 6, 7, 9, 10, 12], "while": [2, 3, 4, 5, 6, 7, 8, 9, 10], "widget": [3, 4, 5, 6, 7, 8, 9, 10], "width": [3, 4, 5, 7, 9, 10], "widthxheight": [3, 4, 5, 7, 10], "window": [0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12], "winfo_atom": [3, 4, 5, 7, 10, 11], "winfo_atomnam": [3, 4, 5, 7, 10, 11], "winfo_cel": [3, 4, 5, 7, 10, 11], "winfo_children": [3, 4, 5, 7, 10, 11], "winfo_class": [3, 4, 5, 7, 10, 11], "winfo_colormapful": [3, 4, 5, 7, 10, 11], "winfo_contain": [3, 4, 5, 7, 10, 11], "winfo_depth": [3, 4, 5, 7, 10, 11], "winfo_exist": [3, 4, 5, 7, 10, 11], "winfo_fpixel": [3, 4, 5, 7, 10, 11], "winfo_geometri": [3, 4, 5, 7, 10, 11], "winfo_height": [3, 4, 5, 7, 10, 11], "winfo_i": [3, 4, 5, 7, 10, 11], "winfo_id": [3, 4, 5, 7, 10, 11], "winfo_interp": [3, 4, 5, 7, 10, 11], "winfo_ismap": [3, 4, 5, 7, 10, 11], "winfo_manag": [3, 4, 5, 7, 10, 11], "winfo_nam": [3, 4, 5, 7, 10, 11], "winfo_par": [3, 4, 5, 7, 10, 11], "winfo_pathnam": [3, 4, 5, 7, 10, 11], "winfo_pixel": [3, 4, 5, 7, 10, 11], "winfo_pointeri": [3, 4, 5, 7, 10, 11], "winfo_pointerx": [3, 4, 5, 7, 10, 11], "winfo_pointerxi": [3, 4, 5, 7, 10, 11], "winfo_reqheight": [3, 4, 5, 7, 10, 11], "winfo_reqwidth": [3, 4, 5, 7, 10, 11], "winfo_rgb": [3, 4, 5, 7, 10, 11], "winfo_rooti": [3, 4, 5, 7, 10, 11], "winfo_rootx": [3, 4, 5, 7, 10, 11], "winfo_screen": [3, 4, 5, 7, 10, 11], "winfo_screencel": [3, 4, 5, 7, 10, 11], "winfo_screendepth": [3, 4, 5, 7, 10, 11], "winfo_screenheight": [3, 4, 5, 7, 10, 11], "winfo_screenmmheight": [3, 4, 5, 7, 10, 11], "winfo_screenmmwidth": [3, 4, 5, 7, 10, 11], "winfo_screenvisu": [3, 4, 5, 7, 10, 11], "winfo_screenwidth": [3, 4, 5, 7, 10, 11], "winfo_serv": [3, 4, 5, 7, 10, 11], "winfo_toplevel": [3, 4, 5, 7, 10, 11], "winfo_view": [3, 4, 5, 7, 10, 11], "winfo_visu": [3, 4, 5, 7, 10, 11], "winfo_visualid": [3, 4, 5, 7, 10, 11], "winfo_visualsavail": [3, 4, 5, 7, 10, 11], "winfo_vrootheight": [3, 4, 5, 7, 10, 11], "winfo_vrooti": [3, 4, 5, 7, 10, 11], "winfo_vrootwidth": [3, 4, 5, 7, 10, 11], "winfo_vrootx": [3, 4, 5, 7, 10, 11], "winfo_width": [3, 4, 5, 7, 10, 11], "winfo_x": [3, 4, 5, 7, 10, 11], "within": [0, 2, 3, 4, 5, 7, 10, 11, 12], "without": [0, 3, 4, 5, 7, 10, 11, 12], "work": [0, 2, 3, 4, 5, 7, 10, 11, 12], "would": [3, 4, 5, 6, 7, 10], "wrapper": 2, "write": [3, 5, 7], "writeabl": 10, "written": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "wrong": 0, "x": [0, 3, 4, 5, 6, 7, 9, 10, 11, 12], "x11": [3, 4, 5, 7, 10], "xd0": 9, "xdtype": 9, "xlbl": 10, "xmajorrminor": [3, 4, 5, 7, 10], "xscroll": 10, "xx": [6, 9], "xz": 2, "y": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11], "y2": [0, 6, 9], "y2dtype": 9, "yd": 9, "ydtype": 9, "year": 0, "ylab": 9, "ylim": 7, "ylim2": 7, "you": [2, 3, 4, 5, 7, 10, 12], "your": [2, 12], "yscroll": 10, "yy": 9, "yy2": 9, "z": [0, 2, 3, 6, 9], "zip_dim_name_length": [1, 9, 11], "zmax": [0, 3], "zmin": [0, 3], "zoom": [7, 11, 12], "zsh": 2, "zz": 9}, "titles": ["Changelog", "Contents", "Installation", "ncvue.ncvcontour", "ncvue.ncvmain", "ncvue.ncvmap", "ncvue.ncvmethods", "ncvue.ncvscatter", "ncvue.ncvue", "ncvue.ncvutils", "ncvue.ncvwidgets", "API", "ncvue - A GUI to view netCDF files"], "titleterms": {"A": 12, "about": 12, "api": 11, "binari": 2, "build": 2, "changelog": 0, "content": 1, "contour": 12, "depend": 2, "distribut": 2, "file": 12, "from": 2, "gener": 12, "gui": 12, "guid": 12, "instal": 2, "layout": 12, "licens": 12, "line": 12, "linux": 2, "maco": 2, "map": 12, "ncvcontour": 3, "ncvmain": 4, "ncvmap": 5, "ncvmethod": 6, "ncvscatter": 7, "ncvue": [3, 4, 5, 6, 7, 8, 9, 10, 12], "ncvutil": 9, "ncvwidget": 10, "netcdf": 12, "panel": 12, "purpos": 11, "quick": 12, "scatter": 12, "sourc": 2, "subpackag": 11, "usag": 12, "view": 12, "window": 2}}) \ No newline at end of file diff --git a/docs/src/conf.py b/docs/src/conf.py index 0f7e368..70f8159 100644 --- a/docs/src/conf.py +++ b/docs/src/conf.py @@ -182,6 +182,7 @@ def setup(app): "use_issues_button": True, "use_repository_button": True, "use_download_button": True, + "navigation_with_keys": False, } # # Add any paths that contain custom static files (such as style sheets) here, # # relative to this directory. They are copied after the builtin static files, @@ -260,20 +261,20 @@ def setup(app): # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { - "Python": ("https://docs.python.org/3/", None), - "NumPy": ("https://numpy.org/doc/stable/", None), - "SciPy": ("https://docs.scipy.org/doc/scipy/reference/", None), - "matplotlib": ("https://matplotlib.org/stable/", None), - "Pandas": ("https://pandas.pydata.org/docs/", None), - "cython": ("https://cython.readthedocs.io/en/latest/", None), - "cftime": ("https://unidata.github.io/cftime/", None), - # "netcdf4-python": ("https://unidata.github.io/netcdf4-python/", None), - "openpyxl": ("https://openpyxl.readthedocs.io/en/stable/", None), - "Sphinx": ("https://www.sphinx-doc.org/en/master/", None), - "schwimmbad": ("https://schwimmbad.readthedocs.io/en/latest/", None), - "mpi4py": ("https://mpi4py.readthedocs.io/en/latest/", None), - "emcee": ("https://emcee.readthedocs.io/en/latest/", None), - "partialwrap": ("https://mcuntz.github.io/partialwrap/html/", None), - "pyeee": ("https://pyeee.readthedocs.io/en/latest/", None), - "hesseflux": ("https://mcuntz.github.io/hesseflux/html/", None), + "Python": ("https://docs.python.org/3/", None), + "NumPy": ("https://numpy.org/doc/stable/", None), + "SciPy": ("https://docs.scipy.org/doc/scipy/", None), + "matplotlib": ("https://matplotlib.org/stable/", None), + "Pandas": ("https://pandas.pydata.org/docs/", None), + "cython": ("https://cython.readthedocs.io/en/latest/", None), + "cftime": ("https://unidata.github.io/cftime/", None), + # "netcdf4-python": ("https://unidata.github.io/netcdf4-python/", None), + "openpyxl": ("https://openpyxl.readthedocs.io/en/stable/", None), + "Sphinx": ("https://www.sphinx-doc.org/en/master/", None), + "schwimmbad": ("https://schwimmbad.readthedocs.io/en/latest/", None), + "mpi4py": ("https://mpi4py.readthedocs.io/en/latest/", None), + "emcee": ("https://emcee.readthedocs.io/en/latest/", None), + "partialwrap": ("https://mcuntz.github.io/partialwrap/html/", None), + "pyeee": ("https://pyeee.readthedocs.io/en/latest/", None), + "hesseflux": ("https://mcuntz.github.io/hesseflux/html/", None), } diff --git a/src/ncvue/ncvmap.py b/src/ncvue/ncvmap.py index d6625ec..4072826 100644 --- a/src/ncvue/ncvmap.py +++ b/src/ncvue/ncvmap.py @@ -37,6 +37,8 @@ * Move themes/ and images/ back to src/ncvue/, Feb 2024, Matthias Cuntz * Use matplotlib.colormaps[name] instead of matplotlib.colormaps.get_cmap(name), Jul 2024, Matthias Cuntz + * Use draw_idle instead of draw in update method for faster animation, + Jul 2024, Matthias Cuntz """ import os @@ -1365,7 +1367,8 @@ def redraw(self): def update(self, frame, isframe=False): """ - Updates data of the current the plot. + Updates data of the current plot. + """ if self.anim_first: self.anim.event_source.stop() @@ -1456,5 +1459,5 @@ def update(self, frame, isframe=False): vmin=self.ivmin, vmax=self.ivmax, cmap=self.icmap, extend=self.iextend, transform=self.itrans) - self.canvas.draw() + self.canvas.draw_idle() return self.cc, diff --git a/src/ncvue/ncvue.py b/src/ncvue/ncvue.py index 5b67bf0..d237062 100644 --- a/src/ncvue/ncvue.py +++ b/src/ncvue/ncvue.py @@ -32,6 +32,8 @@ * Move themes/ and images/ directories from src/ncvue/ to src/ directory, Jan 2024, Matthias Cuntz * Move themes/ and images/ back to src/ncvue/, Feb 2024, Matthias Cuntz + * Change formatting of file string for multiple files, + Jul 2024, Matthias Cuntz """ import os @@ -186,7 +188,8 @@ def ncvue(ncfile=[], miss=np.nan): for ii, nn in enumerate(ncfile): top.fi.append(nc.Dataset(nn, 'r')) if len(ncfile) > 1: - top.groups.append(f'file{ii:03d}') + nnc = np.ceil(np.log10(len(ncfile))).astype(int) + top.groups.append(f'file{ii:0{nnc}d}') # Check groups if len(ncfile) == 1: top.groups = list(top.fi[0].groups.keys()) @@ -194,8 +197,8 @@ def ncvue(ncfile=[], miss=np.nan): for ii, nn in enumerate(ncfile): if len(list(top.fi[ii].groups.keys())) > 0: print(f'Either multiple files or one file with groups' - f' allowed as input. Multiple files and file {nn}' - f' has groups.') + f' allowed as input. Multiple files given but file' + f' {nn} has groups.') for fi in top.fi: fi.close() top.quit()