repo.or.cz
/
JPSSData.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cleaning up some code and improving notnan flag
[JPSSData.git]
/
visualize.py
blob
b566964fd28cc9194c46af683d6cd845afef5c86
1
import
numpy
as
np
2
import
saveload
as
sl
3
import
JPSSD
as
J
4
5
data
,
fxlon
,
fxlat
=
sl
.
load
(
'data'
)
6
U
,
L
,
T
=
sl
.
load
(
'result'
)
7
xx
=
fxlon
8
yy
=
fxlat
9
zz
=
U
10
J
.
plot_3D
(
xx
,
yy
,
zz
)
11
12
zz
=
L
13
J
.
plot_3D
(
xx
,
yy
,
zz
)
14
15
zz
=
T
16
J
.
plot_3D
(
xx
,
yy
,
zz
)