使用LibTIFF计算DEM的填挖方体积
使用LibTIFF计算DEM的填挖方体积
这篇代码展示了如何使用LibTIFF库读取DEM文件并计算填挖方体积。程序使用C语言编写,包含了详细的注释,方便用户理解代码逻辑。
代码
#include <stdio.h>
#include <stdlib.h>
#include <tiffio.h>
#define ROWS 327
#define COLS 486
#define PIXEL_SIZE 5
int main(int argc, char* argv[]) {
TIFF *tif;
float *data;
uint32 width, height;
uint16 bits_per_sample, samples_per_pixel;
tsize_t strip_size;
unsigned long long total_fill_volume = 0, total_cut_volume = 0;
int i, j;
if (argc < 2) {
fprintf(stderr, 'Usage: %s <input file>\n', argv[0]);
exit(1);
}
tif = TIFFOpen(argv[1], 'r');
if (!tif) {
fprintf(stderr, 'Error opening TIFF file\n');
exit(1);
}
TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &width);
TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &height);
TIFFGetField(tif, TIFFTAG_BITSPERSAMPLE, &bits_per_sample);
TIFFGetField(tif, TIFFTAG_SAMPLESPERPIXEL, &samples_per_pixel);
if (width != COLS || height != ROWS || bits_per_sample != 32 || samples_per_pixel != 1) {
fprintf(stderr, 'Invalid TIFF format\n');
exit(1);
}
strip_size = TIFFStripSize(tif);
data = (float*) _TIFFmalloc(strip_size);
if (!data) {
fprintf(stderr, 'Error allocating memory\n');
exit(1);
}
for (i = 0; i < height; i++) {
TIFFReadEncodedStrip(tif, TIFFComputeStrip(tif, i, 0), data, strip_size);
for (j = 0; j < width; j++) {
float elevation = data[j];
if (elevation > 0) {
total_fill_volume += (PIXEL_SIZE * PIXEL_SIZE * elevation);
} else {
total_cut_volume += (PIXEL_SIZE * PIXEL_SIZE * (-elevation));
}
}
}
printf('Total fill volume: %llu cubic meters\n', total_fill_volume);
printf('Total cut volume: %llu cubic meters\n', total_cut_volume);
_TIFFfree(data);
TIFFClose(tif);
return 0;
}
运行方法
- 安装LibTIFF库
- 将代码保存为dem.cpp
- 使用编译器编译代码:
gcc -o dem dem.cpp -ltiff - 在命令行中运行程序,并将DEM文件路径作为参数传入:
./dem D:\kjfx\dem.tif - 程序会输出总填方体积和总挖方体积
注意
- 代码中的 ROWS, COLS, PIXEL_SIZE 需要根据实际DEM数据进行修改。
- 程序假设DEM数据为单波段32位浮点型TIFF格式。
原文地址: http://www.cveoy.top/t/topic/fVgR 著作权归作者所有。请勿转载和采集!