10#include <tclap/CmdLine.h>
18int main(
int argc,
char* argv[])
21 "Converts 2D mesh file into shapfile such that each element is "
22 "represented by a polygon. Cell attributes are transferred onto shape "
23 "polygons while point attributes are ignored.\n\n"
24 "OpenGeoSys-6 software, version " +
27 "Copyright (c) 2012-2024, OpenGeoSys Community "
28 "(http://www.opengeosys.org)",
31 TCLAP::ValueArg<std::string> output_arg(
"o",
"output-file",
32 "Esri Shapefile (*.shp)",
true,
"",
36 TCLAP::ValueArg<std::string> input_arg(
"i",
"input-file",
37 "OGS mesh file (*.vtu, *.msh)",
true,
38 "",
"input_file.vtu");
41 cmd.parse(argc, argv);
45 std::string
const file_name(input_arg.getValue());
46 std::unique_ptr<MeshLib::Mesh>
const mesh(
int main(int argc, char *argv[])
Definition of the Mesh class.
Implementation of the SHPInterface class.
static bool write2dMeshToSHP(const std::string &file_name, const MeshLib::Mesh &mesh)
GITINFOLIB_EXPORT const std::string ogs_version
MeshLib::Mesh * readMeshFromFile(const std::string &file_name, bool const compute_element_neighbors)
Definition of readMeshFromFile function.