GOES-16 resample class methods

Post any questions, ideas, or topics related to Jython and Python scripting.
Post Reply
User avatar
joleenf
Posts: 1123
Joined: Mon Jan 19, 2009 7:16 pm

GOES-16 resample class methods

Post 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
User avatar
bobc
Posts: 988
Joined: Mon Nov 15, 2010 5:57 pm

Re: GOES-16 resample class methods

Post 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
Post Reply