Change data to short to restrain memory usage

This commit is contained in:
Gareth Evans
2017-06-14 20:33:32 +01:00
parent cb2939b244
commit 02bd67f11b
4 changed files with 15 additions and 15 deletions

View File

@@ -29,10 +29,10 @@ typedef struct _tile_t{
};
double cellsize;
long long datastart;
int nodata;
int max_el;
int min_el;
int *data;
short nodata;
short max_el;
short min_el;
short *data;
int resolution;
double width_deg;
double height_deg;