Add support for working out IPPD based on LIDAR tiles

This commit is contained in:
Gareth Evans
2017-06-01 18:54:49 +01:00
parent ee67a86a9f
commit 83cdc915d2
3 changed files with 277 additions and 104 deletions

28
tiles.hh Normal file
View File

@@ -0,0 +1,28 @@
#ifndef _TILES_HH_
#define _TILES_HH_
typedef struct _tile_t{
char *filename;
union{
int cols;
int width;
};
union{
int rows;
int height;
};
double xll;
double yll;
double xur;
double yur;
double cellsize;
long long datastart;
int nodata;
int max_el;
int min_el;
int *data;
} tile_t, *ptile_t;
int tile_load_lidar(tile_t*, char *, int);
#endif