Skip to main content

Read and write 2DM mesh files

Project description

Py2DM

A Python module for reading and writing SMS 2DM mesh files.

PyPI - License GitHub Workflow Status GitHub Workflow Status Coveralls github branch CodeFactor Grade PyPI Read the Docs


  • Support for all standard 2DM element types
  • Optional C++ parser extensions
  • Designed with large meshes (>10 million cells) in mind
  • Python version 3.6+*
  • Fully type annotated

*Python versions 3.6 and 3.7 require external packages. The the installation section for details.

The documentation for this project is hosted at Read the Docs.

Basic usage

The following sections cover basic use cases to illustrate the Py2DM interface.

For detailed instructions, performance considerations and advanced use cases, please refer to the documentation.

Reading mesh files

The py2dm.Reader class provides multiple interfaces for extracting mesh data.

For iterator-based access, the .iter_nodes(), .iter_elements() and .iter_node_strings() methods are available. These allow specifying the range of elements to retrieve. Alternatively, the .elements, .nodes, and node_strings properties provide a shorthand for the corresponding iterator's default values.

import py2dm

with py2dm.Reader('path/to/mesh.2dm') as mesh:
    for node in mesh.iter_nodes():
        if node.id % 10 == 0:
            print(node)

# The above will print the following:
'<Node #10: (1200.0, 200.0, 20.0)>'
'<Node #20: (1120.0, 220.0, 10.0)>'
...

To access a given element or node by its unique ID, use the .element() and .node() method respectively:

import py2dm

with py2dm.Reader('path/to/mesh.2dm') as mesh:
    for element in mesh.elements:
        coords = [mesh.node(n).pos for n in element.nodes]
        print(f'Element #{element.id} coordinates:\n'
              f'\t{coords}')

# The above will print the following:
'Element #1 coordinates:'
'    [(1.0, 2.0, 2.0), (2.0, 2.0, 1.5), (2.0, 1.0, 1.75)]'
'Element #2 coordinates:'
'    [(2.0, 2.0, 1.5), (2.0, 1.0, 1.75), (1.0, 1.0, 1.25)]'
...

Writing mesh files

The py2dm.Writer class provides the node(), element(), and node_string() factory methods to add new geometries to the mesh. The factories for nodes and elements will return the ID they were assigned.

with py2dm.Writer('path/to/mesh.2dm') as mesh:

    # Nodes can be instantiated first and added later
    my_node = py2dm.Node(1, -5.0, -5.0, 0.1)
    mesh.node(my_node)

    # Alternatively, you can use the Writer.node() method as a factory
    mesh.node(2, -5.0, 5.0, 0.2)

    # Specifying a negative ID will auto-select it based on the number
    # of existing nodes in the mesh
    mesh.node(-1, 5.0, -5.0, 0.3)
    mesh.node(-1, 5.0, 5.0, 0.2)

    # Similarly, elements can also be created separately or via the
    # factory method
    my_element = py2dm.Element3T(1, 1, 2, 3)
    mesh.element(my_element)

    # Here too you can use a negative value to auto-select an ID
    mesh.element('E3T', -1, 2, 4, 3)

Format support

The 2DM standard has been extended several times by different parties over the years. This led to the original 2DM format specification no longer matching SMS' own implementation, or those of other software packages such as TUFLOW or BASEMENT.

Py2DM attempts to strike a balance of supporting these custom format variants without breaking compatibility with the original standard.

Notable deviations from the 2DM standard

  • The maximum ID limit of 999'999 is not enforced.

  • Floating point values may be used as material ID0s by default.

    You can set the allow_float_matid flag to False to quietly discard floating point materials in the mesh:

    with py2dm.Reader('mesh.2dm', allow_float_matid=False) as mesh:
      ...
    
  • Zero-based indices are support if the zero_index flag is set upon reader instantiation:

    with py2dm.Reader('mesh.2dm', zero_index=True) as mesh:
      my_node = mesh.node(0)  # This would normally cause an error
    

More information on the various 2DM dialects can be found on the Subformats page of the project documentation.

Installation

Py2DM is available on PyPI and can be installed with pip:

python -m pip install --upgrade py2dm

Requirements

Py2DM is written for Python 3.8 and up and requires no additional packages on this version.

For Python versions 3.6 and 3.7 (notably the ones used by QGIS 3 as of writing this), two additional packages are required to provide functionality that was not yet available in the standard library at the time.

The above packages are only required for Python versions 3.6 and 3.7, with Python 3.8+, no third-party dependencies are needed.

Contributing

If you have encountered any bugs or performance issues, please do get in touch via the repository issues.

Similarly, any information on additional subformats or software-specific caveats is highly appreciated.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py2dm-0.2.0.tar.gz (26.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

py2dm-0.2.0-cp39-cp39-win_amd64.whl (37.3 kB view details)

Uploaded CPython 3.9Windows x86-64

File details

Details for the file py2dm-0.2.0.tar.gz.

File metadata

  • Download URL: py2dm-0.2.0.tar.gz
  • Upload date:
  • Size: 26.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for py2dm-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c43a76d1d889bb5ea3f1a2a766487e2b56d6fd85a577c0d7a809695aecc5b52e
MD5 f7ce576268c399e7b4fa0572c2ea65db
BLAKE2b-256 0679ef448e44f0c137890f46fbdd6c8043961cbbd7f60003d371a3d583b9eead

See more details on using hashes here.

File details

Details for the file py2dm-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: py2dm-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 37.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for py2dm-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ae20001095b4a5a077afc4b2f60de61c5044865b7fe65190ccd71b70330d033f
MD5 ff950b05601c8b4ad006a456de0d37de
BLAKE2b-256 e92d6722b832f29856a01105d1b893f94c09184bcdf114e9286dec79034dd4d6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page