Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
UW-Glance
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eva Schiffer
UW-Glance
Commits
93e994ab
Commit
93e994ab
authored
8 years ago
by
Eva Schiffer
Browse files
Options
Downloads
Plain Diff
trying to figure out why git is making me commit twice
parents
d8bf973b
25325a97
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pyglance/glance/data.py
+17
-0
17 additions, 0 deletions
pyglance/glance/data.py
pyglance/glance/gui_view.py
+9
-0
9 additions, 0 deletions
pyglance/glance/gui_view.py
pyglance/glance/stats.py
+2
-0
2 additions, 0 deletions
pyglance/glance/stats.py
with
28 additions
and
0 deletions
pyglance/glance/data.py
+
17
−
0
View file @
93e994ab
...
...
@@ -160,6 +160,23 @@ class DataObject (object) :
return
DataObject
(
self
.
data
.
copy
(),
fillValue
=
self
.
fill_value
,
ignoreMask
=
self
.
masks
.
ignore_mask
,
overrideFillValue
=
self
.
override_fill_value
,
defaultFillValue
=
self
.
default_fill_value
)
def
holding_array
(
self
):
"""
Return a version of myself where self.data is always an array.
Suitable for code paths that insist on an array.
If self.data is already an array, returns self.
If self.data is a simple scalar, copies myself, changing the copy
'
s
self.data to be an array with a single value, and return the copy.
"""
if
len
(
self
.
data
.
shape
)
!=
0
:
return
self
copy
=
self
.
copy
()
copy
.
data
=
np
.
array
([
self
.
data
.
item
()])
copy
.
self_analysis
()
return
copy
def
self_analysis
(
self
,
re_do_analysis
=
False
)
:
"""
...
...
This diff is collapsed.
Click to expand it.
pyglance/glance/gui_view.py
+
9
−
0
View file @
93e994ab
...
...
@@ -8,6 +8,7 @@ Copyright (c) 2011 University of Wisconsin SSEC. All rights reserved.
"""
import
sys
,
os
.
path
,
logging
import
numpy
from
PyQt4
import
QtGui
,
QtCore
...
...
@@ -839,6 +840,14 @@ class GlanceGUIView (QtGui.QWidget) :
given variable data, pop a window to show it to the user
"""
if
len
(
variableDataObject
.
data
.
shape
)
==
0
:
# This is a simple scalar value. Toss it into an array
# so the following code can cope
newData
=
variableDataObject
.
copy
()
newData
.
data
=
numpy
.
array
([
variableDataObject
.
data
.
item
()])
variableDataObject
=
newData
if
len
(
variableDataObject
.
data
.
shape
)
>
0
and
len
(
variableDataObject
.
data
.
shape
)
<=
2
:
tempID
=
self
.
dataShowCounter
...
...
This diff is collapsed.
Click to expand it.
pyglance/glance/stats.py
+
2
−
0
View file @
93e994ab
...
...
@@ -1064,6 +1064,8 @@ class StatisticalInspectionAnalysis (StatisticalData) :
"""
build and set all of the statistics sets
"""
dataObject
=
dataObject
.
holding_array
()
self
.
general
=
GeneralStatistics
(
dataObject
=
dataObject
,
doExtras
=
True
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment