Ejemplo n.º 1
0
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)));
}
Ejemplo n.º 2
0
 const gdalwrap::raster& get_npointsmap() const {
     return dtm.get_band("N_POINTS");
 }
Ejemplo n.º 3
0
static bpy::list py_get_band(gdalwrap::gdal& self, const std::string& name) {
    return std_vector_to_py_list(self.get_band(name));
}
Ejemplo n.º 4
0
 /* getters */
 const gdalwrap::raster& get_heightmap() const {
     return dtm.get_band("Z_MAX");
 }