Move tile post processing

This commit is contained in:
Gareth Evans
2017-06-06 21:47:05 +01:00
parent 580fc804e2
commit c6873f8dea
2 changed files with 58 additions and 51 deletions

View File

@@ -11,10 +11,22 @@ typedef struct _tile_t{
int rows;
int height;
};
double xll;
double yll;
double xur;
double yur;
union{
double xll;
double max_west;
};
union{
double yll;
double min_north;
};
union{
double xur;
double min_west;
};
union{
double yur;
double max_north;
};
double cellsize;
long long datastart;
int nodata;