GDAL中GDALDataType中值與其在C++中數據類型對應

GDAL中的GDALDataType是一個枚舉型,其中的值爲:it

  • GDT_Unknown : 未知數據類型
  • GDT_Byte : 8bit正整型 (C++中對應unsigned char)
  • GDT_UInt16 : 16bit正整型 (C++中對應 unsigned short)
  • GDT_Int16 : 16bit整型 (C++中對應 short 或 short int)
  • GDT_UInt32 : 32bit 正整型 (C++中對應unsigned long)
  • GDT_Int32 : 32bit整型 (C++中對應int 或 long 或 long int)
  • GDT_Float32 : 32bit 浮點型 (C++中對應float)
  • GDT_Float64 : 64bit 浮點型 (C++中對應double)
  • GDT_CInt16 : 16bit復整型 (?)
  • GDT_CInt32 : 32bit復整型 (?)
  • GDT_CFloat32 : 32bit復浮點型 (?)
  • GDT_CFloat64 : 64bit復浮點型 (?)
相關文章
相關標籤/搜索