NOTICE: This version of the NSF Unidata web site (archive.unidata.ucar.edu) is no longer being updated.
Current content can be found at unidata.ucar.edu.
To learn about what's going on, see About the Archive Site.
Garrett:Rather than using the generic "load()" method, you need to use the PointDataAdapter() directly. The "load()" method swallows up too many Exceptions (in this case a VisADException is thrown underneath with the text "No Data Available", but it never makes it to your application).
So, do this (be sure you're runnin Jython 2.1): from visad.data.mcidas import PointDataAdapter ....
data = load(request) ..... becomes:
data = PointDataAdapter(request).getData() tom -- Tom Whittaker (tomw@xxxxxxxxxxxxx) University of Wisconsin-Madison Space Science and Engineering Center Cooperative Institute for Meteorological Satellite Studies Phone/VoiceMail: 608.262.2759
visad
archives: