forked from ExternalVendorCode/Signal-Server
Add support for working out IPPD based on LIDAR tiles
This commit is contained in:
28
tiles.hh
Normal file
28
tiles.hh
Normal 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
|
Reference in New Issue
Block a user