mirror of
https://gitlab.com/Trygve/contour-creator.git
synced 2026-03-15 00:14:04 +00:00
Compare commits
4 Commits
cli-argume
...
drawing-li
| Author | SHA1 | Date | |
|---|---|---|---|
| 9300fa729c | |||
| 62d62987d3 | |||
| 5845ae6693 | |||
| 47d0e29868 |
103
src/main.cpp
103
src/main.cpp
@@ -1,4 +1,6 @@
|
|||||||
#include "contour_creator.hh"
|
#include "contour_creator.hh"
|
||||||
|
#include <algorithm>
|
||||||
|
#include <array>
|
||||||
#include <gdal/ogr_api.h>
|
#include <gdal/ogr_api.h>
|
||||||
#include "ogrsf_frmts.h"
|
#include "ogrsf_frmts.h"
|
||||||
#include <gdal/ogr_core.h>
|
#include <gdal/ogr_core.h>
|
||||||
@@ -6,6 +8,8 @@
|
|||||||
#include <gdal/ogr_geometry.h>
|
#include <gdal/ogr_geometry.h>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <tuple>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <gdal/gdal.h>
|
#include <gdal/gdal.h>
|
||||||
@@ -33,11 +37,21 @@ std::vector<Point> produce_cellmap(HeightMap* heightmap, float z)
|
|||||||
return points;
|
return points;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool is_in(int value, std::array<int, 8> array)
|
||||||
|
{
|
||||||
|
return std::binary_search(array.begin(), array.end(), value);
|
||||||
|
}
|
||||||
|
|
||||||
std::vector<std::vector<Point>> create_lines(HeightMap* heightmap, int interval)
|
std::vector<std::vector<Point>> create_lines(HeightMap* heightmap, int interval)
|
||||||
{
|
{
|
||||||
int num_contours = (heightmap->max - heightmap->min)/interval;
|
int num_contours = (heightmap->max - heightmap->min)/interval;
|
||||||
std::vector<std::vector<Point>> vector_contours;
|
std::vector<std::vector<Point>> vector_contours;
|
||||||
|
|
||||||
|
std::array<int,8> north{4, 5,6,7,8,9,10,11};
|
||||||
|
std::array<int,8> south{1,2,5,6,9,10,13,14};
|
||||||
|
std::array<int,8> east{2,3,4,5,10,11,12,13};
|
||||||
|
std::array<int,8> west{1,3,5,7,8,10,12,14};
|
||||||
|
|
||||||
#pragma omp parallel
|
#pragma omp parallel
|
||||||
{
|
{
|
||||||
std::vector<std::vector<Point>> vec_private;
|
std::vector<std::vector<Point>> vec_private;
|
||||||
@@ -51,39 +65,44 @@ std::vector<std::vector<Point>> create_lines(HeightMap* heightmap, int interval)
|
|||||||
int points_allocated = 0;
|
int points_allocated = 0;
|
||||||
x = points[0].x;
|
x = points[0].x;
|
||||||
y = points[0].y;
|
y = points[0].y;
|
||||||
|
int current_case = points[0].mscase;
|
||||||
points[0].allocated = true;
|
points[0].allocated = true;
|
||||||
line.push_back(points[0]);
|
line.push_back(points[0]);
|
||||||
for (int j = 0; j < points.size(); j++){
|
for (int j = 0; j < points.size(); j++){
|
||||||
for (int k = 0; k < points.size(); k++){
|
for (int k = 0; k < points.size(); k++){
|
||||||
Point* candidate = &points[k];
|
Point* candidate = &points[k];
|
||||||
if (!candidate->allocated) {
|
if (!candidate->allocated) {
|
||||||
if (candidate->x == x +1 && candidate->y == y) {
|
if (candidate->x == x +1 && candidate->y == y /*&& is_in(current_case, east)*/) {
|
||||||
candidate->allocated = true;
|
candidate->allocated = true;
|
||||||
x = candidate->x;
|
x = candidate->x;
|
||||||
y = candidate->y;
|
y = candidate->y;
|
||||||
|
current_case = candidate->mscase;
|
||||||
line.push_back(*candidate);
|
line.push_back(*candidate);
|
||||||
points_allocated++;
|
points_allocated++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else if (candidate->x == x -1 && candidate->y == y) {
|
else if (candidate->x == x -1 && candidate->y == y /*&& is_in(current_case, west)*/) {
|
||||||
x = candidate->x;
|
x = candidate->x;
|
||||||
y = candidate->y;
|
y = candidate->y;
|
||||||
|
current_case = candidate->mscase;
|
||||||
candidate->allocated = true;
|
candidate->allocated = true;
|
||||||
line.push_back(*candidate);
|
line.push_back(*candidate);
|
||||||
points_allocated++;
|
points_allocated++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else if (candidate->x == x && candidate->y == y + 1) {
|
else if (candidate->x == x && candidate->y == y + 1 /*&& is_in(current_case, north)*/) {
|
||||||
x = candidate->x;
|
x = candidate->x;
|
||||||
y = candidate->y;
|
y = candidate->y;
|
||||||
|
current_case = candidate->mscase;
|
||||||
candidate->allocated = true;
|
candidate->allocated = true;
|
||||||
line.push_back(*candidate);
|
line.push_back(*candidate);
|
||||||
points_allocated++;
|
points_allocated++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else if (candidate->x == x && candidate->y == y - 1) {
|
else if (candidate->x == x && candidate->y == y - 1 /*&& is_in(current_case, south)*/) {
|
||||||
x = candidate->x;
|
x = candidate->x;
|
||||||
y = candidate->y;
|
y = candidate->y;
|
||||||
|
current_case = candidate->mscase;
|
||||||
candidate->allocated = true;
|
candidate->allocated = true;
|
||||||
line.push_back(*candidate);
|
line.push_back(*candidate);
|
||||||
points_allocated++;
|
points_allocated++;
|
||||||
@@ -101,8 +120,10 @@ std::vector<std::vector<Point>> create_lines(HeightMap* heightmap, int interval)
|
|||||||
if (!candidate->allocated)
|
if (!candidate->allocated)
|
||||||
{
|
{
|
||||||
line.push_back(*candidate);
|
line.push_back(*candidate);
|
||||||
|
candidate->allocated = true;
|
||||||
x = candidate->x;
|
x = candidate->x;
|
||||||
y = candidate->y;
|
y = candidate->y;
|
||||||
|
current_case = candidate->mscase;
|
||||||
points_allocated++;
|
points_allocated++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -130,20 +151,35 @@ std::tuple<double, double> local_to_projected(double* geotransform, int x, int y
|
|||||||
constexpr std::tuple<double, double, double, double> marching_squares_lookup(int mcase)
|
constexpr std::tuple<double, double, double, double> marching_squares_lookup(int mcase)
|
||||||
{
|
{
|
||||||
switch (mcase) {
|
switch (mcase) {
|
||||||
case 1: return {0, 0.5, 0.5, 0};
|
case 1:
|
||||||
case 2: return {1, 0.5, 0.5, 0};
|
return {0, 0.5, 0.5, 0};
|
||||||
case 3: return {0, 0.5, 1, 0.5};
|
case 14:
|
||||||
case 4: return {0.5, 1, 1, 0.5};
|
return {0.5, 0, 0, 0.5};
|
||||||
case 5: return {0, 0, 0, 0}; //FIXME
|
case 2:
|
||||||
case 6: return {0.5, 1, 0.5, 0};
|
return {0.5, 0, 1, 0.5};
|
||||||
case 7: return {0, 0.5, 0.5, 1};
|
case 13:
|
||||||
case 8: return {0, 0.5, 0.5, 1};
|
return {1, 0.5, 0.5, 0};
|
||||||
case 9: return {0.5, 1, 0.5, 0};
|
case 3:
|
||||||
case 10: return {0, 0, 0, 0}; //FIXME
|
return {0, 0.5, 1, 0.5};
|
||||||
case 11: return {0.5, 1, 1, 0.5};
|
case 12:
|
||||||
case 12: return {0, 0.5, 1, 0.5};
|
return {1, 0.5, 0, 0.5};
|
||||||
case 13: return {0.5, 0, 1, 0.5};
|
case 4:
|
||||||
case 14: return {0, 0.5, 0.5, 0};
|
return {0.5, 1, 1, 0.5};
|
||||||
|
case 11:
|
||||||
|
return {1, 0.5, 0.5, 1};
|
||||||
|
case 5:
|
||||||
|
case 10:
|
||||||
|
return {0, 0, 0, 0}; //FIXME
|
||||||
|
case 6:
|
||||||
|
return {0.5, 1, 0.5, 0};
|
||||||
|
case 9:
|
||||||
|
return {0.5, 0, 0.5, 1};
|
||||||
|
case 7:
|
||||||
|
return {0, 0.5, 0.5, 1};
|
||||||
|
case 8:
|
||||||
|
return {0.5, 0.5, 0, 0.5};
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
void write_output_file(std::vector<std::vector<Point>> all_points, const char *filepath, HeightMap* heightmap)
|
void write_output_file(std::vector<std::vector<Point>> all_points, const char *filepath, HeightMap* heightmap)
|
||||||
@@ -201,13 +237,40 @@ void write_output_file(std::vector<std::vector<Point>> all_points, const char *f
|
|||||||
|
|
||||||
std::vector<Point> points = all_points[j];
|
std::vector<Point> points = all_points[j];
|
||||||
|
|
||||||
|
bool left_to_right = true;
|
||||||
|
|
||||||
|
if ((points[0].y - points[1].y) < 0)
|
||||||
|
left_to_right = true;
|
||||||
|
else
|
||||||
|
left_to_right = false;
|
||||||
|
|
||||||
for (int k = 0; k < points.size(); k++)
|
for (int k = 0; k < points.size(); k++)
|
||||||
{
|
{
|
||||||
|
bool left_to_right = true;
|
||||||
|
|
||||||
|
if ((points[k].x - points[k-1].x) < 0)
|
||||||
|
left_to_right = false;
|
||||||
|
bool top_to_bottom = true;
|
||||||
|
if ((points[k].y - points[k-1].y) < 0)
|
||||||
|
left_to_right = false;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int x_raw = points[k].x;
|
int x_raw = points[k].x;
|
||||||
int y_raw = points[k].y;
|
int y_raw = points[k].y;
|
||||||
auto [x, y] = local_to_projected(heightmap->geotransform, x_raw, y_raw);
|
auto [x, y] = local_to_projected(heightmap->geotransform, x_raw, y_raw);
|
||||||
//auto [x_bl, y_bl, x_tr, y_tr] = marching_squares_lookup(*(cellmap->cells + i) );
|
|
||||||
geometry->setPoint(geometry->getNumPoints(),x ,y );
|
auto [x1, y1, x2, y2] = marching_squares_lookup(points[k].mscase);
|
||||||
|
|
||||||
|
if (left_to_right or !top_to_bottom)
|
||||||
|
{
|
||||||
|
geometry->setPoint(geometry->getNumPoints(),x + (x1/6) ,y + (y1/6));
|
||||||
|
geometry->setPoint(geometry->getNumPoints(),x + (x2/6) ,y + (y2/6));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
geometry->setPoint(geometry->getNumPoints(),x + (x2/6) ,y + (y2/6));
|
||||||
|
geometry->setPoint(geometry->getNumPoints(),x + (x1/6) ,y + (y1/6));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( feature->SetGeometry(geometry) != OGRERR_NONE)
|
if ( feature->SetGeometry(geometry) != OGRERR_NONE)
|
||||||
|
|||||||
Reference in New Issue
Block a user