コード例 #1
0
ファイル: gladys_python.cpp プロジェクト: PBechon/gladys
static bpy::list py_get_band_as_uchar(gdalwrap::gdal& self, const std::string& name) {
    return std_vector_to_py_list(gdalwrap::raster2bytes(self.get_band(name)));
}
コード例 #2
0
ファイル: visibility_map.hpp プロジェクト: cyrobin/gladys
 const gdalwrap::raster& get_npointsmap() const {
     return dtm.get_band("N_POINTS");
 }
コード例 #3
0
ファイル: gladys_python.cpp プロジェクト: PBechon/gladys
static bpy::list py_get_band(gdalwrap::gdal& self, const std::string& name) {
    return std_vector_to_py_list(self.get_band(name));
}
コード例 #4
0
ファイル: visibility_map.hpp プロジェクト: cyrobin/gladys
 /* getters */
 const gdalwrap::raster& get_heightmap() const {
     return dtm.get_band("Z_MAX");
 }