GithubHelp home page GithubHelp logo

cdat / vcs Goto Github PK

View Code? Open in Web Editor NEW
19.0 17.0 13.0 18.01 MB

Visualization Control System

Python 29.89% CSS 0.02% JavaScript 0.08% Jupyter Notebook 69.97% Makefile 0.05%
visualization python earthscience netcdf cdat opensource vtk matplotlib

vcs's Introduction

VCS (Visualization Control System)

⚠️ WARNING: Maintenance-only mode until around the end of 2023.
The CDAT library is now in maintenance-only mode, with plans for deprecation and cease of support around the end of calendar year 2023. Until this time, the dependencies for specific CDAT packages (cdms2, cdat_info, cdutil, cdtime, genutil, libcdms) will be monitored to ensure they build and install in Conda environments. We currently support Python versions 3.7, 3.8, 3.9, and 3.10. Unfortunately, feature requests and bug fixes will no longer be addressed.
If you are interested in an alternative solution, please check out the xarray and xCDAT - Xarray Extended With Climate Data Analysis Tools projects.

The Visualization Control System (VCS) is expressly designed to meet the needs of scientific community. VCS allows wide-ranging changes to be made to the data display, provides for hardcopy output, and includes a means for recovery of a previous display.

In the VCS model, the data display is defined by a trio of named object sets, designated the “primary objects” (or “primary elements”). These include:

  • Data Ingestion: The data, which drives the visualization is ingested into the system via cdms2 or other numeric modules such as numpy;.
  • Graphics Method: The graphics method, which specifies the display technique.
  • Template: The picture template, which determines the appearance of each segment of the display. Tables for manipulating these primary objects are stored in VCS for later recall and possible use.

In addition, detailed specification of the primary objects’ attributes is provided by eight “secondary objects” (or secondary elements”):

  • colormap: Specification of combinations of 256 available colors
  • fill area: Style, style index, and color index
  • format: Specifications for converting numbers to display strings
  • line: Line type, width and color index
  • list: A sequence of pairs of numerical and character values
  • marker: Marker type, size, and color index
  • text: Text font type, character spacing, expansion and color index
  • text orientation: Character height, angle, path, and horizontal/vertical alignment

By combining primary and secondary objects in various ways (either at the command line or in a program), the VCS user can comprehensively diagnose and intercompare climate model simulations. VCS provides capabilities to:

  • View, select and modify attributes of data variables and of their dimensions
  • Create and modify existing template attributes and graphics methods
  • Save the state-of-the-system as a script to be run interactively or in a program
  • Save a display as a Computer Graphics Metafile (CGM), GIF, Postscript, Sun Raster, or Encapsulated Postscript file
  • Perform grid transformations and compute new data variables
  • Create and modify color maps
  • Zoom into a specified portion of a display
  • Change the orientation (portrait vs. landscape) or size (partial vs. full-screen) of a display
  • Animate a single data variable or more than one data variable simultaneously
  • Display data in various geospatial projections

CircleCI Coverage Status

Installation

VCS is installed through Conda, you can find an installation guide here

conda create -n cdat -c conda-forge -c cdat vcs

For headless systems, mesalib needs to be installed as well.

conda create -n cdat -c conda-forge -c cdat vcs mesalib

Documentation

Visit the VCS User Guide to find details on usage.

Tutorials

View the various tutorials to see some examples of VCS usage. Some additional tutorials can be found on the CDAT tutorial page.

Developers

Many tasks have been automated using a Makefile. See the targets and variables sections for details.

Targets

  • conda-info: Activates conda environment and executes conda info.
  • conda-list: Activates conda environment and executes conda list.
  • setup-build: Uses conda-recipes to setup conda environment to build package.
  • setup-tests: Creates environment to run tests.
  • conda-rerender: Uses conda-recipes and rerenders conda recipe.
  • conda-build: Builds conda packages.
  • conda-upload: Uploads conda package.
  • conda-dump-env: Dumps conda env using conda list --explicit.
  • get-testdata: Clones uvcdat testdata.
  • run-tests: Runs tests.
  • run-doc-test: Runs doc tests.
  • run-coveralls: Runs coveralls tests.

Variables

  • conda_env: Name of the conda environment to use.
  • last_stable: Package version.
  • branch: Branch to build from.
  • extra_channels: Extra conda channels to use while building.
  • conda: Path to the conda executable.
  • artifact_dir: Directory to store artifacts.
  • copy_conda_package: Will copy the output from conda build.

VCS Model

VCS Allows scientists to produce highly customized plots. Everything can be precisely and logically controlled, without any guessing game

Essentially a vcs plot can be broken down into three parts

WHAT is plotted (e.g data and labels) HOW it is rendered (isolines, boxfill, isofill, vectors, etc…) WHERE (location on the page each elements is to be plotted)

What

This is the scientific piece of information that the user is trying to represent for others (or self) to understand. It can be as raw as a simple numpy object. But it is recommended to use CDMS2.

How

This description of the data representation, at the highest level it is a “graphics method” i.e boxfill, isofill, vectors, streamlines, line plot, etc… But it also contains information to further control these plot types, e.g which colors to use, which levels, lines thickness, etc…

Graphic methods also describe how axes and labels show be represented (e.g which axes values to show and which text to use for it, the user might want to show the -20. longitude represented as 20S or the date 2020-01-15 shown as Jan 2020

Where

This is the most complicated part of VCS but also one of the most powerful. This controls precisely the location of every component on the plot, these control objects are called templates. Templates also contain one exception to the WHAT/HOW/WHERE rule as they control texts information, albeit via primary objects.

vcs's People

Contributors

aashish24 avatar arulalant avatar chaosphere2112 avatar charlesdoutriaux avatar cjh1 avatar dakoop avatar danlipsa avatar doutriaux1 avatar downiec avatar durack1 avatar forsyth2 avatar hvo avatar james-crean avatar jasonb5 avatar jccosta avatar lee1043 avatar linamuryanto avatar muryanto1 avatar painter1 avatar remram44 avatar sankhesh avatar scottwittenburg avatar thomasmaxwell avatar tomvothecoder avatar williams13 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

vcs's Issues

Projections and Secondaries don't get along

I'm playing with a technique to do a polar 1D plot in VCS, and I ran into some issues along the way. The biggest issue is that attempting to use a projection on a secondary object (which is something the API supports) doesn't really work, at all.

A simple test case:

import vcs
line = vcs.createline()
line.projection = "polar"
line.worldcoordinate = [-180, 180, -90, 90]
line.viewport = [.25, .75, .25, .75]
line.x = [-180, 180]
line.y = [90, 90]
canvas = vcs.init()
canvas.plot(line)

which gives you a blank canvas.

This seemed odd to me, since we do essentially that exact line when plotting a polar plot of a 2D variable (via the template.box1 attribute).

import vcs, cdms2
f = cdms2.open(vcs.sample_data + '/clt.nc')
s = f('clt')
canvas = vcs.init()
boxfill = vcs.getboxfill("polar")
empty_template = vcs.createtemplate()
empty_template.blank()
empty_template.box1.priority = 1
canvas.plot(s, empty_template, boxfill)

circle

I inserted some code to dump the attributes of the line object being generated for that template, and got this:

 ----------Line (Tl) member (attribute) listings ----------
secondary method = Tl
name = __line_591065525709696
type = ['solid']
width = [1.0]
color = [1]
priority = 1
viewport = [0.2766584621956789, 0.7233415266284211, 0.259999990463, 0.860000014305]
worldcoordinate = [-180.3333333325, 179.6666666625, -90.0, 90.0]
x = [[-180.3333333325, 179.6666666625], [-180.3333333325, 179.6666666625]]
y = [[90.0, 90.0], [-90.0, -90.0]]
projection = polar
colormap = None

I tried assigning those exact values to a line and plotting it, but it still failed to produce any output.

I dug into the VTK objects actually being assembled, iterated across all of the points created, and still, everything was the same for both ways. After a bunch of spelunking through misc. VTK objects, I discovered the the bounds on the actors were set differently.

It turns out that the plot function will try and grab a "vtk_backend_grid" and pass it to this code in fitToViewport; when we plot the template, vtk_backend_grid is passed as a kwarg, but when we plot the line straight-up, we use the Xrg and Yrg values derived from the worldcoordinate attribute on the line object.

We definitely need to be able to correctly project stuff without plotting a variable as part of the process, so this is in the "bug" category.

Migrated from: CDAT/cdat#1965

gettextextent broken?

In [1]: t=x.createtext()

In [2]: t.string = "Hello"

In [3]: t.string
Out[3]: ['Hello']

In [4]: x.open()

In [5]: x.gettextextent(t)
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-5-33453cf4a74f> in <module>()
----> 1 x.gettextextent(t)

/Users/doutriaux1/anaconda2/envs/2.6-42-gaa9dc08/lib/python2.7/site-packages/vcs/Canvas.pyc in gettextextent(self, textobject)
   2178         To = textobject.To_name
   2179         Tt = textobject.Tt_name
-> 2180         return self.backend.gettextextent(To, Tt)
   2181 
   2182     def match_color(self, color, colormap=None):  # noqa

/Users/doutriaux1/anaconda2/envs/2.6-42-gaa9dc08/lib/python2.7/site-packages/vcs/VTKPlots.pyc in gettextextent(self, textorientation, texttable)
   1270         dpi = self.renWin.GetDPI()
   1271 
-> 1272         length = max(len(texttable.string), len(texttable.x), len(texttable.y))
   1273 
   1274         strings = texttable.string + [texttable.string[-1]] * (length - len(texttable.string))

TypeError: object of type 'NoneType' has no len()

vcs.getxyvsy() doesn't get the default object

screen shot 2016-08-30 at 4 18 38 pm
In manageElements.py, the get functions for 1d objects don't work because they assume the default objects are called 'default_xyvsy' (or 'default_yxvsx, etc.).

When I do a Canvas.show(), the default names for the 1d objects have an extra _ at the end of the name ('default_xyvsy_').

I would assume we want the default object to simply be called 'default_whatever' without the extra underscore.

@doutriaux1 @chaosphere2112

Migrated from: CDAT/cdat#2114

Ocean data masks not displaying correctly (VCS)

The ocean land/sea masks are not displaying properly in VCS - contrast the attached VCS output (first) and the same data plotted using ferret (second).

The file used is: /cmip5_css02/data/cmip5/output1/CSIRO-BOM/ACCESS1-0/1pctCO2/fx/ocean/fx/r0i0p0/areacello/1/areacello_fx_ACCESS1-0_1pctCO2_r0i0p0.nc
cmip5 access1-0 1pctco2 r0i0p0 fx ocn fx areacello ver-1
cmip5 access1-0 1pctco2 r0i0p0 fx ocn fx areacello ver-1-ferret

Migrated from: CDAT/cdat#1832

Closing a canvas does not work properly if more than one canvas is open.

The following script opens 4 canvases, plots the same fillarea and closes the canvases one at a time.
The canvases get cleared but not closed. This does not work on Linux but works on Mac.

import vcs
import sys
import vtk

f=vcs.createfillarea()
f.x=[.2,.5,.8]
f.y=[.2,.8,.2]
f.color=["red"]

x=vcs.init()
x.plot(f)

y=vcs.init()
y.plot(f)

z=vcs.init()
z.plot(f)

w=vcs.init()
w.plot(f)


x.interact()
x.close()

y.interact()
y.close()

z.interact()
z.close()

w.interact()
w.close()

If we replace .interact() with .backend.interact() everything works fine.

DV3D/VCS plot error

The demo at http://uvcdat.llnl.gov/examples/vcs3D_cubed_sphere_volume.html returns the following error:

In [27]: x.plot( v, dv3d, grid_file="vcs3D_cubed_sphere_volume_grid.nc" )
---------------------------------------------------------------------------
vcsError                                  Traceback (most recent call last)
<ipython-input-27-6a265f659a04> in <module>()
----> 1 x.plot( v, dv3d, grid_file="vcs3D_cubed_sphere_volume_grid.nc" )

/export/durack1/160302_pcmdi_metrics/PCMDI_METRICS/lib/python2.7/site-packages/vcs/Canvas.pyc in plot(self, *actual_args, **keyargs)
   2404         self.__last_plot_keyargs = keyargs
   2405         passed_var = keyargs.get("variable", None)
-> 2406         arglist = _determine_arg_list(None, actual_args)
   2407         if passed_var is not None:
   2408             arglist[0] = cdms2.asVariable(passed_var)

/export/durack1/160302_pcmdi_metrics/PCMDI_METRICS/lib/python2.7/site-packages/vcs/Canvas.pyc in _determine_arg_list(g_name, actual_args)
    222         else:
    223             raise vcsError("Unknown type %s of argument to plotting command." %
--> 224                            type(args[i]))
    225     if g_name is not None:
    226         arglist[igraphics_method] = g_name

vcsError: Unknown type <type 'NoneType'> of argument to plotting command.

Following version info:

[duro@ocean ~/160302_pcmdi_metrics]$ env | grep UVCDAT
UVCDAT_PROMPT_STRING=v2.5.0-81-gf4493d2
UVCDAT_SETUP_PATH=/export/durack1/160302_pcmdi_metrics/PCMDI_METRICS

@chaosphere2112 @mattben pinging you gentlemen here

Migrated from: CDAT/cdat#1867

If masking reduces the bounds of a dataset, plots look incomplete.

The following script creates a plot that looks incomplete:

import vcs
import cdms2
x = vcs.init()
f = cdms2.open("/home/danlipsa/src/uvcdat-examples/isofill-robinson/coads_climatology.nc")
v = f["SST"]
iso = vcs.getisofill('a_robinson_isofill')
x.plot(v, iso, bg=1)
x.png("isofill-robinson.png")

isofill-robinson-bad

running autot_title with setbgoutputdimensions leads to seg fault

doutriaux1@maryam:[/git/uvcdat]:[fix_Autot*]:[2139]> git diff
diff --git a/testing/vcs/test_vcs_autot_axis_titles.py b/testing/vcs/test_vcs_autot_axis_titles.py
index 8dfacdb..afd64de 100644
--- a/testing/vcs/test_vcs_autot_axis_titles.py
+++ b/testing/vcs/test_vcs_autot_axis_titles.py
@@ -32,7 +32,7 @@ f = cdms2.open(vcs.sample_data + "/" + testConfig[plot][0])
 s = f(testConfig[plot][1])

 x = vcs.init(bg=bg, geometry=(xSize, ySize))
-x.setbgoutputdimensions(xSize,ySize)
+x.setantialiasing(0)

 # graphics method
 if (plot.find('boxfill') != -1):
@@ -47,9 +47,9 @@ else:
     print "Invalid plot"
     sys.exit(13)

-x.setantialiasing(0)
+x.setbgoutputdimensions(xSize,ySize)
 x.drawlogooff()
-x.plot(s, gm, ratio="autot")
+x.plot(s, gm, ratio="autot", bg=bg)
 name = "test_autot_axis_titles_" + plot[2:] + "_" + x_over_y + "_" + str(bg) + ".png"
 x.png(name)

running script:

"/usr/local/uvcdat/2.4.1rc/bin/python" "/git/uvcdat/testing/vcs/test_vcs_autot_axis_titles.py" "/Users/doutriaux1/build/uvcdat-testdata/baselines/vcs/test_vcs_autot_axis_titles_boxfill_0.5.png" "background" "a_boxfill" "0.5"
ERROR: In /Users/doutriaux1/build/build/VTK/Rendering/OpenGL/vtkOpenGLDisplayListPainter.cxx, line 188
vtkOpenGLDisplayListPainter (0x7fb1de639cb0): failed after RenderInternal 1 OpenGL errors detected
  0 : (1285) Out of memory


ERROR: In /Users/doutriaux1/build/build/VTK/Rendering/OpenGL/vtkOpenGLDisplayListPainter.cxx, line 188
vtkOpenGLDisplayListPainter (0x7fb1de68cd00): failed after RenderInternal 1 OpenGL errors detected
  0 : (1285) Out of memory


ERROR: In /Users/doutriaux1/build/build/VTK/Rendering/OpenGL/vtkOpenGLDisplayListPainter.cxx, line 188
vtkOpenGLDisplayListPainter (0x7fb1de438890): failed after RenderInternal 1 OpenGL errors detected
  0 : (1285) Out of memory


ERROR: In /Users/doutriaux1/build/build/VTK/Rendering/OpenGL/vtkOpenGLPolyDataMapper2D.cxx, line 442
vtkOpenGLPolyDataMapper2D (0x7fb1dbde4f90): failed after RenderOverlay 1 OpenGL errors detected
  0 : (1285) Out of memory


ERROR: In /Users/doutriaux1/build/build/VTK/Rendering/OpenGL/vtkOpenGLDisplayListPainter.cxx, line 188
vtkOpenGLDisplayListPainter (0x7fb1de639cb0): failed after RenderInternal 1 OpenGL errors detected
  0 : (1285) Out of memory


ERROR: In /Users/doutriaux1/build/build/VTK/Rendering/OpenGL/vtkOpenGLDisplayListPainter.cxx, line 188
vtkOpenGLDisplayListPainter (0x7fb1de438890): failed after RenderInternal 1 OpenGL errors detected
  0 : (1285) Out of memory


Segmentation fault: 11

apple bug report:

Process:               Python [21653]
Path:                  /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Identifier:            org.python.python
Version:               2.7.11 (2.7.11)
Code Type:             X86-64 (Native)
Parent Process:        bash [6361]
Responsible:           Terminal [473]
User ID:               45773

Date/Time:             2016-04-18 07:41:29.289 -0700
OS Version:            Mac OS X 10.11.3 (15D21)
Report Version:        11
Anonymous UUID:        15C0DA84-7E18-76E3-62E5-0C87609E8164

Sleep/Wake UUID:       EA5587EF-A4F1-4D08-9A3A-6B1EE42A6865

Time Awake Since Boot: 1400000 seconds
Time Since Wake:       530 seconds

System Integrity Protection: disabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x00000002e6287000

VM Regions Near 0x2e6287000:
    MALLOC_LARGE           00000002bd78d000-00000002e6287000 [651.0M] rw-/rwx SM=PRV  
--> 
    STACK GUARD            0000700000000000-0000700000001000 [    4K] ---/rwx SM=NUL  stack guard for thread 1

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_platform.dylib        0x00007fff9b475f49 _platform_memmove$VARIANT$Haswell + 41
1   libvtkRenderingCore-7.1.1.dylib 0x000000011591d8f8 vtkWindowToImageFilter::RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) + 6616 (vtkWindowToImageFilter.cxx:523)
2   libvtkRenderingCore-7.1.1.dylib 0x000000011591be89 vtkWindowToImageFilter::ProcessRequest(vtkInformation*, vtkInformationVector**, vtkInformationVector*) + 89 (vtkWindowToImageFilter.cxx:235)
3   libvtkCommonExecutionModel-7.1.1.dylib  0x0000000112c814c4 vtkExecutive::CallAlgorithm(vtkInformation*, int, vtkInformationVector**, vtkInformationVector*) + 164 (vtkExecutive.cxx:775)
4   libvtkCommonExecutionModel-7.1.1.dylib  0x0000000112c75cad vtkDemandDrivenPipeline::ExecuteData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) + 141 (vtkDemandDrivenPipeline.cxx:491)
5   libvtkCommonExecutionModel-7.1.1.dylib  0x0000000112c6cf6f vtkCompositeDataPipeline::ExecuteData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) + 1807 (vtkCompositeDataPipeline.cxx:178)
6   libvtkCommonExecutionModel-7.1.1.dylib  0x0000000112c74fff vtkDemandDrivenPipeline::ProcessRequest(vtkInformation*, vtkInformationVector**, vtkInformationVector*) + 1359 (vtkDemandDrivenPipeline.cxx:274)
7   libvtkCommonExecutionModel-7.1.1.dylib  0x0000000112cca5f2 vtkStreamingDemandDrivenPipeline::ProcessRequest(vtkInformation*, vtkInformationVector**, vtkInformationVector*) + 2834 (vtkStreamingDemandDrivenPipeline.cxx:328)
8   libvtkCommonExecutionModel-7.1.1.dylib  0x0000000112c75a6f vtkDemandDrivenPipeline::UpdateData(int) + 1087 (vtkDemandDrivenPipeline.cxx:441)
9   libvtkCommonExecutionModel-7.1.1.dylib  0x0000000112cca9d8 vtkStreamingDemandDrivenPipeline::Update(int, vtkInformationVector*) + 424 (vtkStreamingDemandDrivenPipeline.cxx:403)
10  libvtkCommonExecutionModel-7.1.1.dylib  0x0000000112cca826 vtkStreamingDemandDrivenPipeline::Update(int) + 38 (vtkStreamingDemandDrivenPipeline.cxx:365)
11  libvtkCommonExecutionModel-7.1.1.dylib  0x0000000112c609f2 vtkAlgorithm::Update(int) + 50 (vtkAlgorithm.cxx:1457)
12  libvtkCommonExecutionModel-7.1.1.dylib  0x0000000112c609b8 vtkAlgorithm::Update() + 72 (vtkAlgorithm.cxx:1451)
13  libvtkCommonExecutionModelPython27D-7.1.1.dylib 0x0000000112b758b8 PyvtkAlgorithm_Update_s2(_object*, _object*) + 152 (vtkAlgorithmPython.cxx:2243)
14  libvtkCommonExecutionModelPython27D-7.1.1.dylib 0x0000000112b72732 PyvtkAlgorithm_Update(_object*, _object*) + 114 (vtkAlgorithmPython.cxx:2329)
15  org.python.python               0x0000000109c99511 PyEval_EvalFrameEx + 27905 (ceval.c:4350)
16  org.python.python               0x0000000109c9251a PyEval_EvalCodeEx + 1690 (ceval.c:3582)
17  org.python.python               0x0000000109c1e1bc function_call + 364 (funcobject.c:526)
18  org.python.python               0x0000000109bf84b3 PyObject_Call + 99 (abstract.c:2546)
19  org.python.python               0x0000000109c99c7c PyEval_EvalFrameEx + 29804 (ceval.c:4663)
20  org.python.python               0x0000000109c9251a PyEval_EvalCodeEx + 1690 (ceval.c:3582)
21  org.python.python               0x0000000109c9de26 fast_function + 118 (ceval.c:4450)
22  org.python.python               0x0000000109c993a8 PyEval_EvalFrameEx + 27544 (ceval.c:4371)
23  org.python.python               0x0000000109c9251a PyEval_EvalCodeEx + 1690 (ceval.c:3582)
24  org.python.python               0x0000000109c91e76 PyEval_EvalCode + 54 (ceval.c:669)
25  org.python.python               0x0000000109cbfc14 PyRun_FileExFlags + 164 (pythonrun.c:1370)
26  org.python.python               0x0000000109cbf74a PyRun_SimpleFileExFlags + 698 (pythonrun.c:948)
27  org.python.python               0x0000000109cd54f2 Py_Main + 3186 (main.c:643)
28  libdyld.dylib                   0x00007fff8fb995ad start + 1

Thread 1:
0   libsystem_kernel.dylib          0x00007fff8f1826de __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff90495729 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff90493365 start_wqthread + 13

Thread 2:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib          0x00007fff8f182ff6 kevent_qos + 10
1   libdispatch.dylib               0x00007fff9ce08099 _dispatch_mgr_invoke + 216
2   libdispatch.dylib               0x00007fff9ce07d01 _dispatch_mgr_thread + 52

Thread 3:
0   libsystem_kernel.dylib          0x00007fff8f1826de __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff90495729 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff90493365 start_wqthread + 13

Thread 4:
0   libsystem_kernel.dylib          0x00007fff8f1826de __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff90495729 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff90493365 start_wqthread + 13

Thread 5:
0   libsystem_kernel.dylib          0x00007fff8f1826de __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff90495729 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff90493365 start_wqthread + 13

Thread 6:
0   libsystem_kernel.dylib          0x00007fff8f1826de __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff90495729 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff90493365 start_wqthread + 13

Thread 7:
0   libsystem_kernel.dylib          0x00007fff8f1826de __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff90495729 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff90493365 start_wqthread + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x00000001bd75c980  rbx: 0x000000011a2d78d0  rcx: 0x0000000000005b00  rdx: 0x0000000000015180
  rdi: 0x00000001bd76c000  rsi: 0x00000002e6287000  rbp: 0x00007fff5601a800  rsp: 0x00007fff5601a800
   r8: 0x0000000000000000   r9: 0x0000000000000870  r10: 0x00007fff5601a6d8  r11: 0xfffffffed74e5000
  r12: 0x0000000000000000  r13: 0x00007fb1dbc07660  r14: 0x0000000000000000  r15: 0x00007fb1dbc639c0
  rip: 0x00007fff9b475f49  rfl: 0x0000000000010202  cr2: 0x00000002e6287000

Logical CPU:     0
Error Code:      0x00000004
Trap Number:     14


Binary Images:
       0x109be3000 -        0x109be3fff +org.python.python (2.7.11 - 2.7.11) <7DDD037F-9F0A-311C-B33F-79887EA7D46F> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
       0x109bea000 -        0x109d17ff7 +org.python.python (2.7.11, [c] 2001-2015 Python Software Foundation. - 2.7.11) <EBDEC9D1-5216-3448-BB37-B94268BD219E> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/Python
       0x10a185000 -        0x10a186fff +_locale.so (0) <6D6EA468-AE60-3F2C-897F-7806F1D51BDE> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_locale.so
       0x10a20a000 -        0x10a20efff +math.so (0) <BCD1E1BB-019A-350E-96F1-899450597806> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/math.so
       0x10a215000 -        0x10a334fff +multiarray.so (0) <D32028E6-DCA6-313D-97F4-41766717527F> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/core/multiarray.so
       0x10a3ed000 -        0x10a3f9fff +datetime.so (0) <FB5B4875-96C2-3C17-AE4E-1B78F5CB516C> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/datetime.so
       0x10a405000 -        0x10a461ff7 +umath.so (0) <385262A1-0217-3B61-BC6F-1ABCED87CD65> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/core/umath.so
       0x10a4cd000 -        0x10a4d0fff +_collections.so (0) <1EF15544-27B3-3B10-92E2-49EDA5CE598D> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_collections.so
       0x10a4d6000 -        0x10a4d9ff7 +operator.so (0) <E97A98CC-983A-32E4-A387-EDB53AAA709C> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/operator.so
       0x10a520000 -        0x10a525fff +itertools.so (0) <831190B1-9C2E-3BFA-902C-96629F6C31F7> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/itertools.so
       0x10a530000 -        0x10a531fff +_heapq.so (0) <9E873D9E-CCE1-3C88-A6B4-DCEC77839D4F> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_heapq.so
       0x10a535000 -        0x10a542fff +cPickle.so (0) <3A75BAA4-2241-3F8A-93FB-CB4FC0471CF4> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cPickle.so
       0x10a54a000 -        0x10a54bfff +cStringIO.so (0) <AA7CD170-366B-3E56-94FD-10FBCEE229CD> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/cStringIO.so
       0x10a610000 -        0x10a614ff7 +_dotblas.so (0) <A90FB8A4-B2A6-321B-9FD7-E29CDC835CE9> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/core/_dotblas.so
       0x10a618000 -        0x10a619ff7 +_functools.so (0) <C5039B53-A0CE-313E-8E97-F89D02FAC7E4> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_functools.so
       0x10a65c000 -        0x10a678fff +scalarmath.so (0) <7388E725-0736-33F7-92A4-3D743BF12124> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/core/scalarmath.so
       0x10a6ca000 -        0x10a6cbff7 +time.so (0) <6DD3942E-FD62-31CD-994F-2D2E9B826328> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/time.so
       0x10a710000 -        0x10a710fff +grp.so (0) <5E3F3DD5-40DE-385F-9F9A-D6EAD7703A52> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/grp.so
       0x10a713000 -        0x10a723fff +_io.so (0) <9A593CBF-AA7E-343E-84EC-55AF0CDD7751> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_io.so
       0x10a77b000 -        0x10a77eff7 +binascii.so (0) <059BE7EF-68E0-3DF6-8103-40BD2FBE7794> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/binascii.so
       0x10a782000 -        0x10a8a0fa7 +_hashlib.so (0) <7D915D83-C375-3753-BB65-A447565C63CF> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_hashlib.so
       0x10a902000 -        0x10a903fff +_random.so (0) <BB5BE249-CB2A-30E9-B0A7-83AF0A3D65CE> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_random.so
       0x10a906000 -        0x10a907ff7 +fcntl.so (0) <285F6E84-6F66-30BB-8FFD-3F29DBAB2B08> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/fcntl.so
       0x10a94a000 -        0x10a94eff7 +_compiled_base.so (0) <774F4607-6C9B-387F-9372-6AB2E4E99DEC> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/lib/_compiled_base.so
       0x10a952000 -        0x10a953ff7 +lapack_lite.so (0) <3DDC0017-AD31-3CD1-B321-BF3CA3F29812> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/linalg/lapack_lite.so
       0x10a957000 -        0x10a969fff +_umath_linalg.so (0) <0F0182E1-4772-33EB-8804-18FD54B78A7F> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/linalg/_umath_linalg.so
       0x10a9b5000 -        0x10a9b5fff +future_builtins.so (0) <53CA6039-286E-3282-A476-92DAAE726EF2> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/future_builtins.so
       0x10a9f8000 -        0x10aa00fff +fftpack_lite.so (0) <A0E7A4F6-E51F-36BA-9F63-49A310A7FD56> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/fft/fftpack_lite.so
       0x10aa44000 -        0x10aa99fff +mtrand.so (0) <711D841E-6F01-39B3-85B4-C2B6A6B02FD7> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/numpy/random/mtrand.so
       0x10ab2d000 -        0x10ab3eff7 +_ctypes.so (0) <BC405F71-40E2-317A-9806-4A9EC5E0E780> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ctypes.so
       0x10ab4f000 -        0x10ab52fff +_struct.so (0) <926F29DF-EC87-3F99-AB47-895DD17F8100> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_struct.so
       0x10abd4000 -        0x10ac55fff +cdtime.so (0) <F5777C77-7AD3-3985-88B6-B026317198F5> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/cdtime.so
       0x10aecb000 -        0x10afb4fff +libnetcdf.7.dylib (0) <1110F904-C560-3150-B936-219F9925D625> /usr/local/uvcdat/2.4.1rc/Externals/lib/libnetcdf.7.dylib
       0x10e02f000 -        0x10e04efff +libpng15.15.dylib (39) <5ECA4A08-7B60-373F-A803-FB4446835BE8> /opt/X11/*/libpng15.15.dylib
       0x10e058000 -        0x10e0bdfff +libjasper.1.dylib (0) <E0B293FB-6287-345B-9DD0-00C2FBF5A367> /usr/local/uvcdat/2.4.1rc/Externals/lib/libjasper.1.dylib
       0x10e0d4000 -        0x10e0f2fff +libhdf5_hl.10.dylib (0) <08975DEE-1441-355E-ABBA-CC592CAC29A3> /usr/local/uvcdat/2.4.1rc/Externals/lib/libhdf5_hl.10.dylib
       0x10e0fb000 -        0x10e505fff +libhdf5.10.dylib (0) <EFF01458-3304-39E9-92F2-00F1FB2D919B> /usr/local/uvcdat/2.4.1rc/Externals/lib/libhdf5.10.dylib
       0x10e5b2000 -        0x10e5b5ff7 +strop.so (0) <92B3FEB5-636F-324C-97B0-B27D4AA1ABF4> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/strop.so
       0x10e63a000 -        0x10e6befff +Cdunif.so (0) <712CB60D-2F8E-3A04-8ED9-C12C5ED40DF5> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/cdms2/Cdunif.so
       0x10e976000 -        0x10e97efff +_socket.so (0) <E102B937-8CB3-37E1-9064-F8838B78F70F> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_socket.so
       0x10e98a000 -        0x10eb2ac8f +_ssl.so (0) <7AE61E20-0AFD-34A8-BFB1-B264F8CE3686> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_ssl.so
       0x10ec2d000 -        0x10ec2dff7 +_scproxy.so (0) <FF521406-F0A3-3E31-8227-3848D420D80B> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_scproxy.so
       0x10ec78000 -        0x10ec7fff7 +_regrid.so (0) <7BADC2C0-13F7-3A21-B34C-F3CFEE52DDAB> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/regrid2/_regrid.so
       0x10ec83000 -        0x10ec8afff +_scrip.so (0) <065452DB-78C2-32EE-8E3D-56C3F38813BB> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/regrid2/_scrip.so
       0x10ed11000 -        0x10ed13fff +select.so (0) <E91F0D8B-DEF9-39DE-838D-520CA6301063> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/select.so
       0x10ed59000 -        0x10ed63ff7 +_curses.so (0) <50AB8DC7-D251-3699-A451-CF5659D7E59D> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_curses.so
       0x10edae000 -        0x10ede4fef +libquadmath.0.dylib (0) <D912DF8E-F3E8-302E-A01E-24F1CA8D365D> /usr/local/lib/libquadmath.0.dylib
       0x10edf3000 -        0x10edf8fff +_json.so (0) <4F016624-88B3-3AA6-8D59-C5A626815020> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_json.so
       0x10edfd000 -        0x10edfdff7 +_bisect.so (0) <CE14980D-A4B9-3A31-A7F4-FFD8B8DBAA39> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_bisect.so
       0x10f600000 -        0x11003bfe7 +libesmf_fullylinked.dylib (0) <BA278E8B-104E-3D56-A470-CDFA1DAFA40A> /usr/local/uvcdat/2.4.1rc/Externals/lib/libO/Darwin.gfortran.64.mpiuni.default/libesmf_fullylinked.dylib
       0x1103c5000 -        0x1104ddfd7 +libgfortran.3.dylib (0) <9A98C6C5-5088-3065-A9B1-D369A1B649C3> /usr/local/lib/libgfortran.3.dylib
       0x110541000 -        0x110556ff7 +libgcc_s.1.dylib (0) <B8235249-FD27-364E-A704-58C5C5C800F4> /usr/local/lib/libgcc_s.1.dylib
       0x1105a1000 -        0x1105a3fff +_bindex.so (0) <C92691C2-32D5-3B6C-A4EB-6EDCC65B91BD> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/cdms2/_bindex.so
       0x1105e7000 -        0x1105e8ff7 +termios.so (0) <5C289002-D40C-3231-B182-DC5AAB89FCE4> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/termios.so
       0x11066c000 -        0x110670fff +array.so (0) <A4F7B696-1511-394E-AF9C-E36035051F33> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/array.so
       0x110737000 -        0x110739ff7 +array_indexing.so (0) <B18BF212-A075-3C9E-B628-B4D0F86143C8> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/genutil/array_indexing.so
       0x11077d000 -        0x11077efff +udunits_wrap.so (0) <3DB9929F-53E5-30FB-B76D-F6D8D008719D> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/unidata/udunits_wrap.so
       0x110781000 -        0x11079fff7 +libudunits2.0.dylib (0) <343321F1-BE1F-319D-B7B4-067B7803BC27> /usr/local/uvcdat/2.4.1rc/Externals/lib/libudunits2.0.dylib
       0x1107a7000 -        0x1107c0fff  libexpat.1.dylib (12.20.1) <AA76E4CF-52F5-3CF9-907B-FBB80BAFB125> /usr/lib/libexpat.1.dylib
       0x11090a000 -        0x11090cfff +vtkCommonCorePython.so (0) <4207FEEB-738A-3D2F-9323-F863471F9FED> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkCommonCorePython.so
       0x11090f000 -        0x110bcaff7 +libvtkCommonCorePython27D-7.1.1.dylib (0) <4965588B-81D0-32CD-A7A0-D2F8CF936782> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonCorePython27D-7.1.1.dylib
       0x110e0b000 -        0x110e5efff +libvtkWrappingPython27Core-7.1.1.dylib (0) <CDAAB18D-314C-3EC9-A83B-6D2EBC85396E> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkWrappingPython27Core-7.1.1.dylib
       0x110e90000 -        0x1113f4ff7 +libvtkCommonCore-7.1.1.dylib (0) <3525945E-EC03-314B-9168-0B84E07F9E77> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonCore-7.1.1.dylib
       0x111716000 -        0x1117b3fff +libvtksys-7.1.1.dylib (0) <BD34DBB5-AB79-344F-B783-C7DD1A82F84F> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtksys-7.1.1.dylib
       0x11187a000 -        0x11187cfff +vtkCommonMathPython.so (0) <2B04DE46-074F-3DB5-8EDF-0600D0D779EC> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkCommonMathPython.so
       0x11187f000 -        0x1118ccfff +libvtkCommonMathPython27D-7.1.1.dylib (0) <3C0A4969-5A3F-3BF4-9192-FD1627A11FC8> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonMathPython27D-7.1.1.dylib
       0x11190d000 -        0x11192cff7 +libvtkCommonMath-7.1.1.dylib (0) <DDC1C2BE-6414-339F-A483-2195F768D545> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonMath-7.1.1.dylib
       0x111944000 -        0x111947fff +vtkCommonMiscPython.so (0) <135EF003-D738-3553-92C4-7F08791209AC> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkCommonMiscPython.so
       0x11194a000 -        0x111961fff +libvtkCommonMiscPython27D-7.1.1.dylib (0) <A95349E7-1BEF-396F-8B77-BFDA9A4E0643> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonMiscPython27D-7.1.1.dylib
       0x111973000 -        0x111991fff +libvtkCommonMisc-7.1.1.dylib (0) <12F37A47-86FB-39DA-BB92-DFE90CC42902> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonMisc-7.1.1.dylib
       0x1119a1000 -        0x1119a3fff +vtkCommonSystemPython.so (0) <0FB0473E-71DA-3823-B45A-4DCE540784AB> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkCommonSystemPython.so
       0x1119a6000 -        0x1119b3ff7 +libvtkCommonSystemPython27D-7.1.1.dylib (0) <B144018D-9156-3963-959F-E2F05A3CC14B> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonSystemPython27D-7.1.1.dylib
       0x1119c2000 -        0x1119d5ff7 +libvtkCommonSystem-7.1.1.dylib (0) <B1EA9BE2-1071-373F-A154-761869E6F3D2> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonSystem-7.1.1.dylib
       0x111a28000 -        0x111a2bfff +vtkCommonTransformsPython.so (0) <7C7ADDFC-CA83-30DB-8CA4-897AA22BA9C9> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkCommonTransformsPython.so
       0x111a2e000 -        0x111a63fff +libvtkCommonTransformsPython27D-7.1.1.dylib (0) <173BEA37-F12B-33E8-92CB-55C379E0DD05> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonTransformsPython27D-7.1.1.dylib
       0x111a93000 -        0x111ab7ff7 +libvtkCommonTransforms-7.1.1.dylib (0) <4CA3B8EE-51DB-3D6C-A704-316E4F7F3ACA> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonTransforms-7.1.1.dylib
       0x111add000 -        0x111ae1fff +vtkCommonDataModelPython.so (0) <6C47CA35-63AE-36D9-9948-51E09172EC4A> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkCommonDataModelPython.so
       0x111ae4000 -        0x111e1cfff +libvtkCommonDataModelPython27D-7.1.1.dylib (0) <BD42274D-C36E-3290-A17F-38D0E1C432B7> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonDataModelPython27D-7.1.1.dylib
       0x11207b000 -        0x1124a7fff +libvtkCommonDataModel-7.1.1.dylib (0) <48C4C8A6-89D0-3BC9-B6F5-DF238492BB5C> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonDataModel-7.1.1.dylib
       0x112ae5000 -        0x112aeafff +vtkCommonColorPython.so (0) <C799A31A-C18B-317C-AE6F-D82A1E66E411> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkCommonColorPython.so
       0x112aed000 -        0x112afffff +libvtkCommonColorPython27D-7.1.1.dylib (0) <E947EABA-1501-3E5F-81FF-766068AD2B75> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonColorPython27D-7.1.1.dylib
       0x112b0c000 -        0x112b41fff +libvtkCommonColor-7.1.1.dylib (0) <64E3860E-468C-3224-BB05-24F24A8D14BB> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonColor-7.1.1.dylib
       0x112b61000 -        0x112b66fff +vtkCommonExecutionModelPython.so (0) <F4571317-7B83-3F8B-A748-F59D509FE2E5> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkCommonExecutionModelPython.so
       0x112b69000 -        0x112bdefff +libvtkCommonExecutionModelPython27D-7.1.1.dylib (0) <5AF098E4-0ADE-3A0C-840A-9F5057C6225E> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonExecutionModelPython27D-7.1.1.dylib
       0x112c55000 -        0x112cfeff7 +libvtkCommonExecutionModel-7.1.1.dylib (0) <A345590A-5DCC-30DF-A7B1-21217105B292> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonExecutionModel-7.1.1.dylib
       0x112db7000 -        0x112dbdfff +vtkFiltersCorePython.so (0) <8F29A1B5-66AB-3156-8FFE-66D76CBE9AD2> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersCorePython.so
       0x112dc0000 -        0x112f50fff +libvtkFiltersCorePython27D-7.1.1.dylib (0) <D751D8B5-CB01-343E-9459-965E1BADF2D0> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersCorePython27D-7.1.1.dylib
       0x113053000 -        0x113709ff7 +libvtkFiltersCore-7.1.1.dylib (0) <4DED5B77-84D8-3587-9D40-B6C43B9CD614> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersCore-7.1.1.dylib
       0x113970000 -        0x113975fff +vtkCommonComputationalGeometryPython.so (0) <E89FF8F1-FEB8-3D33-8B9A-5A3DF7484922> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkCommonComputationalGeometryPython.so
       0x113978000 -        0x1139cbff7 +libvtkCommonComputationalGeometryPython27D-7.1.1.dylib (0) <9E6B6F1A-7102-3380-ADDA-E1AE9A84CB91> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonComputationalGeometryPython27D-7.1.1.dylib
       0x113a01000 -        0x113a34fff +libvtkCommonComputationalGeometry-7.1.1.dylib (0) <64E209ED-A408-3A5F-A036-7F2931A8B08F> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkCommonComputationalGeometry-7.1.1.dylib
       0x113a9f000 -        0x113aa6fff +vtkFiltersGeneralPython.so (0) <E17D4F6B-FAB4-3E75-9BF1-09FD651D90CA> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersGeneralPython.so
       0x113aa9000 -        0x113c08ff7 +libvtkFiltersGeneralPython27D-7.1.1.dylib (0) <BF4B0A3A-C475-377C-AC02-BB5103649FF4> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersGeneralPython27D-7.1.1.dylib
       0x113cfa000 -        0x1140defff +libvtkFiltersGeneral-7.1.1.dylib (0) <9F8385BD-14FB-3457-BBBA-495E8997F142> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersGeneral-7.1.1.dylib
       0x1142f0000 -        0x1142f6fff +vtkImagingCorePython.so (0) <77204B51-B46B-3976-B954-7C638770847E> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkImagingCorePython.so
       0x1142f9000 -        0x114393fff +libvtkImagingCorePython27D-7.1.1.dylib (0) <803C902A-84D9-3537-B53F-9001B1C0744A> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingCorePython27D-7.1.1.dylib
       0x114401000 -        0x1145d2fff +libvtkImagingCore-7.1.1.dylib (0) <747B68BB-4C43-3164-B360-89CB23067ED6> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingCore-7.1.1.dylib
       0x114684000 -        0x11468afff +vtkImagingFourierPython.so (0) <7227811E-487C-3417-9014-AF5364F27D9E> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkImagingFourierPython.so
       0x11468d000 -        0x1146a1ff7 +libvtkImagingFourierPython27D-7.1.1.dylib (0) <2525EF0E-07A9-3FA1-BE63-B6E54BE3BCDE> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingFourierPython27D-7.1.1.dylib
       0x1146b3000 -        0x1146d8fff +libvtkImagingFourier-7.1.1.dylib (0) <FB0E1CAB-888D-3843-BEFE-3297F58A9927> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingFourier-7.1.1.dylib
       0x114730000 -        0x114737fff +vtkFiltersStatisticsPython.so (0) <482DF73A-067C-3F96-8A0A-9F6A87D272E0> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersStatisticsPython.so
       0x11473a000 -        0x114778ff7 +libvtkFiltersStatisticsPython27D-7.1.1.dylib (0) <1F800D23-5C51-3FCF-83D2-DF8E7E91E157> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersStatisticsPython27D-7.1.1.dylib
       0x1147a3000 -        0x1148d8fff +libvtkFiltersStatistics-7.1.1.dylib (0) <723C2A45-3E9A-3D44-884F-6ADE6D7FCBA2> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersStatistics-7.1.1.dylib
       0x114952000 -        0x11496dff7 +libvtkalglib-7.1.1.dylib (0) <5054E5D4-0F83-305A-BAF0-E44BC1A1A727> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkalglib-7.1.1.dylib
       0x11497a000 -        0x114983fff +vtkFiltersExtractionPython.so (0) <C5BFA544-FB3E-381E-B865-EB53B326F73A> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersExtractionPython.so
       0x114986000 -        0x1149cfff7 +libvtkFiltersExtractionPython27D-7.1.1.dylib (0) <B8E19D8C-2558-3BDB-AAC6-99BEC60AEF2C> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersExtractionPython27D-7.1.1.dylib
       0x114a07000 -        0x114b37ff7 +libvtkFiltersExtraction-7.1.1.dylib (0) <A6EA3CD5-8F75-31EF-82AB-6D5E89AEAEA6> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersExtraction-7.1.1.dylib
       0x114bb8000 -        0x114bc2fff +vtkInfovisCorePython.so (0) <A7C27419-CEC2-3CF1-A2EA-9BD2323521D2> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkInfovisCorePython.so
       0x114bc5000 -        0x114c3dff7 +libvtkInfovisCorePython27D-7.1.1.dylib (0) <A99E84C5-0B83-3EFF-9DE7-309100320A07> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkInfovisCorePython27D-7.1.1.dylib
       0x114c91000 -        0x114de8fff +libvtkInfovisCore-7.1.1.dylib (0) <D5E163CB-7B5D-37C2-9D99-CF98A472C1D6> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkInfovisCore-7.1.1.dylib
       0x114eec000 -        0x114ef2fff +vtkFiltersGeometryPython.so (0) <2BAC8319-681D-3823-9713-836441F360E3> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersGeometryPython.so
       0x114ef5000 -        0x114f46ff7 +libvtkFiltersGeometryPython27D-7.1.1.dylib (0) <4A217C68-D8C0-329B-BFE0-687E91F466E3> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersGeometryPython27D-7.1.1.dylib
       0x114f86000 -        0x115028ff7 +libvtkFiltersGeometry-7.1.1.dylib (0) <7CCCA2C4-5611-3B59-BAEB-DE415E65DDD7> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersGeometry-7.1.1.dylib
       0x11508b000 -        0x115092fff +vtkFiltersSourcesPython.so (0) <D767697D-3C88-3760-A5A5-F81553F2771E> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersSourcesPython.so
       0x115095000 -        0x115155fff +libvtkFiltersSourcesPython27D-7.1.1.dylib (0) <1CCF60C4-3A5C-36C4-A792-3404A3A2FEE5> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersSourcesPython27D-7.1.1.dylib
       0x1151cb000 -        0x11529bff7 +libvtkFiltersSources-7.1.1.dylib (0) <D2168F66-746E-34FE-A78F-866AA0DB4192> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersSources-7.1.1.dylib
       0x11531c000 -        0x115325fff +vtkRenderingCorePython.so (0) <088B638F-B4AE-3EB7-9624-454ECF8B00AD> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingCorePython.so
       0x115328000 -        0x1155a3ff7 +libvtkRenderingCorePython27D-7.1.1.dylib (0) <938110B7-ABF7-3D7D-B7E9-D671B03269A0> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingCorePython27D-7.1.1.dylib
       0x11573d000 -        0x1159abfff +libvtkRenderingCore-7.1.1.dylib (0) <2172FA68-0741-38FA-A46F-45CBF28A01BB> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingCore-7.1.1.dylib
       0x115ba2000 -        0x115bacfff +vtkRenderingFreeTypePython.so (0) <E5842967-15AC-3B7F-8D8D-0740870F4416> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingFreeTypePython.so
       0x115baf000 -        0x115bcdff7 +libvtkRenderingFreeTypePython27D-7.1.1.dylib (0) <640E86DA-855A-3FE2-ADDA-6BF7B3EC4F97> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingFreeTypePython27D-7.1.1.dylib
       0x115be3000 -        0x115c35fff +libvtkRenderingFreeType-7.1.1.dylib (0) <B5AFD4EC-7D3F-34B0-B52F-A0AF43207006> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingFreeType-7.1.1.dylib
       0x115ccf000 -        0x115d80ff7 +libfreetype.6.dylib (0) <8CD0B5CF-F5C6-3A8C-811F-17D708D98309> /usr/local/uvcdat/2.4.1rc/Externals/lib/libfreetype.6.dylib
       0x115d98000 -        0x115da2fff +vtkRenderingContext2DPython.so (0) <33C5013E-0164-3E8E-AD50-B952DDE9171A> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingContext2DPython.so
       0x115da5000 -        0x115dfefff +libvtkRenderingContext2DPython27D-7.1.1.dylib (0) <915399DA-F696-3241-8F99-FCB196EE959E> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingContext2DPython27D-7.1.1.dylib
       0x115e3f000 -        0x115e78ff7 +libvtkRenderingContext2D-7.1.1.dylib (0) <9A619135-E153-36B4-9728-3F41588CE18B> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingContext2D-7.1.1.dylib
       0x115ef1000 -        0x115efffff +vtkChartsCorePython.so (0) <0FB86EE1-4C1E-3CC1-8DFD-19069ADFEF0A> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkChartsCorePython.so
       0x115f02000 -        0x115fbfff7 +libvtkChartsCorePython27D-7.1.1.dylib (0) <2A524C6E-6893-31D2-83C2-7D71102B3650> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkChartsCorePython27D-7.1.1.dylib
       0x116044000 -        0x116201ff7 +libvtkChartsCore-7.1.1.dylib (0) <6C1C1BB0-23F2-31BB-BF11-8C903FBACB21> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkChartsCore-7.1.1.dylib
       0x1162fb000 -        0x116301fff +vtkIOCorePython.so (0) <E1138EA6-6139-34DE-9F33-53CD9600B981> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOCorePython.so
       0x116304000 -        0x11633bff7 +libvtkIOCorePython27D-7.1.1.dylib (0) <DDC706AB-30ED-3E78-8DAA-556E8CC4A371> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOCorePython27D-7.1.1.dylib
       0x116365000 -        0x11640cff7 +libvtkIOCore-7.1.1.dylib (0) <25A13CD7-75B8-3682-A798-EE607A228A59> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOCore-7.1.1.dylib
       0x1164c5000 -        0x1164cbfff +vtkIOLegacyPython.so (0) <BD3E5C66-39B2-3701-86FC-1423B5BFBD71> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOLegacyPython.so
       0x1164ce000 -        0x116512ff7 +libvtkIOLegacyPython27D-7.1.1.dylib (0) <200540DA-5297-38C8-9262-66E9852DCED9> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOLegacyPython27D-7.1.1.dylib
       0x11654b000 -        0x1165f6ff7 +libvtkIOLegacy-7.1.1.dylib (0) <511E854D-7B56-3F41-8FD5-2F5B5C5B981B> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOLegacy-7.1.1.dylib
       0x11664c000 -        0x116653fff +vtkParallelCorePython.so (0) <6011869D-8F92-3B52-910D-02E35F5DFFA5> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkParallelCorePython.so
       0x116656000 -        0x1166bbff7 +libvtkParallelCorePython27D-7.1.1.dylib (0) <FBE5D94C-EACD-3B1E-A0CE-82FC99575B3B> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkParallelCorePython27D-7.1.1.dylib
       0x1166f2000 -        0x116768ff7 +libvtkParallelCore-7.1.1.dylib (0) <3D3BAD19-12E8-3DD8-AFF0-281E3D2AD6B1> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkParallelCore-7.1.1.dylib
       0x1167bb000 -        0x1167c4fff +vtkFiltersAMRPython.so (0) <4E4F37E8-7A1E-35DE-B218-3A32DD92FA00> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersAMRPython.so
       0x1167c7000 -        0x1167e9fff +libvtkFiltersAMRPython27D-7.1.1.dylib (0) <138FBB59-8A32-3585-90E3-4E468E084F00> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersAMRPython27D-7.1.1.dylib
       0x1167ff000 -        0x11683dfff +libvtkFiltersAMR-7.1.1.dylib (0) <E1F0935C-5A25-3E3B-BF65-2E77B799433B> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersAMR-7.1.1.dylib
       0x116867000 -        0x11686ffff +vtkFiltersFlowPathsPython.so (0) <9E199AFF-605B-3CA1-A489-6435A0976302> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersFlowPathsPython.so
       0x116872000 -        0x1168caff7 +libvtkFiltersFlowPathsPython27D-7.1.1.dylib (0) <5DC25A4A-A9AC-36D9-BD8F-FF47C137ACF9> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersFlowPathsPython27D-7.1.1.dylib
       0x116903000 -        0x11699dfff +libvtkFiltersFlowPaths-7.1.1.dylib (0) <138D2941-BC85-36CC-85B4-26EBF4EF46A2> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersFlowPaths-7.1.1.dylib
       0x1169fd000 -        0x116a05fff +vtkFiltersGenericPython.so (0) <8FB35A67-95A1-364A-850E-B72105F8EA8B> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersGenericPython.so
       0x116a08000 -        0x116a49ff7 +libvtkFiltersGenericPython27D-7.1.1.dylib (0) <D7EC6E71-10ED-38B5-A2C6-651305F226BB> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersGenericPython27D-7.1.1.dylib
       0x116a74000 -        0x116aadfff +libvtkFiltersGeneric-7.1.1.dylib (0) <5D53152A-DBA2-387C-8C99-FB4400E64522> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersGeneric-7.1.1.dylib
       0x116ad3000 -        0x116ad9fff +vtkImagingSourcesPython.so (0) <14F304CE-7ABD-35B0-9F0F-7046CF8139B8> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkImagingSourcesPython.so
       0x116adc000 -        0x116b06ff7 +libvtkImagingSourcesPython27D-7.1.1.dylib (0) <747F5D04-2463-3331-AA31-50FDF4869907> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingSourcesPython27D-7.1.1.dylib
       0x116b22000 -        0x116b6fff7 +libvtkImagingSources-7.1.1.dylib (0) <5B5E94F8-B056-32A8-8F24-109B776043D4> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingSources-7.1.1.dylib
       0x116bd0000 -        0x116bdbfff +vtkFiltersHybridPython.so (0) <74A43A98-1180-3E51-BB40-C7DD075693EC> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersHybridPython.so
       0x116bde000 -        0x116c52fff +libvtkFiltersHybridPython27D-7.1.1.dylib (0) <1AE6B42F-0ADA-3F2D-95FA-9D723C3DC1A7> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersHybridPython27D-7.1.1.dylib
       0x116c9a000 -        0x116dc4ff7 +libvtkFiltersHybrid-7.1.1.dylib (0) <534C4B07-0032-370A-802F-2DE57FFDE054> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersHybrid-7.1.1.dylib
       0x116e4c000 -        0x116e53fff +vtkImagingGeneralPython.so (0) <0C60A2E2-38EA-310C-91C2-B8C02CCBC074> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkImagingGeneralPython.so
       0x116e56000 -        0x116e91fff +libvtkImagingGeneralPython27D-7.1.1.dylib (0) <792B6B40-02BB-397C-86A9-E125BD223519> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingGeneralPython27D-7.1.1.dylib
       0x116ec0000 -        0x116fcaff7 +libvtkImagingGeneral-7.1.1.dylib (0) <802956F7-6D64-300D-BAD8-A45EACDFD3C9> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingGeneral-7.1.1.dylib
       0x117027000 -        0x117030fff +vtkFiltersImagingPython.so (0) <59870AD3-0FFA-33F7-A19F-A63FB9462E7B> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersImagingPython.so
       0x117033000 -        0x11704bfff +libvtkFiltersImagingPython27D-7.1.1.dylib (0) <68007BA5-A5C4-38E5-98C6-2864C4042FDF> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersImagingPython27D-7.1.1.dylib
       0x11705b000 -        0x117085ff7 +libvtkFiltersImaging-7.1.1.dylib (0) <6B6E9048-16DE-3066-92FA-EA2E5644EA56> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersImaging-7.1.1.dylib
       0x1170a2000 -        0x1170aafff +vtkFiltersModelingPython.so (0) <FE77A542-7875-381E-B042-18E2725E37FC> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersModelingPython.so
       0x1170ad000 -        0x11710cfff +libvtkFiltersModelingPython27D-7.1.1.dylib (0) <7ABDCA90-994C-36CE-9FFE-25F8B0E90AE7> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersModelingPython27D-7.1.1.dylib
       0x11714c000 -        0x1171bdff7 +libvtkFiltersModeling-7.1.1.dylib (0) <6C204400-11C9-364C-8789-C2256F4F661F> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersModeling-7.1.1.dylib
       0x117203000 -        0x11720afff +vtkFiltersSMPPython.so (0) <C4772DF7-F8E2-3586-BF5F-423A5DD3E46B> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersSMPPython.so
       0x11720d000 -        0x117224fff +libvtkFiltersSMPPython27D-7.1.1.dylib (0) <FD912CCB-2404-3A51-B2BC-6977D1C92F81> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersSMPPython27D-7.1.1.dylib
       0x117237000 -        0x1172d3fff +libvtkFiltersSMP-7.1.1.dylib (0) <F02DF154-2FF1-3ED3-AB5A-6DFF218C6B9F> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersSMP-7.1.1.dylib
       0x1173c0000 -        0x1173c7fff +vtkFiltersSelectionPython.so (0) <69CBAA8A-C747-37C3-B799-A0AF9C059D19> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersSelectionPython.so
       0x1173ca000 -        0x1173dfff7 +libvtkFiltersSelectionPython27D-7.1.1.dylib (0) <3BF5E900-3CD8-3302-8A71-F6C54F137E40> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersSelectionPython27D-7.1.1.dylib
       0x1173ed000 -        0x117408fff +libvtkFiltersSelection-7.1.1.dylib (0) <5661C41B-14DC-39B0-A06E-84C56ACC39C3> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersSelection-7.1.1.dylib
       0x11741c000 -        0x117423fff +vtkFiltersTexturePython.so (0) <7AB0704C-CE86-3BC2-905D-A3A642E8D555> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkFiltersTexturePython.so
       0x117426000 -        0x11744aff7 +libvtkFiltersTexturePython27D-7.1.1.dylib (0) <B9BC1FC3-647D-3E74-8545-9CA82F8D51F6> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersTexturePython27D-7.1.1.dylib
       0x117461000 -        0x117480fff +libvtkFiltersTexture-7.1.1.dylib (0) <FB87F5A3-C6B7-31E6-8D16-26797EA75F6E> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkFiltersTexture-7.1.1.dylib
       0x117497000 -        0x11749dfff +vtkIOGeometryPython.so (0) <73E826D9-4E3E-351D-BF2D-A123EDBD022F> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOGeometryPython.so
       0x1174a0000 -        0x117507fff +libvtkIOGeometryPython27D-7.1.1.dylib (0) <7C844A63-C4C4-3107-A4F8-0EE26D53775D> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOGeometryPython27D-7.1.1.dylib
       0x11754c000 -        0x11770eff7 +libvtkIOGeometry-7.1.1.dylib (0) <2AD73012-149B-36D3-BF90-3F0D5A549E4C> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOGeometry-7.1.1.dylib
       0x11779d000 -        0x1177a3fff +vtkIOXMLParserPython.so (0) <49A7583A-4B7F-38CF-A619-9C362A6E46BD> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOXMLParserPython.so
       0x1177a6000 -        0x1177b7ff7 +libvtkIOXMLParserPython27D-7.1.1.dylib (0) <B876B9A0-18A7-31C7-94E4-11D778361D2A> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOXMLParserPython27D-7.1.1.dylib
       0x1177c2000 -        0x1177e7ff7 +libvtkIOXMLParser-7.1.1.dylib (0) <9D87934F-7C8C-3D48-A982-8126A8A6F24E> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOXMLParser-7.1.1.dylib
       0x117804000 -        0x117831ff7 +libvtkexpat-7.1.1.dylib (0) <CB7DF223-DD2A-3E6A-B82E-893323E69C51> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkexpat-7.1.1.dylib
       0x11783f000 -        0x117846fff +vtkIOXMLPython.so (0) <29B21F0F-E43A-3E3D-8FAE-21C489150A84> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOXMLPython.so
       0x117849000 -        0x11788afff +libvtkIOXMLPython27D-7.1.1.dylib (0) <0AC44F92-A453-33A9-A64A-BFCA7CA79554> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOXMLPython27D-7.1.1.dylib
       0x1178c9000 -        0x11799eff7 +libvtkIOXML-7.1.1.dylib (0) <33F052FD-AB90-30B2-A1BA-32E15FD7D97F> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOXML-7.1.1.dylib
       0x117a4c000 -        0x117a52fff +vtkIOImagePython.so (0) <E903B68F-A888-3287-8B55-8F08B5B674F5> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOImagePython.so
       0x117a55000 -        0x117aefff7 +libvtkIOImagePython27D-7.1.1.dylib (0) <9B177349-D6A1-31F5-8AF1-16CA7A5EAB63> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOImagePython27D-7.1.1.dylib
       0x117b53000 -        0x117d51ff7 +libvtkIOImage-7.1.1.dylib (0) <EB04CD53-2E0D-3D25-A5EB-2EE427E79FB9> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOImage-7.1.1.dylib
       0x117def000 -        0x117e1eff7 +libvtkpng-7.1.1.dylib (0) <315181E4-94E2-31E2-963E-E66E9608DBC9> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkpng-7.1.1.dylib
       0x117e2d000 -        0x117e97ff7 +libvtktiff-7.1.1.dylib (0) <37879410-45C1-395A-8E26-64717D800C11> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtktiff-7.1.1.dylib
       0x117eb1000 -        0x117fc8fff +libvtkmetaio-7.1.1.dylib (0) <530444EF-A766-3F01-9ECD-CE2CF261EF2E> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkmetaio-7.1.1.dylib
       0x11802e000 -        0x118072ff7 +libvtkDICOMParser-7.1.1.dylib (0) <512FA6E6-0B18-3C1C-B6AA-3A649373CBD4> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkDICOMParser-7.1.1.dylib
       0x118098000 -        0x1180c3ff7 +libvtkjpeg-7.1.1.dylib (0) <95B0725E-4DCA-30D3-B7AB-67EBDFA0749B> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkjpeg-7.1.1.dylib
       0x118113000 -        0x11811afff +vtkImagingHybridPython.so (0) <9B5D13C6-BE75-3C81-B12D-0A87AED03DE9> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkImagingHybridPython.so
       0x11811d000 -        0x11817aff7 +libvtkImagingHybridPython27D-7.1.1.dylib (0) <C1E0E852-DB3E-3FF3-99D3-DE716473E6F0> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingHybridPython27D-7.1.1.dylib
       0x1181af000 -        0x118246fff +libvtkImagingHybrid-7.1.1.dylib (0) <4DD2F78A-4784-3AEB-87E8-41E3E51B6F03> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingHybrid-7.1.1.dylib
       0x1182a1000 -        0x1182aefff +vtkInfovisLayoutPython.so (0) <48AAA724-5AD0-372A-AF76-BAF3E3B20163> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkInfovisLayoutPython.so
       0x1182b1000 -        0x118347ff7 +libvtkInfovisLayoutPython27D-7.1.1.dylib (0) <EC4DA600-60A0-3D01-BD6B-5CFB6D2AD607> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkInfovisLayoutPython27D-7.1.1.dylib
       0x1183af000 -        0x11845bfff +libvtkInfovisLayout-7.1.1.dylib (0) <0223E8CE-78AA-31FB-AF16-FFB167771F6E> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkInfovisLayout-7.1.1.dylib
       0x11850a000 -        0x118516fff +vtkInteractionStylePython.so (0) <785830DF-DE8C-30C0-A2E7-39DFE62D41CB> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkInteractionStylePython.so
       0x118519000 -        0x118556fff +libvtkInteractionStylePython27D-7.1.1.dylib (0) <65F248B9-635E-3449-B050-0420D092BA47> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkInteractionStylePython27D-7.1.1.dylib
       0x11858c000 -        0x1185c8fff +libvtkInteractionStyle-7.1.1.dylib (0) <F3147CDC-1208-3899-B167-8ABF1E39A345> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkInteractionStyle-7.1.1.dylib
       0x118601000 -        0x118607fff +vtkImagingColorPython.so (0) <19524367-EF5D-3703-A589-42B6C23D013C> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkImagingColorPython.so
       0x11860a000 -        0x11861efff +libvtkImagingColorPython27D-7.1.1.dylib (0) <AF48EDA3-6D55-312B-AA15-34C7ACECFD36> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingColorPython27D-7.1.1.dylib
       0x11862e000 -        0x118678fff +libvtkImagingColor-7.1.1.dylib (0) <85F279E3-4657-309F-B3A9-81C1C78AE355> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingColor-7.1.1.dylib
       0x11869c000 -        0x1186a7fff +vtkRenderingAnnotationPython.so (0) <6AF32528-D80D-3ADE-882F-66E07FDBDC10> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingAnnotationPython.so
       0x1186aa000 -        0x11880fff7 +libvtkRenderingAnnotationPython27D-7.1.1.dylib (0) <F647722C-EAC4-3709-B5E4-F711CF375A84> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingAnnotationPython27D-7.1.1.dylib
       0x1188db000 -        0x118a36fff +libvtkRenderingAnnotation-7.1.1.dylib (0) <A12743CC-913E-38C8-AEF4-5CA3940BE928> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingAnnotation-7.1.1.dylib
       0x118b20000 -        0x118b2afff +vtkRenderingVolumePython.so (0) <68501185-DB20-34FC-9E36-35E991225B4C> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingVolumePython.so
       0x118b2d000 -        0x118bddff7 +libvtkRenderingVolumePython27D-7.1.1.dylib (0) <DD5CC3E0-BB4B-3485-ACD0-966FD59E6A1F> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingVolumePython27D-7.1.1.dylib
       0x118c5f000 -        0x11914cfff +libvtkRenderingVolume-7.1.1.dylib (0) <2039E35F-5F6D-3DCD-947B-AB4F54418227> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingVolume-7.1.1.dylib
       0x11943c000 -        0x11944ffff +vtkInteractionWidgetsPython.so (0) <A910EA0E-A934-30D8-8CE1-D5DD2599C4EC> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkInteractionWidgetsPython.so
       0x119452000 -        0x1196c5ff7 +libvtkInteractionWidgetsPython27D-7.1.1.dylib (0) <3C91EB9C-358A-3A46-966B-D259C848803D> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkInteractionWidgetsPython27D-7.1.1.dylib
       0x119891000 -        0x119acaff7 +libvtkInteractionWidgets-7.1.1.dylib (0) <71FF3B06-33F8-35D2-9D15-7EF6708F9218> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkInteractionWidgets-7.1.1.dylib
       0x119cd5000 -        0x119ce8fff +vtkViewsCorePython.so (0) <B37FA9FD-FA72-39C8-878F-3CC47115D619> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkViewsCorePython.so
       0x119ceb000 -        0x119d21ff7 +libvtkViewsCorePython27D-7.1.1.dylib (0) <765A98E2-0EF0-3106-A7DC-9C14CF6B80BA> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkViewsCorePython27D-7.1.1.dylib
       0x119d3d000 -        0x119d76ff7 +libvtkViewsCore-7.1.1.dylib (0) <D662D1B0-BAEB-3F28-8EE0-FB1789DD0BC3> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkViewsCore-7.1.1.dylib
       0x119da2000 -        0x119db9fff +vtkGeovisCorePython.so (0) <7ECF0756-7955-3FAA-9FA8-829AD7AF43AA> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkGeovisCorePython.so
       0x119dbc000 -        0x119e28fff +libvtkGeovisCorePython27D-7.1.1.dylib (0) <C03551FE-EC8C-3276-AF44-9D698CACB66E> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkGeovisCorePython27D-7.1.1.dylib
       0x119e6c000 -        0x119f0efff +libvtkGeovisCore-7.1.1.dylib (0) <65834812-E644-325B-AD1E-B0C78691E0C1> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkGeovisCore-7.1.1.dylib
       0x119f7c000 -        0x119fd8fff +libproj.9.dylib (0) <6FEFFD6A-A658-35B4-9C10-E930CBC3B8BA> /usr/local/uvcdat/2.4.1rc/Externals/proj4/lib/libproj.9.dylib
       0x11a027000 -        0x11a033fff +vtkRenderingOpenGLPython.so (0) <D4953DEB-29F6-3390-8371-A3E54DA1E0E9> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingOpenGLPython.so
       0x11a036000 -        0x11a102fff +libvtkRenderingOpenGLPython27D-7.1.1.dylib (0) <D4FAF4EB-71E7-3701-974F-7EBF7DBABAC4> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingOpenGLPython27D-7.1.1.dylib
       0x11a1b7000 -        0x11a460fff +libvtkRenderingOpenGL-7.1.1.dylib (0) <C476066C-86DB-321A-BB19-ED8B0054E064> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingOpenGL-7.1.1.dylib
       0x11a5ff000 -        0x11a60dfff +vtkRenderingContextOpenGLPython.so (0) <C0AB0210-90F8-3A24-B903-42FB24E6E7CB> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingContextOpenGLPython.so
       0x11a610000 -        0x11a630ff7 +libvtkRenderingContextOpenGLPython27D-7.1.1.dylib (0) <3D4E4009-08F9-363B-B58D-5FEEC84D79C2> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingContextOpenGLPython27D-7.1.1.dylib
       0x11a644000 -        0x11a682fff +libvtkRenderingContextOpenGL-7.1.1.dylib (0) <FF9E65C7-1913-3FD6-B84D-80535505C9A4> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingContextOpenGL-7.1.1.dylib
       0x11a6aa000 -        0x11a6b8fff +vtkRenderingGL2PSPython.so (0) <4A88E8AD-7BE4-3D04-9CAE-EE59EC658AA8> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingGL2PSPython.so
       0x11a6bb000 -        0x11a6d1ff7 +libvtkRenderingGL2PSPython27D-7.1.1.dylib (0) <FD993AB7-461B-396E-8008-F12F97C5CC57> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingGL2PSPython27D-7.1.1.dylib
       0x11a6db000 -        0x11a6f7fff +libvtkRenderingGL2PS-7.1.1.dylib (0) <F1C81E57-91F2-3A67-A6EC-3AD4ED2CAFD2> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingGL2PS-7.1.1.dylib
       0x11a70a000 -        0x11a723ff7 +libvtkgl2ps-7.1.1.dylib (0) <EDE72885-A993-3345-9AAF-86CD434B5D05> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkgl2ps-7.1.1.dylib
       0x11a72d000 -        0x11a73cfff +vtkIOExportPython.so (0) <59BC293D-EAD6-301F-B36B-9086ADDE9CF7> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOExportPython.so
       0x11a73f000 -        0x11a786fff +libvtkIOExportPython27D-7.1.1.dylib (0) <C53A8A44-D762-3C45-80DD-657B0E2DC184> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOExportPython27D-7.1.1.dylib
       0x11a7b1000 -        0x11a82bff7 +libvtkIOExport-7.1.1.dylib (0) <CA8AACB3-CE13-30D4-BD5A-E6F4E7E96D0A> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOExport-7.1.1.dylib
       0x11a869000 -        0x11a876fff +vtkRenderingLabelPython.so (0) <EBAA7F99-6A09-32C0-8F19-4C7FD70178F8> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingLabelPython.so
       0x11a879000 -        0x11a8cafff +libvtkRenderingLabelPython27D-7.1.1.dylib (0) <5494D82D-2274-3729-BCC1-4ADCD3B0AAC9> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingLabelPython27D-7.1.1.dylib
       0x11a8ff000 -        0x11a9d8fff +libvtkRenderingLabel-7.1.1.dylib (0) <60BC8EDE-2C17-3E9A-816E-20C13E533ECB> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingLabel-7.1.1.dylib
       0x11aa44000 -        0x11aa57fff +vtkIOExportOpenGLPython.so (0) <469488E6-3FAD-329B-98DF-AB3436443B54> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOExportOpenGLPython.so
       0x11aa5a000 -        0x11aa70ff7 +libvtkIOExportOpenGLPython27D-7.1.1.dylib (0) <D335D3B0-C086-3ED5-B9AC-61B89FE5D745> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOExportOpenGLPython27D-7.1.1.dylib
       0x11aa76000 -        0x11aa97ff7 +libvtkIOExportOpenGL-7.1.1.dylib (0) <CD330248-2E30-3679-8C00-50E7B036620D> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOExportOpenGL-7.1.1.dylib
       0x11aaae000 -        0x11aab4fff +vtkIOMoviePython.so (0) <1167AD70-E94A-334E-A6AC-1C2AE2E5021A> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOMoviePython.so
       0x11aab7000 -        0x11aac3fff +libvtkIOMoviePython27D-7.1.1.dylib (0) <B8C34CA5-EDDF-3292-81E6-AAC1090A0AB0> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOMoviePython27D-7.1.1.dylib
       0x11aacb000 -        0x11aad8ff7 +libvtkIOMovie-7.1.1.dylib (0) <BD7088A0-6E5E-3488-B723-9E262A43E8A7> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOMovie-7.1.1.dylib
       0x11aae4000 -        0x11ab25fff +libvtkoggtheora-7.1.1.dylib (0) <8660264D-9B6E-3068-B12F-A8835DBA63BD> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkoggtheora-7.1.1.dylib
       0x11ab38000 -        0x11ab3ffff +vtkIOFFMPEGPython.so (0) <F583BFE0-F6A5-322B-8E88-A65980EB1429> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOFFMPEGPython.so
       0x11ab42000 -        0x11ab4eff7 +libvtkIOFFMPEGPython27D-7.1.1.dylib (0) <5C44A5B9-A7FD-34D4-9092-254FD2C34D1B> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOFFMPEGPython27D-7.1.1.dylib
       0x11ab55000 -        0x11ab63fff +libvtkIOFFMPEG-7.1.1.dylib (0) <7A38EE80-4E0F-3D22-ADB4-F8264FDEF354> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOFFMPEG-7.1.1.dylib
       0x11ab6d000 -        0x11acd1fff +libavformat.56.dylib (0) <0EE29AA7-C23D-3D05-BBD4-C2B677370A68> /usr/local/uvcdat/2.4.1rc/Externals/lib/libavformat.56.dylib
       0x11ad0e000 -        0x11b602fef +libavcodec.56.dylib (0) <EBAF51E1-CA56-3F8F-9EF4-48A07AAEE2DF> /usr/local/uvcdat/2.4.1rc/Externals/lib/libavcodec.56.dylib
       0x11bcc1000 -        0x11bcfffff +libavutil.54.dylib (0) <83FE5A1A-4A16-30BC-90E1-55B0157ECAFF> /usr/local/uvcdat/2.4.1rc/Externals/lib/libavutil.54.dylib
       0x11bd22000 -        0x11bd8cfff +libswscale.3.dylib (0) <B93E3E0E-D3FE-3F62-BAC4-A3021E427A2F> /usr/local/uvcdat/2.4.1rc/Externals/lib/libswscale.3.dylib
       0x11bd99000 -        0x11bda8ff7 +libswresample.1.dylib (0) <D988BB78-4AC1-3DB6-A443-89224D7965EF> /usr/local/uvcdat/2.4.1rc/Externals/lib/libswresample.1.dylib
       0x11bdad000 -        0x11bdaefff  com.apple.VideoDecodeAcceleration (1.1 - 10) <F60331EB-A26D-3332-8F0E-17C6F24F7092> /System/Library/Frameworks/VideoDecodeAcceleration.framework/Versions/A/VideoDecodeAcceleration
       0x11bdb4000 -        0x11be6efff +libx264.148.dylib (0) <A7C22136-8A3F-3D23-AAEB-D045C2F61D31> /usr/local/uvcdat/2.4.1rc/Externals/lib/libx264.148.dylib
       0x11bef6000 -        0x11bf01fff +vtkIOImportPython.so (0) <7822A972-A418-38B4-B313-98A1FA7CE1BA> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkIOImportPython.so
       0x11bf04000 -        0x11bf16ff7 +libvtkIOImportPython27D-7.1.1.dylib (0) <C2DC43EB-C787-32E0-A382-577F9098591F> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOImportPython27D-7.1.1.dylib
       0x11bf1f000 -        0x11bf7cfff +libvtkIOImport-7.1.1.dylib (0) <AC03692A-7580-3363-A0AF-E5019C9091E4> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkIOImport-7.1.1.dylib
       0x11bfad000 -        0x11bfb3fff +vtkImagingMathPython.so (0) <BDA13B0E-32D7-3636-A9E0-20E1A6ECA3BB> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkImagingMathPython.so
       0x11bfb6000 -        0x11bfcdff7 +libvtkImagingMathPython27D-7.1.1.dylib (0) <4DBEE3BE-2110-3B0F-A96F-F46889826BA0> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingMathPython27D-7.1.1.dylib
       0x11bfe1000 -        0x11c01eff7 +libvtkImagingMath-7.1.1.dylib (0) <06035138-D539-3C40-95C4-BF38E046C339> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingMath-7.1.1.dylib
       0x11c07f000 -        0x11c086fff +vtkImagingStencilPython.so (0) <C616EED7-22E7-32C3-9A8A-940C6B62493C> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkImagingStencilPython.so
       0x11c089000 -        0x11c0a4fff +libvtkImagingStencilPython27D-7.1.1.dylib (0) <BAFFC85C-9AF0-3369-8A47-349EC7F96146> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingStencilPython27D-7.1.1.dylib
       0x11c0b9000 -        0x11c0efff7 +libvtkImagingStencil-7.1.1.dylib (0) <488A0EF3-1230-30F7-BD4E-33206DCE3655> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkImagingStencil-7.1.1.dylib
       0x11c119000 -        0x11c12cfff +vtkInteractionImagePython.so (0) <338F8196-6E71-37BA-9C16-9F7187B5E548> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkInteractionImagePython.so
       0x11c12f000 -        0x11c157fff +libvtkInteractionImagePython27D-7.1.1.dylib (0) <6D3C1850-2096-33CE-B7F0-46DA57A06C8C> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkInteractionImagePython27D-7.1.1.dylib
       0x11c16b000 -        0x11c183fff +libvtkInteractionImage-7.1.1.dylib (0) <DE650C98-F8E3-3041-B99C-F2DA7BDC5231> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkInteractionImage-7.1.1.dylib
       0x11c199000 -        0x11c1a3fff +vtkRenderingImagePython.so (0) <AC1D6024-1D66-3FB4-812E-4D87BD8D5914> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingImagePython.so
       0x11c1a6000 -        0x11c1c0ff7 +libvtkRenderingImagePython27D-7.1.1.dylib (0) <BE1B9D32-CBA6-3F24-AA52-AFC4C348A1AE> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingImagePython27D-7.1.1.dylib
       0x11c1d0000 -        0x11c1ecfff +libvtkRenderingImage-7.1.1.dylib (0) <338E6745-C320-3EA5-9AD9-416A037B5FB9> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingImage-7.1.1.dylib
       0x11c203000 -        0x11c210fff +vtkRenderingVolumeOpenGLPython.so (0) <EF016B69-753A-37E8-834F-761F28809CDE> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkRenderingVolumeOpenGLPython.so
       0x11c213000 -        0x11c235ff7 +libvtkRenderingVolumeOpenGLPython27D-7.1.1.dylib (0) <922BDCB9-079B-3211-BD29-974F8C3C2C49> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingVolumeOpenGLPython27D-7.1.1.dylib
       0x11c24c000 -        0x11c313ff7 +libvtkRenderingVolumeOpenGL-7.1.1.dylib (0) <6BE0A52B-9896-312B-B8E0-C07BC3B6A30D> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkRenderingVolumeOpenGL-7.1.1.dylib
       0x11c356000 -        0x11c36dfff +vtkViewsInfovisPython.so (0) <922DF84F-3248-3FCA-9EA1-59B8C0AC1823> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkViewsInfovisPython.so
       0x11c370000 -        0x11c41dfff +libvtkViewsInfovisPython27D-7.1.1.dylib (0) <F6183C28-09C1-39A9-9830-C913E9530116> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkViewsInfovisPython27D-7.1.1.dylib
       0x11c49d000 -        0x11c599fff +libvtkViewsInfovis-7.1.1.dylib (0) <964FF040-700E-3CDD-AFBD-A6C24B58EA4F> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkViewsInfovis-7.1.1.dylib
       0x11c667000 -        0x11c681fff +vtkViewsGeovisPython.so (0) <54BCC8EE-AAE8-3D31-9154-666B16646BD2> /usr/local/uvcdat/2.4.1rc/Externals/lib/python2.7/site-packages/vtk/vtkViewsGeovisPython.so
       0x11c684000 -        0x11c6a3fff +libvtkViewsGeovisPython27D-7.1.1.dylib (0) <8A65CB0C-1763-3ECF-9B78-C33263D6180E> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkViewsGeovisPython27D-7.1.1.dylib
       0x11c6ab000 -        0x11c6c0ff7 +libvtkViewsGeovis-7.1.1.dylib (0) <992CDF0E-DAA4-3398-8B27-12332B13B031> /usr/local/uvcdat/2.4.1rc/Externals/lib/libvtkViewsGeovis-7.1.1.dylib
       0x11c779000 -        0x11c77cff7 +_multiprocessing.so (0) <5D7EE96F-C59B-3F00-BDCA-9FA9B02816D6> /usr/local/uvcdat/2.4.1rc/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_multiprocessing.so
       0x11f6d7000 -        0x11f6ebfe3  libCGInterfaces.dylib (317.9) <5079DE4F-3717-32FF-B76A-77F53236D17D> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
       0x11f794000 -        0x11f93fffb  GLEngine (12.0.40.6) <D55FDA69-AE2C-3AA1-9565-309C13C1C5C2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
       0x11f97c000 -        0x11fed4ff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.12.13 - 10.1.2) <B1C57091-1946-3B84-A380-94B5A109E53C> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
       0x1200d0000 -        0x1200faff7  GLRendererFloat (12.0.40.6) <E739EE06-2F9C-3D46-AC6D-122DCD66E8C9> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
    0x7fff6710d000 -     0x7fff67144007  dyld (360.19) <9D05FDF4-65CE-3B53-86D4-ABE1A5BF35F3> /usr/lib/dyld
    0x7fff8b73b000 -     0x7fff8b749ff7  libbz2.1.0.dylib (38) <28E54258-C0FE-38D4-AB76-1734CACCB344> /usr/lib/libbz2.1.0.dylib
    0x7fff8b74a000 -     0x7fff8b7b9fff  com.apple.datadetectorscore (7.0 - 460) <CDBB7D7D-B189-37B0-AA4B-DC79090D0D71> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff8b7ba000 -     0x7fff8b7c6ff7  com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <8B6C0DB6-8744-3AEB-BD00-9FA6967E7125> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff8b7e6000 -     0x7fff8b7eefff  com.apple.AppleSRP (5.0 - 1) <25775E90-1DBB-3BFA-B4B4-F8F262B9EC1F> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff8b7ef000 -     0x7fff8b81dff7  com.apple.CoreServicesInternal (248.2 - 248.2) <7D0D2C65-C4C4-3FBD-89A7-12302EA444AA> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff8b81e000 -     0x7fff8b824fff  com.apple.IOAccelerator (205.1 - 205.1) <9B56A248-FA12-3DB9-AD97-51EB4700E8A8> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff8b825000 -     0x7fff8ba32ffb  libicucore.A.dylib (551.41) <CFFD7342-A7D6-323A-AC14-B9EECF6EFFED> /usr/lib/libicucore.A.dylib
    0x7fff8ba33000 -     0x7fff8ba37fff  libpam.2.dylib (20) <CFCD19BD-87BC-3F2B-BB1C-4C23E8E55F1A> /usr/lib/libpam.2.dylib
    0x7fff8ba3a000 -     0x7fff8ba54fff  com.apple.Kerberos (3.0 - 1) <836358DE-2731-3ACD-98E3-E5FA48917728> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8bad3000 -     0x7fff8baf4fff  com.apple.Sharing (442.9.1 - 442.9.1) <672DE6DF-98E0-30A4-BA25-44BDE188D0BE> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8c386000 -     0x7fff8c38efff  libMatch.1.dylib (27) <3AC0BFB8-7E69-3DBE-A175-7F3946FC4554> /usr/lib/libMatch.1.dylib
    0x7fff8c38f000 -     0x7fff8c390fff  liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib
    0x7fff8c391000 -     0x7fff8c8e8fff  com.apple.MediaToolbox (1.0 - 1731.15.33) <16374746-DF5E-3103-994B-74CF151BD06A> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff8caaf000 -     0x7fff8cac9ff3  liblzma.5.dylib (10) <CC03591B-FA57-3CA5-AC81-0D76033AC0CE> /usr/lib/liblzma.5.dylib
    0x7fff8caca000 -     0x7fff8cacafff  com.apple.CoreServices (728.6 - 728.6) <1FC9300C-6D3D-330C-829C-C8F094BC38C6> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8d351000 -     0x7fff8d42afff  com.apple.CoreMedia (1.0 - 1731.15.33) <6109D83B-4E0B-3DE2-9856-9FD80EA51CE0> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8d482000 -     0x7fff8d483fff  libsystem_secinit.dylib (20) <FD6ECF2C-1489-32CA-981B-9045B5EB1FAA> /usr/lib/system/libsystem_secinit.dylib
    0x7fff8d484000 -     0x7fff8d5a8fff  libsqlite3.dylib (216.4) <280D67B8-F93D-3587-A146-19F36C817548> /usr/lib/libsqlite3.dylib
    0x7fff8d5f4000 -     0x7fff8d605ff7  libsystem_trace.dylib (201.10.3) <B485369F-E3A1-319E-998C-89AAF606079E> /usr/lib/system/libsystem_trace.dylib
    0x7fff8d606000 -     0x7fff8d662fff  libTIFF.dylib (1442) <28DF1565-3705-3ED3-B570-C9CB12376D2E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8d673000 -     0x7fff8d79fff7  com.apple.CoreText (352.0 - 494.10) <9FD834B1-FF8E-3EB0-BB11-6E9120969086> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8d7a8000 -     0x7fff8d7cafff  com.apple.IconServices (68.1 - 68.1) <3ECAA762-1193-3D76-A25F-7680DB3A957E> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff8d7cb000 -     0x7fff8d802ff7  com.apple.LDAPFramework (2.4.28 - 194.5) <79D981F2-F70C-3E47-B124-DC0C90D45563> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff8d8f6000 -     0x7fff8d913ff7  com.apple.AppleVPAFramework (2.1.2 - 2.1.2) <2B459E1F-0563-30B2-A04D-CF1793426B66> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff8d914000 -     0x7fff8d925fff  libSparseBLAS.dylib (1159) <3C520738-8F54-36E4-B966-97D1F886F59E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff8d926000 -     0x7fff8d93efd7  libcompression.dylib (25) <202CE8A7-3D5B-347A-BD22-F0CB589B29AF> /usr/lib/libcompression.dylib
    0x7fff8dd00000 -     0x7fff8dd00fff  libmetal_timestamp.dylib (600.0.43.5) <4BA5B935-F932-3863-9B31-EF0A7DEAF15C> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
    0x7fff8dd01000 -     0x7fff8dd06fff  com.apple.MediaAccessibility (1.0 - 79) <CCF71DC1-BB6A-3227-BD1B-AFD172592A63> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff8de07000 -     0x7fff8de0cfff  com.apple.DiskArbitration (2.7 - 2.7) <B7FAE647-156A-30C8-BA8B-69D188D02602> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8de3c000 -     0x7fff8de91ff7  com.apple.AE (701 - 701) <FB22BE84-9CB8-36BF-8061-F93D716C0A84> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff8deac000 -     0x7fff8deaefff  libCGXType.A.dylib (948) <C3D473CF-7261-3E0D-A161-E9B642B75D6A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff8deb5000 -     0x7fff8decefff  com.apple.openscripting (1.7.1 - 169.1) <F6532253-9EC5-3FF3-AA16-8AE58531B1D1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff8dff3000 -     0x7fff8e003fff  libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib
    0x7fff8f08e000 -     0x7fff8f090ff7  com.apple.securityhi (9.0 - 55006) <B97C1C77-AA51-33ED-941D-F766BC94CD9E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff8f16b000 -     0x7fff8f189fff  libsystem_kernel.dylib (3248.30.4) <9CEB6C3B-1CAF-3C32-A9FD-93BC72CBCEA1> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8f1a8000 -     0x7fff8f21cff3  com.apple.securityfoundation (6.0 - 55126) <11644DA4-F1CF-3FB1-86A0-0DA8E8C27148> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff8f21d000 -     0x7fff8f262ff7  com.apple.coreservices.SharedFileList (24.4 - 24.5) <72156BE7-0804-3F90-9AF9-14C4739430C2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff8f326000 -     0x7fff8f32efff  com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff8f32f000 -     0x7fff8f382ff7  libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib
    0x7fff8f383000 -     0x7fff8f385ff7  libRadiance.dylib (1442) <1E42E394-4CD2-3E10-8591-9BB234829AC6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8f3ce000 -     0x7fff8f575ffb  com.apple.avfoundation (2.0 - 1046.9.2) <FE83988E-9A6D-3386-ACD7-A0A4D7A006DF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff8f576000 -     0x7fff8f7fcff7  com.apple.CFNetwork (760.2.6 - 760.2.6) <653B1552-C1EC-36A5-85D0-9FC3ED3CCF72> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8f7fd000 -     0x7fff8f947fc7  com.apple.coreui (2.1 - 365.2) <727C55D3-503A-3EC4-8A23-C984E320F65F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8f948000 -     0x7fff8f950fff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <D44F75E7-C679-3C21-AD76-8FA8A2B898F1> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff8f9da000 -     0x7fff8f9e4fff  com.apple.NetAuth (6.0 - 6.0) <19E44307-6F9F-3DEC-8C1A-4685BC252A35> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8f9e5000 -     0x7fff8f9e8ff7  com.apple.help (1.3.3 - 46) <62056D9B-A87C-3E4D-B4E2-7E1CDB74CE68> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff8f9e9000 -     0x7fff8fae5ff7  libFontParser.dylib (158.4) <BF7F82EB-7820-364A-865E-442F42BFDFA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8fb02000 -     0x7fff8fb69fff  com.apple.framework.CoreWiFi (11.0 - 1101.20) <BEC7B27E-8CE8-3DAB-BFDF-6C240C6A4B12> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8fb6a000 -     0x7fff8fb95ffb  libarchive.2.dylib (33.20.2) <6C370A21-63FD-3A68-B4B3-5333F24B770B> /usr/lib/libarchive.2.dylib
    0x7fff8fb96000 -     0x7fff8fb99ffb  libdyld.dylib (360.19) <AA629043-C6F6-32FE-8007-E3478E99ACA7> /usr/lib/system/libdyld.dylib
    0x7fff8fb9a000 -     0x7fff8ff2ffdb  com.apple.vImage (8.0 - 8.0) <4BAC9B6F-7482-3580-8787-AB0A5B4D331B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff8ff30000 -     0x7fff900bcff7  libGLProgrammability.dylib (12.0.40.6) <60C68BA6-D375-39D5-9ADD-B394FB760A86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff900c0000 -     0x7fff9012eff7  com.apple.ApplicationServices.ATS (377 - 394.3) <0DDD3503-3D74-3CCA-BD25-7F19B03C2579> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff9019c000 -     0x7fff90491fff  com.apple.HIToolbox (2.1.1 - 807.2) <D9338BEF-CA84-3085-B6CB-4E93B3B9A2E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff90492000 -     0x7fff9049bff7  libsystem_pthread.dylib (138.10.4) <327CECD0-B881-3153-8FCC-4FD4818B7F16> /usr/lib/system/libsystem_pthread.dylib
    0x7fff904a2000 -     0x7fff904a5fff  libspindump.dylib (197.1) <61EB1BFE-8600-3420-B18E-1541D3C15C5C> /usr/lib/libspindump.dylib
    0x7fff904fe000 -     0x7fff9050ffff  libcmph.dylib (6) <BA4BF2C6-7F4E-33B8-9DD7-619C9EB83ECF> /usr/lib/libcmph.dylib
    0x7fff90510000 -     0x7fff90555ff3  libFontRegistry.dylib (155.1) <593CC743-3785-3CC5-A229-D3846C51E054> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff90565000 -     0x7fff906ccfff  libBLAS.dylib (1159) <8C24B8BC-E7D9-386D-97C8-929728AFE10B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff907a3000 -     0x7fff907abfff  libsystem_networkextension.dylib (385.20.6) <DC8A102A-BF02-31A4-8914-65C34DF6B592> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff90911000 -     0x7fff91534ff7  com.apple.AppKit (6.9 - 1404.34) <467468E2-C551-3408-B351-414B21F57DEB> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff916e3000 -     0x7fff916e3ff7  liblaunch.dylib (756.20.4) <EDF719D6-D2BB-38DD-8C94-4272BEFDA2CD> /usr/lib/system/liblaunch.dylib
    0x7fff9196f000 -     0x7fff919cdfff  com.apple.SystemConfiguration (1.14 - 1.14) <5A70115B-E346-3EBD-A617-9A11C61EEF2E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff91a75000 -     0x7fff91a9efff  libsystem_info.dylib (477.20.1) <6513635B-4ADE-3B45-BF63-ED7AC565B0C9> /usr/lib/system/libsystem_info.dylib
    0x7fff91ef0000 -     0x7fff91ef8fff  libcopyfile.dylib (127) <F5133269-0B22-388C-A57C-079667B6291E> /usr/lib/system/libcopyfile.dylib
    0x7fff9275a000 -     0x7fff9289ffff  com.apple.QTKit (7.7.3 - 2943) <6DD72D38-9449-3289-904E-B6E148993AA5> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff928a0000 -     0x7fff928abfff  libGL.dylib (12.0.40.6) <2A13E40A-BFA1-34FD-925A-C7023FEF254C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff92983000 -     0x7fff92984ffb  libremovefile.dylib (41) <B8D1A5FC-CFD5-3AAB-8A10-14DDC129710A> /usr/lib/system/libremovefile.dylib
    0x7fff92985000 -     0x7fff92987ff7  libquarantine.dylib (80) <163CF63A-7455-3D1F-AE57-8C4475A9204C> /usr/lib/system/libquarantine.dylib
    0x7fff92a34000 -     0x7fff92a95ff7  libsystem_network.dylib (583.20.10) <865FE79A-A22D-3733-A14F-FC7B37F3AECD> /usr/lib/system/libsystem_network.dylib
    0x7fff92b6f000 -     0x7fff92b72fff  com.apple.IOSurface (108.0.1 - 108.0.1) <7B05B27A-5CC4-30D4-8A10-ED444A2807A2> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff92b73000 -     0x7fff92bd0fff  com.apple.CoreServices.OSServices (728.6 - 728.6) <CA616ACB-A872-386C-B16D-193A7E495C4D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff92d38000 -     0x7fff92d46fff  libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib
    0x7fff92e1a000 -     0x7fff93027ff7  com.apple.CoreImage (11.2.0 - 366.2.7) <344F1067-5F52-3626-8F6C-2B678DEB80A1> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff93028000 -     0x7fff9302bff7  libsystem_sandbox.dylib (460.30.1) <3E0036AF-FC64-3352-8DA4-6B550C2C2562> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff931ef000 -     0x7fff931f2ff7  libCoreFSCache.dylib (119.5) <C7008E64-0AFB-3446-929E-BC3F76DEF049> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff931f3000 -     0x7fff93217fff  libJPEG.dylib (1442) <9616E8A5-60BA-3C70-8F37-A33055D227C8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff93219000 -     0x7fff935f1fef  com.apple.CoreAUC (214.0.0 - 214.0.0) <B43C7811-38A4-3F9A-9417-FD8F4B55EA82> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff935f2000 -     0x7fff9362afff  com.apple.RemoteViewServices (2.0 - 99) <596153FD-3CB9-3FED-9D63-1B73B01AC6DB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff93632000 -     0x7fff93665ff7  com.apple.MediaKit (16 - 809) <BF8032FE-6645-37F6-A622-BC7EEE3EAABF> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff936be000 -     0x7fff936c6fff  com.apple.NetFS (6.0 - 4.0) <BDD59EC5-D399-31EA-9B2A-60E3A859FC42> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff936c7000 -     0x7fff9374ffff  com.apple.CoreSymbolication (3.1 - 58048.1) <6436E5E0-B05C-36D6-942A-47026DD2D874> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff93750000 -     0x7fff937a2fff  com.apple.AppleVAFramework (5.0.32 - 5.0.32) <04AB634C-FB23-3538-937C-FF60E5E59DF8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff937a3000 -     0x7fff937d2ffb  libsystem_m.dylib (3105) <26655445-CA97-321E-B221-801CB378D1AA> /usr/lib/system/libsystem_m.dylib
    0x7fff937d3000 -     0x7fff9384afe7  libcorecrypto.dylib (335.20.1) <C6BD205F-4ECE-37EE-BCAB-A76F39CDCFFA> /usr/lib/system/libcorecrypto.dylib
    0x7fff93872000 -     0x7fff93912ff7  com.apple.Metadata (10.7.0 - 972.16) <3E42A570-BE32-396D-96E1-01B4A778D991> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff93913000 -     0x7fff93914fff  libsystem_blocks.dylib (65) <49D42329-7DE9-3413-92C3-A473A7E9CF35> /usr/lib/system/libsystem_blocks.dylib
    0x7fff93998000 -     0x7fff93998fff  com.apple.Cocoa (6.11 - 22) <0A634D46-B468-3CBC-B2A0-16C381C11BF2> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff939b9000 -     0x7fff939c4ff7  libChineseTokenizer.dylib (16) <998637AB-DC37-3A7C-A85C-F10FD98CAAD7> /usr/lib/libChineseTokenizer.dylib
    0x7fff939c5000 -     0x7fff939e0ff7  libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib
    0x7fff939e1000 -     0x7fff939fdff7  libsystem_malloc.dylib (67) <9EECAB18-F025-34C4-8E32-7EFFA6720EFC> /usr/lib/system/libsystem_malloc.dylib
    0x7fff93acd000 -     0x7fff93ad2ff3  libunwind.dylib (35.3) <124E0F05-2350-3774-A32C-7F5BF38EDE73> /usr/lib/system/libunwind.dylib
    0x7fff93ad3000 -     0x7fff93b04fff  com.apple.GSS (4.0 - 2.0) <25DECD44-0905-3E53-9480-DE7BEB84DB83> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff93b17000 -     0x7fff93ba0ff7  com.apple.PerformanceAnalysis (1.0 - 1) <FB33FACE-5A99-34E0-83CC-CEDCCFAC74C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff93bb1000 -     0x7fff93be1ff3  com.apple.CoreAVCHD (5.8.0 - 5800.4.2) <C34F0ECF-AABA-3FBC-980F-B4809C9B2DD1> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff93be2000 -     0x7fff93be5fff  libCoreVMClient.dylib (119.5) <CD7DE25C-D7AD-3ECD-BEEC-F57992A4A08E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff93be7000 -     0x7fff93df2fff  libFosl_dynamic.dylib (16.24) <363B7CEE-B662-32F3-9D7B-245E64927C35> /usr/lib/libFosl_dynamic.dylib
    0x7fff93df3000 -     0x7fff93ee5ff7  libiconv.2.dylib (44) <F05A0A5A-92A9-3668-8F20-F27CBDA26BE9> /usr/lib/libiconv.2.dylib
    0x7fff93f2d000 -     0x7fff93fa1fff  com.apple.Heimdal (4.0 - 2.0) <009F223D-B89B-376B-94F5-6D982CBEF771> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff93fa2000 -     0x7fff943d0fff  com.apple.vision.FaceCore (3.3.1 - 3.3.1) <B8482831-77BD-3FBC-A0B1-12502353AA57> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff943d6000 -     0x7fff943dfff7  com.apple.CommonAuth (4.0 - 2.0) <B2CEE6B5-9464-35F2-9339-9F52001C8A27> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff943e0000 -     0x7fff944effe7  libvDSP.dylib (563.4) <A95572FF-D40C-32A8-9F36-5B1FD297A0EC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff945d1000 -     0x7fff94867fff  libmecabra.dylib (696.4) <0A1574F0-3222-3856-A1C6-D8BE20DC4C48> /usr/lib/libmecabra.dylib
    0x7fff94868000 -     0x7fff94869ffb  libSystem.B.dylib (1226.10.1) <5A4257EF-3145-3BB3-87A4-0D2404A9462D> /usr/lib/libSystem.B.dylib
    0x7fff9486a000 -     0x7fff94876ff7  com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) <E507D438-517D-32AE-8609-02ACD2F0D692> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff9498f000 -     0x7fff94a7ffff  libJP2.dylib (1442) <50DD1F07-6517-372B-8244-2AD19702385C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff952df000 -     0x7fff9530fff7  libsandbox.1.dylib (460.30.1) <AD0156FC-EF07-3689-9403-586517AE7037> /usr/lib/libsandbox.1.dylib
    0x7fff9538d000 -     0x7fff95447fff  com.apple.DiscRecording (9.0.1 - 9010.4.3) <C4EC1EA7-E2AA-30F7-83CC-79171CDD50AA> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff961c5000 -     0x7fff961d6ff7  libz.1.dylib (61.20.1) <B3EBB42F-48E3-3287-9F0D-308E04D407AC> /usr/lib/libz.1.dylib
    0x7fff961d7000 -     0x7fff965d3fff  libLAPACK.dylib (1159) <7618C270-D895-345C-B08B-102286A05A55> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff96707000 -     0x7fff96776fff  com.apple.SearchKit (1.4.0 - 1.4.0) <CA50106F-F45A-36AC-AD2B-C3B19F5DD52F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff968f1000 -     0x7fff96918fff  com.apple.ChunkingLibrary (167 - 167) <508861C9-F5E6-343B-8DD0-D71DFE49ECFD> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff96919000 -     0x7fff9691bfff  libCVMSPluginSupport.dylib (12.0.40.6) <C88875DF-9888-37A6-AE69-3CABFACDAF45> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff96980000 -     0x7fff969a4fff  com.apple.MultitouchSupport.framework (304.10 - 304.10) <1E0206D9-34AD-3810-8ED0-29DC450D1485> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff969a5000 -     0x7fff969a5ff7  libkeymgr.dylib (28) <09397E01-6066-3179-A50C-2CE666FDA929> /usr/lib/system/libkeymgr.dylib
    0x7fff969a6000 -     0x7fff969bcff7  libsystem_coretls.dylib (83.20.8) <75C97D88-0A63-3093-AE83-DE33EB7405CE> /usr/lib/system/libsystem_coretls.dylib
    0x7fff969f0000 -     0x7fff969f2fff  libsystem_coreservices.dylib (19.2) <1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff969f3000 -     0x7fff969fefff  com.apple.AppSandbox (4.0 - 261.20.7) <0CA08EB7-D574-3E2F-A3AE-FEA80FF3F304> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff96a83000 -     0x7fff96c01fff  com.apple.UIFoundation (1.0 - 436.1) <8C254BB0-1DED-36A2-AAAF-786EB19CCE39> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff96c0e000 -     0x7fff96c10ff7  libsystem_configuration.dylib (802.20.7) <5FD79070-36CC-3D02-BEA7-BB5D2AE97D5D> /usr/lib/system/libsystem_configuration.dylib
    0x7fff96c1a000 -     0x7fff96c36ff3  libresolv.9.dylib (60) <A650B5C8-1950-36A0-86D1-0B2465318BFA> /usr/lib/libresolv.9.dylib
    0x7fff96ca6000 -     0x7fff96cbffff  com.apple.CFOpenDirectory (10.11 - 194) <C21F33AA-CD06-3163-A1F3-1D116F788A11> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff96cc0000 -     0x7fff97136fff  com.apple.CoreFoundation (6.9 - 1256.14) <768A7FB7-9143-3148-8591-7C6ED3162D35> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff97137000 -     0x7fff97156ff7  com.apple.framework.Apple80211 (11.0 - 1110.33) <EC583C00-9073-39C3-B613-96D5BA0FDD32> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff97157000 -     0x7fff97207fe7  libvMisc.dylib (563.4) <621D84AA-C752-34EE-8B16-CF0C2DE722FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff974ce000 -     0x7fff974cefff  libenergytrace.dylib (10) <A4AE7CBD-CF0A-3A74-8098-B642CE496611> /usr/lib/libenergytrace.dylib
    0x7fff974de000 -     0x7fff9756bdd7  com.apple.AppleJPEG (1.0 - 1) <9F0E8564-FCC4-33BE-9C6A-2BA926A33F6F> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff97632000 -     0x7fff97721fff  libxml2.2.dylib (29.2) <F70308DF-313F-334F-8F0E-82E79821583D> /usr/lib/libxml2.2.dylib
    0x7fff977be000 -     0x7fff977ffff7  libGLU.dylib (12.0.40.6) <1C9899B5-4741-340F-A2D7-F9AF03B42A47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff978ad000 -     0x7fff978b1fff  libcache.dylib (75) <6B245C0A-F3EA-383B-A542-5B0D0456A41B> /usr/lib/system/libcache.dylib
    0x7fff978d0000 -     0x7fff97901ff7  libncurses.5.4.dylib (46) <D4C10699-3E8F-3F42-A695-7490EA4B6B32> /usr/lib/libncurses.5.4.dylib
    0x7fff981c9000 -     0x7fff981d1fff  libGFXShared.dylib (12.0.40.6) <7E84C8A9-40DA-302A-A3DE-9AE3C61A3465> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff9836d000 -     0x7fff98396fff  libxpc.dylib (756.20.4) <61AB4610-9304-354C-9E9B-D57198AE9866> /usr/lib/system/libxpc.dylib
    0x7fff98397000 -     0x7fff983a0fff  com.apple.icloud.FindMyDevice (1.0 - 1) <BB049D2D-9789-39E8-A09D-D300E7AA94D2> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
    0x7fff983a1000 -     0x7fff983bdff7  libextension.dylib (78) <589FA312-F17C-3A8D-986F-FD995D0065D5> /usr/lib/libextension.dylib
    0x7fff983f2000 -     0x7fff9843dff7  com.apple.CoreMediaIO (703.0 - 4791) <A401D0BE-7618-3A75-A77D-2387CF168072> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff9843e000 -     0x7fff984cdff7  libCoreStorage.dylib (517.20.1) <EC540EAA-089C-36D9-BBAA-0684EDE098AB> /usr/lib/libCoreStorage.dylib
    0x7fff984d1000 -     0x7fff984e3fff  libsasl2.2.dylib (209) <02BF4226-23E9-34EC-A727-CF0E205395F8> /usr/lib/libsasl2.2.dylib
    0x7fff984e4000 -     0x7fff984e4fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <DA5F3EA8-A06B-328A-B22C-9EE29916FD74> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff98513000 -     0x7fff98875f3f  libobjc.A.dylib (680) <9F45830D-F1D5-3CDF-9461-1A5477ED7D1E> /usr/lib/libobjc.A.dylib
    0x7fff989e0000 -     0x7fff99c31ff7  com.apple.CoreGraphics (1.600.0 - 948) <1F017C08-E3D9-30CD-9896-C66C6410926C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff99ca1000 -     0x7fff99f21ff3  com.apple.security (7.0 - 57337.20.44) <290E0078-464E-30EE-8288-8B29A875FFE3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff9a0ab000 -     0x7fff9a271fff  com.apple.ImageIO.framework (3.3.0 - 1442) <1AE1EF1A-EA91-3453-A6F4-C11BD91B8D66> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff9a31b000 -     0x7fff9a320ff7  libmacho.dylib (875.1) <CB745E1F-4885-3F96-B38B-2093DF488FD5> /usr/lib/system/libmacho.dylib
    0x7fff9a321000 -     0x7fff9a36dff3  com.apple.HIServices (1.22 - 549) <14FB5BB6-8456-39F9-A694-8A1C12426880> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff9a36e000 -     0x7fff9a36efff  com.apple.audio.units.AudioUnit (1.13 - 1.13) <D2E8EA94-3828-3D7C-87E2-97E4CD00269D> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff9a36f000 -     0x7fff9a370ff3  com.apple.print.framework.Print (10.0 - 266) <BF573614-5666-3D16-9D45-4690911F030A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff9a85f000 -     0x7fff9a863fff  libGIF.dylib (1442) <39FA0286-1616-3474-8215-7CD07109C9E5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff9a887000 -     0x7fff9a889fff  com.apple.loginsupport (1.0 - 1) <9B2F5F9B-ED38-313F-B798-D2B667BCD6B5> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff9a88b000 -     0x7fff9a88dff7  com.apple.xpc.ServiceManagement (1.0 - 1) <3777FD15-B6F3-32A2-A8E3-3E8CE3B8D5E7> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff9a88e000 -     0x7fff9a893fff  com.apple.ImageCapture (9.0 - 9.0) <33F7822F-1124-3D73-AF66-515EA32A4A47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff9a9a9000 -     0x7fff9a9a9ff7  libunc.dylib (29) <1D0F8265-F026-3CBD-93D3-F8DF14FFCE68> /usr/lib/system/libunc.dylib
    0x7fff9b471000 -     0x7fff9b479fe7  libsystem_platform.dylib (74.10.3) <D3A27E10-7F08-3603-ACC8-7A92B2C04BAB> /usr/lib/system/libsystem_platform.dylib
    0x7fff9b54f000 -     0x7fff9b554fff  com.apple.TCC (1.0 - 1) <C53628CA-0C75-34B6-AE6E-8BCF8A3ED099> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff9b770000 -     0x7fff9b770fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <F450DC3F-837D-35CB-97F3-5835E789EF02> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff9b771000 -     0x7fff9b786fff  com.apple.AppContainer (4.0 - 261.20.7) <30414623-E68F-31A1-9794-1C052391E900> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff9b7a4000 -     0x7fff9b88bff7  libcrypto.0.9.8.dylib (59) <ED1C2A26-8FFC-30FF-8726-FF952EF94ADF> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff9ba3a000 -     0x7fff9ba8afff  libcups.2.dylib (435) <28A05475-9DBF-35EA-B218-3432B69EA18B> /usr/lib/libcups.2.dylib
    0x7fff9ba8b000 -     0x7fff9bb3bfff  com.apple.backup.framework (1.7.2 - 1.7.2) <F6A2F892-0728-3DD6-883C-2CDE789BF26F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff9bb3c000 -     0x7fff9bba6ff7  com.apple.framework.CoreWLAN (11.0 - 1101.20) <6A535459-6A8A-3D60-986B-EE7ED833A9C3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff9bba7000 -     0x7fff9be8cff3  com.apple.CoreServices.CarbonCore (1136 - 1136) <FFBDE3BF-0BB3-37A2-8A44-6E25284CC348> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff9bed5000 -     0x7fff9bf49fff  com.apple.framework.IOKit (2.0.2 - 1179.20.6) <D92E537D-F96D-39E1-B9AC-9A18943AFCC7> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff9bf4a000 -     0x7fff9bf9bff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <BB7C0F61-E39B-382C-AF03-1650C054BFE1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff9c4f3000 -     0x7fff9c4f7fff  com.apple.CommonPanels (1.2.6 - 96) <61E9D84F-435A-3C7B-A065-047B80775777> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff9c565000 -     0x7fff9c56bfff  com.apple.XPCService (2.0 - 1) <9A305622-14E1-3D9A-BE47-6524419BA58D> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff9c56c000 -     0x7fff9c571ff7  libheimdal-asn1.dylib (453.20.2) <EE3DD8E9-E543-3849-ADC9-EDBF2379C97C> /usr/lib/libheimdal-asn1.dylib
    0x7fff9c572000 -     0x7fff9c5c2ff7  com.apple.Symbolication (1.4 - 58044) <2EC9F04A-4370-39C8-8549-FC6411D87463> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff9c5c3000 -     0x7fff9c869ff7  com.apple.CoreData (120 - 641.3) <65509AA2-A0E6-3EE3-BDFE-B9B120F744ED> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff9c888000 -     0x7fff9c9adff7  com.apple.LaunchServices (728.6 - 728.6) <204CD7A1-D99C-3655-82D7-E8E89F9C666B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff9c9b2000 -     0x7fff9c9d9fff  com.apple.ProtectedCloudStorage (1.0 - 1) <F9E1BDE2-16AF-34B5-B7FE-127D511BDC9E> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff9c9f4000 -     0x7fff9ca32ff7  libGLImage.dylib (12.0.40.6) <ACC6C7B0-A805-344C-AAC3-BA50780227E1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff9ca33000 -     0x7fff9ca5cfff  libc++abi.dylib (125) <DCCC8177-3D09-35BC-9784-2A04FEC4C71B> /usr/lib/libc++abi.dylib
    0x7fff9ca63000 -     0x7fff9ca65ffb  libutil.dylib (43) <4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C> /usr/lib/libutil.dylib
    0x7fff9ca6a000 -     0x7fff9ca6cfff  com.apple.SecCodeWrapper (4.0 - 261.20.7) <E3E10533-B295-39EB-B0A3-42BD238E8C85> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff9ca6d000 -     0x7fff9ca79ff7  com.apple.OpenDirectory (10.11 - 194) <5409AC27-3B83-3F35-8EB5-51228B4604AE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff9cac9000 -     0x7fff9caccfff  com.apple.Mangrove (1.0 - 1) <7919AD18-0EDE-3408-A6AC-A9121B8D857F> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff9cb08000 -     0x7fff9cb54fff  com.apple.print.framework.PrintCore (11.2 - 472.2) <449D8AB5-7891-32D0-9DC5-C90FE10DC0BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff9cdf6000 -     0x7fff9cdffff3  libsystem_notify.dylib (150.20.3) <243FADE1-255A-3B78-8033-F336CD64B817> /usr/lib/system/libsystem_notify.dylib
    0x7fff9ce00000 -     0x7fff9ce2dfff  libdispatch.dylib (501.20.1) <324C9189-2AF3-3356-847F-6F4CE1C6E901> /usr/lib/system/libdispatch.dylib
    0x7fff9ce85000 -     0x7fff9ce85fff  com.apple.Carbon (154 - 157) <34263101-328D-3FE4-B212-14BD3CFF6965> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff9ce86000 -     0x7fff9ce99fff  com.apple.CoreBluetooth (1.0 - 1) <BF5F87E3-6AAA-3B1F-9979-7A03D77937C8> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff9cea0000 -     0x7fff9cee6ff7  libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib
    0x7fff9ceeb000 -     0x7fff9ceeeffb  libScreenReader.dylib (425.102) <BDC46586-4925-38F2-85D3-BD23DB6E6D43> /usr/lib/libScreenReader.dylib
    0x7fff9d299000 -     0x7fff9d467ffb  com.apple.QuartzCore (1.11 - 410.14) <CB19502B-D25F-379C-B50F-08A98FF73B68> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff9d468000 -     0x7fff9d47fff7  libsystem_asl.dylib (322.30.1) <9B500E4E-E462-321E-828E-5524DC984C1B> /usr/lib/system/libsystem_asl.dylib
    0x7fff9d480000 -     0x7fff9d497fff  libmarisa.dylib (4) <E4919B03-D9BD-3AF8-B436-C415C98E3F0A> /usr/lib/libmarisa.dylib
    0x7fff9d4af000 -     0x7fff9d4b1fff  com.apple.EFILogin (2.0 - 2) <38150198-DD7F-3C73-BCAA-C74BB376393A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff9d4b2000 -     0x7fff9d4b2fff  libOpenScriptingUtil.dylib (169.1) <03BEF6F0-07CD-3EDC-9D11-32202C1857B6> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff9d4b3000 -     0x7fff9d501fff  libcurl.4.dylib (90) <FF42FAA6-E71B-3D0D-B5C9-B05BD2460C9A> /usr/lib/libcurl.4.dylib
    0x7fff9d502000 -     0x7fff9d511ffb  com.apple.LangAnalysis (1.7.0 - 1.7.0) <0D1BCC13-76B9-3C19-85AA-D8DD8299F007> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff9d5a9000 -     0x7fff9d5b4ff7  libcommonCrypto.dylib (60075.20.1) <766BC3F5-41F3-3315-BABC-72718A98EA92> /usr/lib/system/libcommonCrypto.dylib
    0x7fff9d5d5000 -     0x7fff9d5f1fff  com.apple.GenerationalStorage (2.0 - 239) <EE667C63-3ADF-34D3-A8A7-316B66C7E290> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff9d61e000 -     0x7fff9d629fff  libcsfde.dylib (517.20.1) <42376761-F1B3-3086-AFBC-231507582BBE> /usr/lib/libcsfde.dylib
    0x7fff9d653000 -     0x7fff9d653fff  com.apple.ApplicationServices (48 - 48) <DD9C4070-C0FC-3984-BCED-72E6E99838FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff9d654000 -     0x7fff9d6f8fff  com.apple.Bluetooth (4.4.3 - 4.4.3f4) <B5F46DA5-EAE8-3F79-864D-1423C61C0A69> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff9d702000 -     0x7fff9d736ff7  com.apple.CoreVideo (1.8 - 191.2) <88D903C8-E608-320E-8ACD-11E5B3003C18> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff9d737000 -     0x7fff9d7ccfff  com.apple.ink.framework (10.9 - 214) <6B573126-A6E9-357F-B36A-AA5BDC0BEAF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff9d7cd000 -     0x7fff9d7d8fff  libGPUSupportMercury.dylib (12.0.40.6) <6061FB76-565E-3E11-B659-50827DFB0BDE> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff9d941000 -     0x7fff9d990ff7  com.apple.opencl (2.6.9 - 2.6.9) <27643341-DC6F-3C2F-8B8B-637061979BF3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff9d9d1000 -     0x7fff9dd25ff7  com.apple.Foundation (6.9 - 1256.1) <66106CC9-9D97-3846-88D8-4BF6BB508296> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff9dd26000 -     0x7fff9dd89fff  libAVFAudio.dylib (161.2) <C42EF0ED-56B2-387F-B188-C42FB8A1B7AB> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
    0x7fff9dd8a000 -     0x7fff9de98ff3  com.apple.desktopservices (1.10 - 1.10) <0BAED9FA-EFA5-3DA0-8715-043FD2400B77> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff9df03000 -     0x7fff9e0a9ff7  com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) <F912765D-88ED-3324-B512-3778A8CE878B> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff9e0ec000 -     0x7fff9e102ff7  libLinearAlgebra.dylib (1159) <FA316609-9851-3C5C-AF46-685A25768D45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff9e2aa000 -     0x7fff9e2ecff7  com.apple.Metal (55.2.8 - 55.2.8) <D4D7AC6F-7B31-3D94-B4B1-587EC2856CDB> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff9e61d000 -     0x7fff9e998ffb  com.apple.VideoToolbox (1.0 - 1731.15.33) <33AED54A-87AE-330F-BAAD-FB8389C3E686> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff9e999000 -     0x7fff9e9affff  com.apple.CoreMediaAuthoring (2.2 - 953) <D74307B6-EC7E-3E5F-B2CF-7CE7A183F0F0> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fff9e9b0000 -     0x7fff9e9b6ff7  com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <FA5CB89A-2BFE-38CC-B1A3-E48792CD898C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff9ebf3000 -     0x7fff9ebfefff  com.apple.CrashReporterSupport (10.11 - 717) <474544AD-1199-3ECC-90E5-071847BA72C6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff9ec1f000 -     0x7fff9ecacfff  libsystem_c.dylib (1082.20.4) <EAB38A6C-8671-3B13-B500-90EC1B912063> /usr/lib/system/libsystem_c.dylib
    0x7fff9f7d9000 -     0x7fff9f813ff7  com.apple.DebugSymbols (132 - 132) <BDF57386-2881-35BD-9310-36904C764E93> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff9f854000 -     0x7fff9f882ff7  com.apple.DictionaryServices (1.2 - 250) <D9AB6B92-CAF5-3EC2-8D07-639B42DA1CB9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff9f8cb000 -     0x7fff9f8ccfff  libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff9f8cd000 -     0x7fff9f8f2ff7  libPng.dylib (1442) <C13F5341-C342-3733-AF4C-434F2D8FF0A8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff9f8f6000 -     0x7fff9f901fff  libkxld.dylib (3248.30.4) <BAA3DDEC-AD81-3C29-AECC-59E4AD114D3C> /usr/lib/system/libkxld.dylib
    0x7fff9f924000 -     0x7fff9f94dff7  libxslt.1.dylib (14.1) <AE86E275-499F-3D4F-8433-142186D383CB> /usr/lib/libxslt.1.dylib
    0x7fffa0d4a000 -     0x7fffa0d52ffb  libsystem_dnssd.dylib (625.20.4) <945B5FB1-DA91-3D45-A961-A8FAD53C1E7E> /usr/lib/system/libsystem_dnssd.dylib
    0x7fffa0e88000 -     0x7fffa0e90ff7  libcldcpuengine.dylib (2.6.4.1) <5FFEDBEF-2EFE-3F91-BABC-1E73B28487A2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fffa0e91000 -     0x7fffa0f27fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8BB8DF19-C24F-39F8-8B90-AD186D74587C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fffa0f28000 -     0x7fffa0ffeff7  com.apple.DiskImagesFramework (10.11.3 - 417.2) <25BBE20C-E92B-360F-A326-093B61CC7B5E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fffa116a000 -     0x7fffa116bfff  com.apple.TrustEvaluationAgent (2.0 - 25) <0239494E-FEFE-39BC-9FC7-E251BA5128F1> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fffa12f0000 -     0x7fffa1397fff  com.apple.LanguageModeling (1.0 - 1) <E1E4091D-6CAB-36E0-A206-AAADE69791DC> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fffa13e6000 -     0x7fffa13f4fff  com.apple.opengl (12.0.40 - 12.0.40) <D37D88AE-0731-3105-99AB-984DA9B9BCE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fffa1d2a000 -     0x7fffa1d31ff7  libcompiler_rt.dylib (62) <D3C4AB40-23B4-3BC6-8C38-5B8758D14E80> /usr/lib/system/libcompiler_rt.dylib
    0x7fffa1d32000 -     0x7fffa1d6cfff  com.apple.QD (3.12 - 302) <3F36A108-C557-353A-A3F7-80DDCB82BB37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 8
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 71191148
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=438.8M resident=0K(0%) swapped_out_or_unallocated=438.8M(100%)
Writable regions: Total=7.3G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=7.3G(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                  2048K        2 
CG image                             4K        2 
CG shared images                   208K        6 
CoreAnimation                       40K        5 
CoreUI image data                   76K        2 
CoreUI image file                  160K        3 
Dispatch continuations            8192K        2 
IOKit                            622.0M       60 
Kernel Alloc Once                    8K        3 
MALLOC                             2.1G       42 
MALLOC guard page                   32K        7 
MALLOC_LARGE (reserved)            3.9G        2         reserved VM address space (unallocated)
STACK GUARD                       56.0M        9 
Stack                             11.1M        9 
VM_ALLOCATE                       24.0M       61 
__DATA                            90.2M      525 
__GLSLBUILTINS                    2588K        2 
__IMAGE                            528K        2 
__LINKEDIT                       149.4M      282 
__TEXT                           289.5M      506 
__UNICODE                          552K        2 
mapped file                       39.4M       10 
shared memory                    612.4M       54 
===========                     =======  ======= 
TOTAL                              7.8G     1575 
TOTAL, minus reserved VM space     4.0G     1575 

Model: MacBookAir6,2, BootROM MBA61.0099.B21, 2 processors, Intel Core i7, 1.7 GHz, 8 GB, SMC 2.13f15
Graphics: Intel HD Graphics 5000, Intel HD Graphics 5000, Built-In
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E384A544D4C41522D4E544D
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E384A544D4C41522D4E544D
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x117), Broadcom BCM43xx 1.0 (7.21.94.136.1a1)
Bluetooth: Version 4.4.3f4 16616, 3 services, 19 devices, 1 incoming serial ports
Network Service: Thunderbolt Ethernet, Ethernet, en3
PCI Card: Apple 57762-A0, Ethernet Controller, Thunderbolt@195,0,0
Serial ATA Device: APPLE SSD SM0512F, 500.28 GB
USB Device: USB 3.0 Bus
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
Thunderbolt Bus: MacBook Air, Apple Inc., 23.6
Thunderbolt Device: Thunderbolt to Gigabit Ethernet Adapter, Apple Inc., 1, 5.5

Migrated from: CDAT/cdat#1931

change y axis to log y axis

Hello,

How do I convert linear y axis to logY axis in UVCDAT 2.4.1?
yaxisconvert ='log10' is not working.

Thanks

VCS Legend issues

Looks like there are a couple of issues with the legend (at least when using boxfill).

This notebook illustrates most of the issues I found, but I'll break it down individually as well.

boxfill.legend label placement is wrong

When you assign values to it, it should use that dictionary to draw tickmarks on the legend at the appropriate point for the values used as the keys; this should work fine:

import vcs
box_data = [range(0, 100, 20) for _ in range(5)]
boxfill = vcs.createboxfill()
boxfill.boxfill_type = "custom"
boxfill.levels = [0, 10, 30]
boxfill.legend = {1: "one", 16: "sixteen", 25: "twentyfive"}
x = vcs.init()
x.plot(box_data, boxfill)

legend_placement

Legend will draw as many sections as it can

When you have more fillarea* items than levels, weird stuff starts to happen with the legend (though the data looks fine).

import vcs, cdms2
x = vcs.init()
f = cdms2.open(vcs.sample_data + '/clt.nc')
s = f('clt')
box = vcs.createboxfill()
box.boxfill_type = "custom"
box.fillareacolors = [1, 2, 3, 4]
box.fillareaindices = [2, 3, 4, 5]
box.fillareastyle = "hatch"
box.levels = [0, 50, 100]
x.plot(s, box)

wat

At some point I was also able to make legend sections draw over themselves, but I haven't been able to reproduce that one yet.

performance crashes with multiple calls of createisofill

I am repeatedly (17 times) calling a function which generates a set of four plots with VCS. They should all take about the same time. With normal use of VCS, they don't. Each is slower than the one before, and you get an overall slowdown of well over an order of magnitude - enough to make VCS almost unusable.

I narrowed the problem down to vcs.elements['isofill']. Each time my function is called another 10 or so names get added to this list. The running time of canvas.plot is superlinear in the length of vcs.elements['isofill'].

As a workaround, I saved a copy of an early form of vcs.elements, and restored it (other than vcs.elements['display']) frequently. This completely eliminated the performance problem, and my test problem's running time went from 3 1/2 hours to 16 minutes.

It seems to me that something in VCS does something very expensive with everything in vcs.elements['isofill']. There may be design issues - why does everything have to be saved forever? - but that is beyond my competence to judge.

Migrated from: CDAT/cdat#2135

Meshfill leaves extra display plots lying around

When you plot a meshfill, it generates a bunch of display plots that need to be cleaned up. The offending code is here; in the rest of the pipelines, rather than directly calling template.plot, we call context().render_template, which does this cleanup for us (as well as plotting time/date stamps in the top right). I tried using render_template instead of template.plot, but it horribly breaks things (You can see the dashboard results here). @doutriaux1 and I agree that this issue can wait till 2.6.

Migrated from: CDAT/cdat#1770

Can't set colormap index using color name

import vcs
cmap = vcs.createcolormap()
cmap.index[5] = "blue"
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/uvcdat/2.4.0/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/vcs/colormap.py", line 170, in __setitem__
    'Must be either a list object, tuple object, or integer value.')
ValueError: Must be either a list object, tuple object, or integer value.

Migrated from: CDAT/cdat#1860

performance crashes with multiple calls of createisofill

I am repeatedly (17 times) calling a function which generates a set of four plots with VCS. They should all take about the same time. With normal use of VCS, they don't. Each is slower than the one before, and you get an overall slowdown of well over an order of magnitude - enough to make VCS almost unusable.

I narrowed the problem down to vcs.elements['isofill']. Each time my function is called another 10 or so names get added to this list. The running time of canvas.plot is superlinear in the length of vcs.elements['isofill'].

As a workaround, I saved a copy of an early form of vcs.elements, and restored it (other than vcs.elements['display']) frequently. This completely eliminated the performance problem, and my test problem's running time went from 3 1/2 hours to 16 minutes.

It seems to me that something in VCS does something very expensive with everything in vcs.elements['isofill']. There may be design issues - why does everything have to be saved forever? - but that is beyond my competence to judge.

Migrated from: CDAT/cdat#2135

isofill broken

@danlipsa I think your PR broke vcs

using commit: 507d2bc the uvcmetrics test 04 works, any commit after that I get the wrong colors for an isofill on test 04

git clone git://github.com/UV-CDAT/uvcmetrics
cd uvcmetrics
python setup.py install
cmake .
ctest -R 04 -D Experimental

leads to bad plots, look for example at: https://open.cdash.org/testDetails.php?test=484915834&build=4560808

Notice that we now have a level that shows values greater than 300 when the max is at: 294.

We fixed a similar issue before: CDAT/cdat#1947

PR for fix was : CDAT/cdat#2027

This is an URGENT matter for the diags due out this week.

XQuartz version and numpy?

  1. VCS not opening xwindow for Mac terminal when XQuartz 2.7.9 or higher version.
  2. Loading variable returns error message which I've not seen before.
>>> import vcs, cdms2
>>> f=cdms2.open('clt.nc')
>>> d=f('clt')

/export_backup/lee1043/anaconda2/lib/python2.7/site-packages/numpy/ma/core.py:2761: DeprecationWarning: Non-string object detected for the array ordering. Please pass in 'C', 'F', 'A', or 'K' instead
order=order, subok=True, ndmin=ndmin)

>>> x=vcs.init()
>>> x.plot(d)

libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast
X Error of failed request: BadValue (integer parameter out of range for operation)
Major opcode of failed request: 149 (GLX)
Minor opcode of failed request: 3 (X_GLXCreateContext)
Value in failed request: 0x0
Serial number of failed request: 42
Current serial number in output stream: 43

Migrated from: CDAT/cdat#2132

Plotting areacello data fails

The offending file is:
/cmip5_css02/scratch/cmip5/output1/NCAR/CCSM4/1pctCO2/fx/ocean/fx/r0i0p0/v20130312/areacello/areacello_fx_CCSM4_1pctCO2_r0i0p0.nc

/work/cmip5/fx/fx/areacello/cmip5.CCSM4.1pctCO2.r0i0p0.fx.ocn.fx.areacello.ver-v20130312.latestX.xml
Traceback (most recent call last):
  File "make_evsp.py", line 171, in <module>
    c.plot(areacello)
  File "/usr/local/uvcdat/2016-02-04/lib/python2.7/site-packages/vcs/Canvas.py", line 2424, in plot
    a = self.__plot(arglist, keyargs)
  File "/usr/local/uvcdat/2016-02-04/lib/python2.7/site-packages/vcs/Canvas.py", line 3747, in __plot
    returned_kargs = self.backend.plot(*arglist, **keyargs)
  File "/usr/local/uvcdat/2016-02-04/lib/python2.7/site-packages/vcs/VTKPlots.py", line 533, in plot
    vtk_backend_grid, vtk_backend_geo))
  File "/usr/local/uvcdat/2016-02-04/lib/python2.7/site-packages/vcs/vcsvtk/pipeline2d.py", line 290, in plot
    self._createMaskedDataMapper()
  File "/usr/local/uvcdat/2016-02-04/lib/python2.7/site-packages/vcs/vcsvtk/pipeline2d.py", line 335, in _createMaskedDataMapper
    deep=False)
  File "/usr/local/uvcdat/2016-02-04/lib/python2.7/site-packages/vcs/vcs2vtk.py", line 117, in putMaskOnVTKGrid
    vtkmask.SetNumberOfTuples(attributes2.GetPedigreeIds().GetNumberOfTuples())
AttributeError: 'NoneType' object has no attribute 'GetNumberOfTuples'

The equivalent plot in ferret looks like:
cmip5 ccsm4 1pctco2 r0i0p0 fx ocn fx areacello ver-v20130312

Migrated from: CDAT/cdat#1833

Markers are poorly scaled

Working on the gui, decided to try generating pngs of all of the marker types, and re-re-discovered that our marker scaling is just awful.

Here's a good "baseline" marker (circle) at size 100:

circle

Most of the "normal" markers are roughly the same size.

Here's dot, the default, at the same size:

dot

As you can see, dot is much larger than circle. Adding to the annoyance, we have plus and cross, which need to be scaled up to the maximum size (300) to be similarly sized to circle:

Cross Plus
cross plus

Then there's the WMO symbols, which are (mostly) close to the right size when they're at size 10 (one tenth of the "baseline" size):

w00 w01 w02
w00 w01 w02

Except, up of course, for a few outliers:

w06 w07
w06 w07
w09 w17
w09 w17

(plus several more)

And there's the worst one, hurricane, at size 2:

hurricane

We should look at normalizing the sizes of markers so they're all about the same for any given size.

Migrated from: CDAT/cdat#1982

Isoline line, linecolors, and linewidths behave oddly

So, there's some weirdness in the way we set up isoline objects.

IPython 4.1.2 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]: import vcs
i
In [2]: isoline = vcs.createisoline()

If we do a .list(), we see our attributes:

In [3]: isoline.list()
 ----------Isoline (Gi) member (attribute) listings ----------
...
line =  ['solid']
linecolors =  [1]
linewidths =  [1.0]
...

If we set .line to the names of some line objects, some odd, but understandable behavior occurs:

In [4]: isoline.line = ["blue", "red"]

In [5]: isoline.list()
 ----------Isoline (Gi) member (attribute) listings ----------
...
line =  ['dash', 'dash']
linecolors =  [244, 242]
linewidths =  [2, 2]
...

It harvests the type attribute from the blue and red line objects, and sets those in line. It grabs the color attribute from each of them and sets linecolors. It grabs the width attribute and sets linewidths. All perfectly fine.

Now let's watch the world burn.

In [6]: isoline.line = ["green", "black"]

In [7]: isoline.list()
 ----------Isoline (Gi) member (attribute) listings ----------
...
line =  ['dash', 'dash']
linecolors =  [244, 242]
linewidths =  [2, 2]
...

Looks like... linecolors is exactly the same? Huh?

I'll make my own line object just to drive the point home:

In [8]: myline.list()
 ----------Line (Tl) member (attribute) listings ----------
secondary method = Tl
name = __line_787653798724505
type = ['dot']
width = [10]
color = [(0.0, 0.0, 100.0, 100.0)]
priority = 1
viewport = [0.0, 1.0, 0.0, 1.0]
worldcoordinate = [0.0, 1.0, 0.0, 1.0]
x = None
y = None
projection = default
colormap = None

I've set width, type, and color to be different from what was in isoline's attributes...

In [14]: isoline.line = [myline, myline]

In [15]: isoline.list()
 ----------Isoline (Gi) member (attribute) listings ----------
...
line =  ['__line_787653798724505', '__line_787653798724505']
linecolors =  [244, 242]
linewidths =  [2, 2]
...

OK, that's an extra bit of weird. Seems like instead of pulling the line's type, it pulled the line object's name... and still didn't update linecolors or linewidths.

Aside: Surprisingly, when plotted, this doesn't throw an error that __line_787653798724505 isn't a valid line type; that's because when we plot, we create a graphics method that inherits from the one that is passed in, which grabs the line name and then does the above described behavior (loading the style, though not the color or width.

These issues can be traced back to the isoline module, and the behaviors of the _setline function. I think what happened is that at some point the default value of linecolors and linewidths changed from None to [1], which makes it so it only replaces those values if you set lines to a list that has more elements than you have in linecolors or linewidths. We should definitely alter that behavior; I think we probably should go to None triggering default values, rather than automatically filling in the defaults (that way we can "know" if a user has specified data, which we shouldn't automatically override when we set the line attribute).

There's one more issue, which is what happens when you do this:

In[16]: import cdms2

In[17]: f = cdms2.open(vcs.sample_data + '/clt.nc')

In[18]: s = f("clt")

In[19]: isoline.line = ["dash-dot"]

In[20]: isoline.linecolors = [250]

In[21]: isoline.linewidths = [25]

In[22]: x = vcs.init()

In[23]: x.plot(s, isoline)

which generates the below image:

no_fat_level

As you can see, none of those lines have a width of 25, or a style of "dash-dot". That's because the "first" level is something like [0, 0] for the isoline, which is a very small chunk of the data, so it doesn't get displayed by VTK. We then pad out values for the rest of the levels, but we don't follow normal behavior for VCS. Every other place in VCS, when we pad out a list, we use the last value in the list, but in Isoline, we're using "solid" for line and 1.0 for linewidths (though we are using the last color for linecolors). This can be fixed in isofillpipeline by replacing the default values.

Migrated from: CDAT/cdat#1944

lambert azimuthal proj seem to ignore user custom parameters

reported by @lee1043

import vcs
import cdms2
f=cdms2.open(vcs.sample_data+"/clt.nc")
s=f("clt",slice(0,1))
x=vcs.init()
p=x.createprojection()
p.type="lambert azimuthal"
gm=x.createboxfill()
gm.projection=p
x.plot(s2,gm)

gives:
lambert

manipulating the parameters on projection do not seem to change anything:

p.centerlongitude=0
#or
p.centerlongitude=45

Migrated from: CDAT/cdat#2059

pdf from vcs looks different on OSX and Linux and or clients

@doutriaux1 I found one issue is that the PDF generated seems to be bad.

The good news is that I found the source of the bad PDF problem and I am hoping that if we fix that, we could potentially fix the bad rendering of the pdf as well. The source of the problem is:

  1. Text rendering: Somehow the labels are causing this issue as they inject something in PDF which is bad.

  2. A pure VTK and GL2PS example didn't exhibit this issue so I am thinking that somehow we have a bad scene but need to confirm it.

3 I will push a branch which will turn of text rendering in PDF. I would be interested in knowing if the issue of different rendering still shows up @doutriaux1

text alignment seems a bit off

One would expect the cross to be drawn exactly in the center of the middle H it is instead a bit off to the left and down

import vcs
x=vcs.init()
t = vcs.createtext()
t.x=[.8]
t.y=[.8]
t.string = "HHHHH"
t.valign = "half"
t.halign="center"
x.plot(t)
l=vcs.createline()
l.color=["red"]
l.x=[.1,.9]
l.y=[t.y,t.y]
x.plot(l)
l=vcs.createline()
l.color=["blue"]
l.y=[.1,.9]
l.x=[t.x,t.x]
x.plot(l)
x.png("blah")
raw_input("Blah")

blah

Migrated from: CDAT/cdat#2082

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.