コード例 #1
0
ファイル: band.py プロジェクト: atlassian/django
 def datatype(self, as_string=False):
     """
     Returns the GDAL Pixel Datatype for this band.
     """
     dtype = capi.get_band_datatype(self._ptr)
     if as_string:
         dtype = GDAL_PIXEL_TYPES[dtype]
     return dtype
コード例 #2
0
ファイル: band.py プロジェクト: kadammayuresh008/Quizzack1
 def datatype(self, as_string=False):
     """
     Return the GDAL Pixel Datatype for this band.
     """
     dtype = capi.get_band_datatype(self._ptr)
     if as_string:
         dtype = GDAL_PIXEL_TYPES[dtype]
     return dtype
コード例 #3
0
ファイル: band.py プロジェクト: letouriste001/SmartForest_2.0
from ctypes import byref, c_int