Unidata / IDV

The Integrated Data Viewer (IDV) from Unidata is a framework for analyzing and displaying geoscience data.
http://www.unidata.ucar.edu/software/idv/
Other
80 stars 37 forks source link

JNumeric is having some issues. #104

Closed jon4than closed 8 years ago

jon4than commented 9 years ago

It looks like libsrc/jnumeric-2.5.1_ra0.1.jar has some issues with Jython 2.7. Using jnumeric-2.7.0_ra0.1.jar from https://bitbucket.org/zornslemon/jnumeric-ra/downloads seems to fix things.

FWIW, my test is pretty simple:

# run from the jython shell
import Numeric as N
a = N.array([1, 2, 3])
b = N.array([3, 2, 1])
print a, b

And that should output [1 2 3] [3 2 1].

jon4than commented 8 years ago

Any thoughts or concerns?

julienchastang commented 8 years ago

Should be done. Let me know if you see any problems.