mirror of
https://gitlab.com/Trygve/contour-creator.git
synced 2024-10-31 20:00:15 +00:00
changed to create a vector
This commit is contained in:
parent
33dd409c43
commit
d046e18c43
10
src/main.cpp
10
src/main.cpp
@ -13,7 +13,7 @@
|
||||
#include <gdal/gdal_frmts.h>
|
||||
#include <omp.h>
|
||||
|
||||
CellMap produce_cellmap(HeightMap* heightmap, float z)
|
||||
std::vector<Point> produce_cellmap(HeightMap* heightmap, float z)
|
||||
{
|
||||
int length = (heightmap->width-1)*(heightmap->height-1);
|
||||
uint8_t *cells = (uint8_t *) CPLMalloc(sizeof(uint8_t)*length);
|
||||
@ -31,20 +31,20 @@ CellMap produce_cellmap(HeightMap* heightmap, float z)
|
||||
};
|
||||
}
|
||||
|
||||
return CellMap(heightmap->width-1, heightmap->height-1, cells, heightmap->reference_system, heightmap->geotransform);
|
||||
return points;
|
||||
|
||||
|
||||
}
|
||||
|
||||
std::vector<CellMap> vector_cellmap(HeightMap* heightmap, int interval)
|
||||
std::vector<std::vector<Point>> vector_cellmap(HeightMap* heightmap, int interval)
|
||||
{
|
||||
int num_contours = (heightmap->max - heightmap->min)/interval;
|
||||
std::vector<CellMap> vector_contours;
|
||||
std::vector<std::vector<Point>> vector_contours;
|
||||
omp_set_num_threads(12);
|
||||
|
||||
#pragma omp parallel
|
||||
{
|
||||
std::vector<CellMap> vec_private;
|
||||
std::vector<std::vector<Point>> vec_private;
|
||||
#pragma omp for
|
||||
for (int i = 1; i <= num_contours; i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user