Page 1 of 1

GOES-16 resample class methods

Posted: Fri Dec 15, 2017 4:05 pm
by joleenf
Hi,

I was trying to use the fixed grid format resample method, and found the class name in one of my help desk email messages. However, I can't access what had been called goesResample in development. Is there a way to access the java doc for this class? Am I accessing the wrong class?

Code: Select all

from edu.wisc.ssec.mcidasv.util import GEOSgridUtil
redValues = GEOSgridUtil.goesResample(red,targetSet,mode).getFloats(Boolean.FALSE)


Joleen

Re: GOES-16 resample class methods

Posted: Fri Dec 15, 2017 4:29 pm
by bobc
Hi Joleen -

We did a little bit of renaming of methods/functions to make things more consistent. In this case, we changed goesResample to geosResample. You can find javadoc here:

https://www.ssec.wisc.edu/mcidas/software/v/javadoc/unstable/edu/wisc/ssec/mcidasv/util/GEOSgridUtil.html

Also, after running the import, you can run see() in the Jython Shell to see everything that is in the GEOSgridUtil class. For example:

Code: Select all

from edu.wisc.ssec.mcidasv.util import GEOSgridUtil
print see(GEOSgridUtil)


If you have any problems with this, please let me know.

Thanks -
Bob Carp