2#include <isce3/geometry/DEMInterpolator.h>
3#include <isce3/io/Raster.h>
4#include <isce3/product/GeoGridParameters.h>
5#include <isce3/core/forward.h>
19 isce3::io::Raster& demRaster,
20 const isce3::product::GeoGridParameters& geoGrid,
21 const int demMarginInPixels = 50,
22 const isce3::core::dataInterpMethod demInterpMethod =
23 isce3::core::BIQUINTIC_METHOD);
38 isce3::io::Raster& demRaster,
39 const isce3::product::GeoGridParameters& geoGrid,
const int lineStart,
40 const int blockLength,
const int blockWidth,
41 const int demMarginInPixels = 50,
42 const isce3::core::dataInterpMethod demInterpMethod =
43 isce3::core::BIQUINTIC_METHOD);
72 isce3::io::Raster& dem_raster,
73 const double minX,
const double maxX,
const double minY,
74 const double maxY, isce3::geometry::DEMInterpolator* dem_interp,
75 isce3::core::ProjectionBase* proj =
nullptr,
76 const int dem_margin_x_in_pixels = 100,
77 const int dem_margin_y_in_pixels = 100,
78 const int dem_raster_band = 1);
92isce3::core::Vec3 getDemCoordsSameEpsg(
double x,
double y,
94 isce3::core::ProjectionBase* input_proj);
108isce3::core::Vec3 getDemCoordsDiffEpsg(
double x,
double y,
110 isce3::core::ProjectionBase* input_proj);
Definition DEMInterpolator.h:25
The isce3::geometry namespace.
Definition boundingbox.h:15
isce3::error::ErrorCode loadDemFromProj(isce3::io::Raster &dem_raster, const double x0, const double xf, const double minY, const double maxY, DEMInterpolator *dem_interp, isce3::core::ProjectionBase *proj, const int dem_margin_x_in_pixels, const int dem_margin_y_in_pixels, const int dem_raster_band)
Load DEM raster into a DEMInterpolator object around a given bounding box in the same or different co...
Definition loadDem.cpp:136
DEMInterpolator DEMRasterToInterpolator(isce3::io::Raster &demRaster, const isce3::product::GeoGridParameters &geoGrid, const int demMarginInPixels, const isce3::core::dataInterpMethod demInterpMethod)
returns a DEM interpolator for a geocoded grid.
Definition loadDem.cpp:9
base interpolator is an abstract base class
Definition BinarySearchFunc.cpp:5