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