예제 #1
0
 def correspondance(self):
     """ Derived from file data (ArrayOfIndex) """
     return ArrayOfIndex(
         c.c_void_p(lib.getCorrespondanceTelsemAtlas(self.__data__)))
예제 #2
0
 def nonlinspecs(self):
     """ The species tags with non-linear treatment (ArrayOfIndex) """
     return ArrayOfIndex(c.c_void_p(lib.getNonLinearSpeciesGasAbsLookup(self.__data__)))
예제 #3
0
 def cellnums(self):
     """ Cellnumber of each of the pixels in the atlas (ArrayOfIndex) """
     return ArrayOfIndex(
         c.c_void_p(lib.getCellnumberTelsemAtlas(self.__data__)))
예제 #4
0
 def classes2(self):
     """ Surface class (ArrayOfIndex) """
     return ArrayOfIndex(
         c.c_void_p(lib.getClasses2TelsemAtlas(self.__data__)))
예제 #5
0
 def firstcells(self):
     """ The first cell number of lat band (ArrayOfIndex) """
     return ArrayOfIndex(
         c.c_void_p(lib.getFirstCellsTelsemAtlas(self.__data__)))
예제 #6
0
 def ncells(self):
     """ Number of cells per lat band (ArrayOfIndex) """
     return ArrayOfIndex(c.c_void_p(lib.getCellsTelsemAtlas(self.__data__)))
예제 #7
0
 def idx(self):
     """ Index of position below point (ArrayOfIndex) """
     return ArrayOfIndex(c.c_void_p(lib.getidxGridPosPoly(self.__data__)))