changed contour creator

This commit is contained in:
esther 2024-04-29 14:56:06 +02:00
parent 5cd5627bb7
commit 33dd409c43
1 changed files with 15 additions and 1 deletions

View File

@ -35,4 +35,18 @@ class CellMap
OGRSpatialReference reference_system;
CellMap(int width, int height, uint8_t* cells, OGRSpatialReference reference_system, double* geotransform);
int get_cell(int x,int y);
};
};
class Point
{
public:
int x;
int y;
int mscase;
Point(int x, int y, int mscase){
this -> x = x;
this -> y = y;
this -> mscase = mscase;
};
};