mesh-continents v3.2.3¶
Mercurial revision 5803:7164e00e8f3d | 2026-08-18
Description¶
mesh-continents is a tool designed to extend a 2D mesh on land. It processes an input mesh and generates an extended mesh that includes land areas, ensuring continuity and coherence in the output.
Usage¶
mesh-continents [OPTIONS]
Options¶
Option |
Description |
|---|---|
|
Display this help message and exit. |
|
Root name for intermediate output files. Default: |
|
Generate extra output files for debugging purposes. |
|
Use files produced with |
|
Path to the input mesh file to extend. Required. |
|
Path to the output mesh file. Default: |
Examples¶
Basic Usage¶
Extend a mesh and save the output with the default name:
mesh-continents -m input_mesh.nei
Custom Root Name¶
Specify a custom root name for intermediate files:
mesh-continents -m input_mesh.nei --rootname my_mesh
Debug Mode¶
Generate debug files to analyze the process:
mesh-continents -m input_mesh.nei --debug
Recover from Crash¶
Use debug files to recover after a crash:
mesh-continents -m input_mesh.nei --recover
Custom Output Path¶
Specify a custom output path:
mesh-continents -m input_mesh.nei -o output_mesh.nei
Combining Options¶
Combine multiple options for a complete workflow:
mesh-continents -m input_mesh.nei --rootname my_mesh --debug -o custom_output.nei
Environment Variables¶
mesh-continents does not rely on specific environment variables. However, ensure your system has sufficient resources (CPU, memory, and disk space) for processing large meshes.
Notes¶
Input Mesh:
The input mesh (
-m) must be a valid 2D mesh file in the expected format.
Output Files:
If
--rootnameis not specified, the default root name is derived from the input mesh path (e.g.,input_mesh-continents).The output mesh is saved as
<rootname>.neiunless specified otherwise with-o.
Debug and Recovery:
--debuggenerates additional files to help diagnose issues.--recoveruses these debug files to resume processing after a crash. Note: This option automatically enables--debug.
Performance:
Extending large meshes may require significant computational resources. Monitor system performance during execution.
See Also¶
Mesh Processing Tools (for related tools and utilities)