OGS
generateGeometry.cpp
Go to the documentation of this file.
1
11// ThirdParty
12#include <tclap/CmdLine.h>
13
14#include <numeric>
15
16#include "BaseLib/MPI.h"
17#include "GeoLib/GEOObjects.h"
19#include "GeoLib/Point.h"
20#include "GeoLib/Polyline.h"
21#include "GeoLib/Utils.h"
22#include "InfoLib/GitInfo.h"
23
24std::tuple<std::vector<GeoLib::Polyline*>, GeoLib::PolylineVec::NameIdMap>
25appendNamedPolyline(std::unique_ptr<GeoLib::Polyline> polyline,
26 std::string&& polyline_name)
27{
28 std::vector<GeoLib::Polyline*> lines;
30
31 lines.push_back(polyline.release());
32 name_map[std::move(polyline_name)] = lines.size() - 1;
33
34 return {lines, name_map};
35}
36
38 std::string&& point_name,
39 std::string& geometry_name,
40 GeoLib::GEOObjects& geometry)
41{
42 std::vector<GeoLib::Point*> points;
43 points.push_back(new GeoLib::Point{point});
44
45 GeoLib::PointVec::NameIdMap name_map{{std::move(point_name), 0}};
46
47 geometry.addPointVec(std::move(points), geometry_name, std::move(name_map));
48}
49
51 GeoLib::Point const& point1,
52 int const number_of_subdivisions,
53 std::string&& polyline_name,
54 std::string& geometry_name,
55 GeoLib::GEOObjects& geometry)
56{
57 auto intermediate_points = GeoLib::generateEquidistantPoints(
58 point0, point1, number_of_subdivisions);
59 std::vector<GeoLib::Point*> points(intermediate_points.begin(),
60 intermediate_points.end());
61 geometry.addPointVec(std::move(points), geometry_name,
63 auto const& point_vec = *geometry.getPointVecObj(geometry_name);
64
65 std::vector<std::size_t> polyline_point_ids(point_vec.getVector().size());
66 std::iota(begin(polyline_point_ids), end(polyline_point_ids), 0);
67
68 auto [lines, name_map] = appendNamedPolyline(
69 GeoLib::createPolyline(point_vec, std::move(polyline_point_ids)),
70 std::move(polyline_name));
71
72 geometry.addPolylineVec(std::move(lines), geometry_name,
73 std::move(name_map));
74}
75
76std::vector<GeoLib::Point*> generateQuadPoints(
77 std::array<GeoLib::Point, 4> const& points,
78 std::array<int, 4> const& number_of_subdivisions_per_edge)
79{
80 std::vector<GeoLib::Point*> quad_points;
81
82 auto addPointsOnLine = [&quad_points](auto const& begin, auto const& end,
83 auto const number_of_subdivisions)
84 {
85 auto intermediate_points = GeoLib::generateEquidistantPoints(
86 begin, end, number_of_subdivisions);
87 quad_points.insert(quad_points.end(), intermediate_points.begin(),
88 --intermediate_points.end());
89 delete intermediate_points.back(); // Release last point, other points
90 // are managed by GEOObjects.
91 };
92
93 addPointsOnLine(points[0], points[1], number_of_subdivisions_per_edge[0]);
94 addPointsOnLine(points[1], points[2], number_of_subdivisions_per_edge[1]);
95 addPointsOnLine(points[2], points[3], number_of_subdivisions_per_edge[2]);
96 addPointsOnLine(points[3], points[0], number_of_subdivisions_per_edge[3]);
97
98 return quad_points;
99}
100
102 GeoLib::Point const& point1,
103 int const number_of_subdivisions_first_x,
104 int const number_of_subdivisions_second_x,
105 int const number_of_subdivisions_first_y,
106 int const number_of_subdivisions_second_y,
107 int const number_of_subdivisions_first_z,
108 int const number_of_subdivisions_second_z,
109 std::string&& quad_name, std::string& geometry_name,
110 GeoLib::GEOObjects& geometry)
111{
112 std::array<GeoLib::Point, 4> edge_points;
113 edge_points[0] = point0;
114 edge_points[2] = point1;
115 std::array<int, 4> number_of_subdivisions;
116 if (point0[0] != point1[0] && point0[1] != point1[1] &&
117 point0[2] == point1[2])
118 {
119 // quad in xy plane
120 edge_points[1] =
121 GeoLib::Point{point1[0], point0[1], point0[2]}; // right front
122 edge_points[3] =
123 GeoLib::Point{point0[0], point1[1], point0[2]}; // left back
124 number_of_subdivisions = {
125 number_of_subdivisions_first_x, number_of_subdivisions_first_y,
126 number_of_subdivisions_second_x, number_of_subdivisions_second_y};
127 }
128 else if (point0[0] != point1[0] && point0[1] == point1[1] &&
129 point0[2] != point1[2])
130 {
131 // quad in xz plane
132 edge_points[1] =
133 GeoLib::Point{point1[0], point1[1], point0[2]}; // lower right
134 edge_points[3] =
135 GeoLib::Point{point0[0], point0[1], point1[2]}; // upper left
136 number_of_subdivisions = {
137 number_of_subdivisions_first_x, number_of_subdivisions_first_z,
138 number_of_subdivisions_second_x, number_of_subdivisions_second_z};
139 }
140 else if (point0[0] == point1[0] && point0[1] != point1[1] &&
141 point0[2] != point1[2])
142 {
143 // quad in yz plane
144 edge_points[1] =
145 GeoLib::Point{point1[0], point1[1], point0[2]}; // lower back
146 edge_points[3] =
147 GeoLib::Point{point0[0], point0[1], point1[2]}; // upper front
148 number_of_subdivisions = {
149 number_of_subdivisions_first_y, number_of_subdivisions_first_z,
150 number_of_subdivisions_second_y, number_of_subdivisions_second_z};
151 }
152 else
153 {
154 ERR("Input coordinates don't describe an axis aligned polyline or "
155 "quad.");
156 return EXIT_FAILURE;
157 }
158
159 geometry.addPointVec(
160 generateQuadPoints(edge_points, number_of_subdivisions), geometry_name,
162 auto const& point_vec = *geometry.getPointVecObj(geometry_name);
163
164 std::vector<std::size_t> polyline_point_ids(point_vec.getVector().size() +
165 1);
166 std::iota(begin(polyline_point_ids), end(polyline_point_ids), 0);
167 polyline_point_ids.back() = polyline_point_ids.front();
168
169 auto [lines, name_map] = appendNamedPolyline(
170 GeoLib::createPolyline(point_vec, std::move(polyline_point_ids)),
171 std::move(quad_name));
172
173 geometry.addPolylineVec(std::move(lines), geometry_name,
174 std::move(name_map));
175 return EXIT_SUCCESS;
176}
177
178int main(int argc, char* argv[])
179{
180 TCLAP::CmdLine cmd(
181 "Generate point, axis parallel polyline or axis parallel quad "
182 "geometry. \n\n"
183 "OpenGeoSys-6 software, version " +
185 ".\n"
186 "Copyright (c) 2012-2024, OpenGeoSys Community "
187 "(http://www.opengeosys.org)",
189 TCLAP::ValueArg<double> z0("", "z0", "z coordinate of the first point",
190 true, 0.0, "z0");
191 cmd.add(z0);
192 TCLAP::ValueArg<double> y0("", "y0", "y coordinate of the first point",
193 true, 0.0, "y0");
194 cmd.add(y0);
195 TCLAP::ValueArg<double> x0("", "x0", "x coordinate of the first point",
196 true, 0.0, "x0");
197 cmd.add(x0);
198 TCLAP::ValueArg<double> z1("", "z1", "z coordinate of the first point",
199 true, 1.0, "z1");
200 cmd.add(z1);
201 TCLAP::ValueArg<double> y1("", "y1", "y coordinate of the first point",
202 true, 1.0, "y1");
203 cmd.add(y1);
204 TCLAP::ValueArg<double> x1("", "x1", "x coordinate of the first point",
205 true, 1.0, "x1");
206 cmd.add(x1);
207 TCLAP::ValueArg<int> nx("", "nx", "number of subdivisions in x direction",
208 false, 0, "number of subdivisions in x direction");
209 cmd.add(nx);
210 TCLAP::ValueArg<int> nx1("", "nx1", "number of subdivisions in x direction",
211 false, -1,
212 "number of subdivisions in x direction");
213 cmd.add(nx1);
214 TCLAP::ValueArg<int> ny("", "ny", "number of subdivisions in y direction",
215 false, 0, "number of subdivisions in y direction");
216 cmd.add(ny);
217 TCLAP::ValueArg<int> ny1("", "ny1", "number of subdivisions in y direction",
218 false, -1,
219 "number of subdivisions in y direction");
220 cmd.add(ny1);
221 TCLAP::ValueArg<int> nz("", "nz", "number of subdivisions in z direction",
222 false, 0, "number of subdivisions in z direction");
223 cmd.add(nz);
224 TCLAP::ValueArg<int> nz1("", "nz1", "number of subdivisions in z direction",
225 false, -1,
226 "number of subdivisions in z direction");
227 cmd.add(nz1);
228 TCLAP::ValueArg<std::string> geometry_name(
229 "", "geometry_name", "name of the generated geometry", false,
230 "conceptual model", "name of the geometry");
231 cmd.add(geometry_name);
232 TCLAP::ValueArg<std::string> polyline_name(
233 "", "polyline_name", "name of the generated polyline", false,
234 "polyline", "name of the generated polyline");
235 cmd.add(polyline_name);
236 TCLAP::ValueArg<std::string> geo_output_arg(
237 "o", "output", "output geometry file (*.gml)", true, "", "output file");
238 cmd.add(geo_output_arg);
239 cmd.parse(argc, argv);
240
241 BaseLib::MPI::Setup mpi_setup(argc, argv);
242
243 auto const p0 = GeoLib::Point{x0.getValue(), y0.getValue(), z0.getValue()};
244 auto const p1 = GeoLib::Point{x1.getValue(), y1.getValue(), z1.getValue()};
245
246 GeoLib::GEOObjects geometry;
247 auto constexpr eps = std::numeric_limits<double>::epsilon();
248 if (p1[0] - p0[0] < eps && p1[1] - p0[1] < eps && p1[2] - p0[2] < eps)
249 {
250 generateSinglePointGeometry(p0, std::move(polyline_name.getValue()),
251 geometry_name.getValue(), geometry);
252 }
253 else if ((p1[0] - p0[0] >= eps && p1[1] - p0[1] < eps &&
254 p1[2] - p0[2] < eps) ||
255 (p1[0] - p0[0] < eps && p1[1] - p0[1] >= eps &&
256 p1[2] - p0[2] < eps) ||
257 (p1[0] - p0[0] < eps && p1[1] - p0[1] < eps &&
258 p1[2] - p0[2] >= eps))
259 {
260 generatePolylineGeometry(p0, p1, nx.getValue(),
261 std::move(polyline_name.getValue()),
262 geometry_name.getValue(), geometry);
263 }
264 else
265 {
266 auto eval = [](int v, int v1)
267 {
268 if (v1 == -1)
269 {
270 return v;
271 }
272 else
273 {
274 return v1;
275 }
276 };
278 p0, p1, nx.getValue(), eval(nx.getValue(), nx1.getValue()),
279 ny.getValue(), eval(ny.getValue(), ny1.getValue()),
280 nz.getValue(), eval(nz.getValue(), nz1.getValue()),
281 std::move(polyline_name.getValue()), geometry_name.getValue(),
282 geometry) == EXIT_FAILURE)
283 {
284 return EXIT_FAILURE;
285 }
286 }
287
289 xml.export_name = geometry.getGeometryNames()[0];
290 BaseLib::IO::writeStringToFile(xml.writeToString(),
291 geo_output_arg.getValue());
292
293 return EXIT_SUCCESS;
294}
Definition of the BoostXmlGmlInterface class.
Definition of the GEOObjects class.
Definition of the Point class.
Git information.
void ERR(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:45
Definition of the PolyLine class.
Container class for geometric objects.
Definition GEOObjects.h:57
std::vector< std::string > getGeometryNames() const
Returns the names of all geometry vectors.
void addPolylineVec(std::vector< Polyline * > &&lines, std::string const &name, PolylineVec::NameIdMap &&ply_names)
void addPointVec(std::vector< Point * > &&points, std::string &name, PointVec::NameIdMap &&pnt_id_name_map, double const eps=std::sqrt(std::numeric_limits< double >::epsilon()))
const PointVec * getPointVecObj(const std::string &name) const
std::map< std::string, std::size_t > NameIdMap
Definition TemplateVec.h:41
int main(int argc, char *argv[])
std::tuple< std::vector< GeoLib::Polyline * >, GeoLib::PolylineVec::NameIdMap > appendNamedPolyline(std::unique_ptr< GeoLib::Polyline > polyline, std::string &&polyline_name)
void generatePolylineGeometry(GeoLib::Point const &point0, GeoLib::Point const &point1, int const number_of_subdivisions, std::string &&polyline_name, std::string &geometry_name, GeoLib::GEOObjects &geometry)
std::vector< GeoLib::Point * > generateQuadPoints(std::array< GeoLib::Point, 4 > const &points, std::array< int, 4 > const &number_of_subdivisions_per_edge)
int generateQuadGeometry(GeoLib::Point const &point0, GeoLib::Point const &point1, int const number_of_subdivisions_first_x, int const number_of_subdivisions_second_x, int const number_of_subdivisions_first_y, int const number_of_subdivisions_second_y, int const number_of_subdivisions_first_z, int const number_of_subdivisions_second_z, std::string &&quad_name, std::string &geometry_name, GeoLib::GEOObjects &geometry)
void generateSinglePointGeometry(GeoLib::Point const &point, std::string &&point_name, std::string &geometry_name, GeoLib::GEOObjects &geometry)
int writeStringToFile(std::string_view content, std::filesystem::path const &file_path)
Definition Writer.cpp:45
std::unique_ptr< Polyline > createPolyline(GeoLib::PointVec const &points_vec, std::vector< std::size_t > &&point_ids)
Create a polyline from given point ids.
Definition Polyline.cpp:564
std::vector< GeoLib::Point * > generateEquidistantPoints(MathLib::Point3d const &begin, MathLib::Point3d const &end, int const number_of_subdivisions)
Definition Utils.cpp:18
GITINFOLIB_EXPORT const std::string ogs_version