mdal-python


Namemdal-python JSON
Version 1.0.3 PyPI version JSON
download
home_pagehttps://www.mdal.xyz
SummaryMesh data processing
upload_time2023-11-03 23:15:20
maintainerPaul Harwood
docs_urlNone
authorPaul Harwood
requires_python
licenseMIT
keywords mesh data spatial
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ================================================================================
MDAL Python Integration
================================================================================

.. image:: https://img.shields.io/conda/vn/conda-forge/mdal-python.svg
   :target: https://anaconda.org/conda-forge/mdal-python
   
.. image:: https://badge.fury.io/py/mdal-python.svg
   :target: https://badge.fury.io/py/mdal-python

Basics
------

MDAL Python integration allows you to access and manipulation geospatial mesh data sets using `MDAL`_ in Python.

Currently, this integration can:

- read and write all MDAL compatible file formats
- access vertex, face, edge and volume data as numpy arrays
- write vertex, face, edge and volume data from numpy arrays
- access and write scalar and vector datasets
- beta level read and write integration with `meshio`_
- beta level read integration with `Open3D`_


.. _MDAL: https://www.mdal.xyz/
.. _meshio: https://github.com/nschloe/meshio
.. _Open3D: http://www.open3d.org/

Drivers
.......

['2DM Mesh File', 'XMS Tin Mesh File', 'Selafin File', 'Esri TIN', 'Stanford PLY Ascii Mesh File', 'Flo2D', 'HEC-RAS 2D', 'TUFLOW FV', 'AnuGA', 'UGRID Results', 'GDAL NetCDF', 'GDAL Grib', 'DAT', 'Binary DAT', 'TUFLOW XMDF', 'XDMF']

Installation
------------

Conda
................................................................................

MDAL Python support is installable via Conda:

.. code-block::

    conda install -c conda-forge mdal-python

PyPI
...............................................................................

MDAL Python support can be installed using `pip`

.. note::

    The previous mdal-python package is deprecated and will not updated beyond 1.0.3. Use the mdal package instead.

.. code-block::

   pip install mdal
   
This will ONLY work if there is a valid and working installation of MDAL on the device and accessible through the device library search path.

GitHub
................................................................................

The repository for MDAL's Python extension is available at https://github.com/ViRGIS-Team/mdal-python

Usage
--------------------------------------------------------------------------------

The basic usage can be seen in this code snippet:

.. code-block:: python


    from mdal import Datasource, Info, last_status, PyMesh, drivers, MDAL_DataLocation

    print(f"MDAL Version:  {Info.version}")
    print(f"MDAL Driver Count :{Info.driver_count}")
    print(last_status().name)

    for driver in Info.drivers:
        print(driver)


    ds = Datasource("data/ply/test_mesh.ply")
    print(ds.meshes)

    with ds.load(0) as mesh:
        print(f"Driver : {mesh.driver_name}")
        print(f"Format : {mesh.get_metadata('format')}")
        print(f"Vertex Count : {mesh.vertex_count}")
        print(f"Face Count : {mesh.face_count}")
        print(f"Largest Face: {mesh.largest_face}")
        print(f"Edge Count : {mesh.edge_count}")
        print(f"CRS : {mesh.projection}")
        print(f"Mesh extent : {mesh.extent}")
        print(f"Metadata : {mesh.metadata}")
        print(f"CRS Metadata : {mesh.get_metadata('crs')}")
        mesh.add_metadata("test", "value")
        print(f"Metadate set eqiuality : {mesh.get_metadata('test') == 'value'}")

        vertex = mesh.vertices
        print(f"Vertex Array Shape : {vertex.shape}")

        faces = mesh.faces
        print(f"Face Array Shape : {faces.shape}")

        edges = mesh.edges
        print(f"Edges Array Shape : {edges.shape}")

        print("")

        group = mesh.group(0)
        print(f"DatasetGroup Name : {group.name}")
        print(f"DatasetGroup Location : {group.location.name}")
        print(f"Dataset Count : {group.dataset_count}")
        print(f"Group has scalar values : {group.has_scalar}")
        print(f"Group has temporal values : {group.is_temporal}")
        print(f"Reference Time : {group.reference_time}")
        print(f"Maximum Vertical Level Count : {group.level_count}")
        print(f"Minimum / Maximum ; {group.minmax}")
        print(f"Metadata : {group.metadata}")
        print(f"Name Metadata : {group.get_metadata('name')}")
        group.add_metadata("test", "value")
        print(
            f"Metadate set eqiuality : {group.get_metadata('test') == 'value'}")

        print("")
        for i in range(0, group.dataset_count):
            data = group.data(i)
            time = group.dataset_time(i)
            print(f"Dataset Shape for time {time} : {data.shape}")

        print("")

        test = PyMesh()
        test.vertices = mesh.vertices
        test.faces = mesh.faces
        test.edges = mesh.edges
        print(f"Mesh Copy Equality : {test == mesh}")
        print(
            f"Mesh Vertex Size equality: {test.vertex_count == mesh.vertex_count}")
        print(f"Mesh Face Size equality: {test.face_count == mesh.face_count}")
        test.save("data/save_test.nc")

        test2 = PyMesh(drivers()[0])
        print(f"Mesh created by Driver : {test2.driver_name}")

        ds2 = Datasource("data/save_test.nc")
        test4 = ds2.load(0)
        print(f"Save equality : {test4 == test}")

        del(test)
        del(test4)
        mesh.save("save_test.ply")

    with Datasource("data/ply/all_features.ply").load(0) as mesh:
        mesh.save("save_test_2.ply")

        with Datasource("save_test_2.ply").load(0) as mesh2:
            print(f"Save equality 2 : {mesh == mesh2}")

    with Datasource("data/tuflowfv/withMaxes/trap_steady_05_3D.nc").load() as mesh:
        group = mesh.groups[1]
        a, b, c = group.volumetric(0)

        ds2 = Datasource("test_vol.ply")
        with ds2.add_mesh() as mesh2:
            mesh2.vertices = mesh.vertices
            mesh2.faces = mesh.faces

            print(f"Vertex Count :{mesh.vertex_count}")
            print(f"Face Count : {mesh.face_count}")

            group2 = mesh2.add_group(
                "test", location=MDAL_DataLocation.DataOnVolumes)
            group2.add_volumetric(group.data(), a, b)

            print(f"Level Count: {group2.level_count}")
            print(f"Location: {group2.location}")
            print(f"MinMax: {group2.minmax}")

            print(f"Dataset Count: {group2.dataset_count}")

            data = group2.data(0)
            print(f"Data Value Count: {len(data)}")
            print(f"{data}")

            print(f"{group2.volumetric(0)}")

            a, b, c = group2.volumetric(0)
            print(f"Number of Extrusion values : {len(b)}")
            mesh2.save()
            with ds2.load() as mesh3:
                mesh3.info()
                group3 = mesh3.groups[1]
                print(f"{group3.location}")
                d, e, f = group3.volumetric(0)
                print(f"{group3.volumetric(0)}")
                print(f"{group3.data(0)}")
                print("Mesh Equality : {mesh2 == mesh3}")


    """deep copy test"""

    with Datasource("data/ply/all_features.ply").load() as mesh:
        with ds.add_mesh("test") as mesh2:
            mesh2.deep_copy(mesh)
            mesh2.data_copy(mesh)
            print(f"{mesh2.info()}")


    print("all finished !")


Integration with meshio
-----------------------

There is read and write integration with the meshio package. Any MDAL mesh
can be converted to a meshio object and vice versa.

This integration is beta at the moment.

There are the following constraints:

- MDAL_transform.to_meshio can take as an argument either a Mesh or a Dataset Group,
- Only scalar MDAL datasets can be converted to meshio,
- Volumetric data must be passed as a Dataset Group,
- Volumetric meshio meshes and data are not currently converted, and
- MDAL_transform.from_meshio only converts cells of types ["line", "triangle", "quad"].

.. code-block:: python

    from mdal import Datasource,MDAL_transform

    """meshio tests"""
    with Datasource("data/ply/all_features.ply").load() as mesh:

        mio = MDAL_transform.to_meshio(mesh)
        print(f"{mio}")
        mio.write("test.vtk")

        group = mesh.group(1)

        mio2 = MDAL_transform.to_meshio(group)
        print(f"{mio2}")
        
        mesh2 = MDAL_transform.from_meshio(mio)
        print(f"{mesh2.info()}")
        print(f"{mesh2.group(0).data()}")
        print(f"{mesh2.vertex_count}")
        print(f"{mesh2.face_count}")

    with Datasource("test_vol.ply").load() as mesh:
        group = mesh.group(1)
        mio2 = MDAL_transform.to_meshio(group)
        print(f"{mio2}")


    print("all finished !")

Integration with Open3D
-----------------------

There is read-only integration with Open3D.

The MDAL_transform.to_triangle_mesh function converts any MDAL mesh to an Open3D TriangleMesh. The function
can take as an argument an MDAL mesh or Dataset Group. In the former case 
if there are colour Datasets then these are converted to the TraingleMesh colours.
In the later case, the data is converted to a false colur using a simple process -
scalar data is loaded into the red values and vector data to
the red and blue values.

The MDAL_transform.to_point_cloud converts a MDAL
volumetric DatasetGroup to an Open3D PointCloud with the data values
converted to color as above.

.. note::
    Open3D is NOT loaded as dependency. If these commands are used in an environment without Open3D, they will fail with a user friendly message.

This integration is beta at the moment.

.. code-block:: python

    from mdal import Datasource, MDAL_transform

    import numpy as np
    import open3d as o3d

    """
    Open3d Tests
    """
    with Datasource("data/ply/test_mesh.ply").load() as mesh:
        tm = MDAL_transform.to_triangle_mesh(mesh)
        print(tm)
        tm2 = o3d.io.read_triangle_mesh("data/ply/test_mesh.ply")
        tmc = np.asarray(tm.vertex_colors)
        tmc2 = np.asarray(tm2.vertex_colors)
        for i in range(len(tmc)):
            value = tmc[i] - tmc2[i]
            if not (value == [0, 0, 0]).all():
                print(value)
                break

    with Datasource("test_vol.ply").load() as mesh:
        pc = MDAL_transform.to_point_cloud(mesh.group(1))
        print(pc)


    print("all finished !")

.. note::

    About Python Versions. MDAL supports 3.8, 3.9 and 3.10. Open3D supports 3.6, 3.7 and 3.8. Therefore, 
    if you want to use Open3D, the Python version should be pinned to 3.8 before you start.


Documentation
-------------

The documentation is currently WIP and can be found at https://virgis-team.github.io/mdal-python/html/index.html


Requirements
------------

* MDAL 0.9.0 +
* Python >=3.8
* Cython (eg :code:`pip install cython`)
* Numpy (eg :code:`pip install numpy`)
* Packaging (eg :code:`pip install packaging`)
* scikit-build (eg :code:`pip install scikit-build`)


Credit
------

This package borrowed heavily from the `PDAL-Python`_ package.

.. _PDAL-Python:  https://github.com/PDAL/python


Changes
--------------------------------------------------------------------------------

1.0.3
-----

- fix debug message error (#15)
- Deprecate mdal-python (#16)

1.0.2
-----

- fix memory leaks and inconsistencies around the Datagroup object (#11)

1.0.1
-----

- Add the PyPI package


1.0.0
-----

First Read / Write Release

- read and write all MDAL compatible file formats
- access vertex, face, edge and volume data as numpy arrays
- write vertex, face, edge and volume data from numpy arrays
- access and write scalar and vector datasets
- beta level read and write integration with meshio
- beta level read integration with Open3D


0.9.0
-----

First release. This is beta software and has not been completely tested yet:

Currently, this integration can:

- read all MDAL compatible file formats,
- access the metadata for the source,
- access the vertex, face and edge data as numpy arrays,
- access 'double' datasets (both scalar and vector) as numpy arrays, and
- convert the MDAL source mesh into a `meshio`_ mesh object (with some restrictions currently).

This version does not currently allow the MDAL source mesh to be written or ammended.

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.mdal.xyz",
    "name": "mdal-python",
    "maintainer": "Paul Harwood",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "runette@gmail.com",
    "keywords": "mesh data spatial",
    "author": "Paul Harwood",
    "author_email": "runette@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a0/1e/b778a6ed5efd689076a502049deb199ea2326e72e56b5cef74abd1dd3be9/mdal-python-1.0.3.tar.gz",
    "platform": null,
    "description": "================================================================================\nMDAL Python Integration\n================================================================================\n\n.. image:: https://img.shields.io/conda/vn/conda-forge/mdal-python.svg\n   :target: https://anaconda.org/conda-forge/mdal-python\n   \n.. image:: https://badge.fury.io/py/mdal-python.svg\n   :target: https://badge.fury.io/py/mdal-python\n\nBasics\n------\n\nMDAL Python integration allows you to access and manipulation geospatial mesh data sets using `MDAL`_ in Python.\n\nCurrently, this integration can:\n\n- read and write all MDAL compatible file formats\n- access vertex, face, edge and volume data as numpy arrays\n- write vertex, face, edge and volume data from numpy arrays\n- access and write scalar and vector datasets\n- beta level read and write integration with `meshio`_\n- beta level read integration with `Open3D`_\n\n\n.. _MDAL: https://www.mdal.xyz/\n.. _meshio: https://github.com/nschloe/meshio\n.. _Open3D: http://www.open3d.org/\n\nDrivers\n.......\n\n['2DM Mesh File', 'XMS Tin Mesh File', 'Selafin File', 'Esri TIN', 'Stanford PLY Ascii Mesh File', 'Flo2D', 'HEC-RAS 2D', 'TUFLOW FV', 'AnuGA', 'UGRID Results', 'GDAL NetCDF', 'GDAL Grib', 'DAT', 'Binary DAT', 'TUFLOW XMDF', 'XDMF']\n\nInstallation\n------------\n\nConda\n................................................................................\n\nMDAL Python support is installable via Conda:\n\n.. code-block::\n\n    conda install -c conda-forge mdal-python\n\nPyPI\n...............................................................................\n\nMDAL Python support can be installed using `pip`\n\n.. note::\n\n    The previous mdal-python package is deprecated and will not updated beyond 1.0.3. Use the mdal package instead.\n\n.. code-block::\n\n   pip install mdal\n   \nThis will ONLY work if there is a valid and working installation of MDAL on the device and accessible through the device library search path.\n\nGitHub\n................................................................................\n\nThe repository for MDAL's Python extension is available at https://github.com/ViRGIS-Team/mdal-python\n\nUsage\n--------------------------------------------------------------------------------\n\nThe basic usage can be seen in this code snippet:\n\n.. code-block:: python\n\n\n    from mdal import Datasource, Info, last_status, PyMesh, drivers, MDAL_DataLocation\n\n    print(f\"MDAL Version:  {Info.version}\")\n    print(f\"MDAL Driver Count :{Info.driver_count}\")\n    print(last_status().name)\n\n    for driver in Info.drivers:\n        print(driver)\n\n\n    ds = Datasource(\"data/ply/test_mesh.ply\")\n    print(ds.meshes)\n\n    with ds.load(0) as mesh:\n        print(f\"Driver : {mesh.driver_name}\")\n        print(f\"Format : {mesh.get_metadata('format')}\")\n        print(f\"Vertex Count : {mesh.vertex_count}\")\n        print(f\"Face Count : {mesh.face_count}\")\n        print(f\"Largest Face: {mesh.largest_face}\")\n        print(f\"Edge Count : {mesh.edge_count}\")\n        print(f\"CRS : {mesh.projection}\")\n        print(f\"Mesh extent : {mesh.extent}\")\n        print(f\"Metadata : {mesh.metadata}\")\n        print(f\"CRS Metadata : {mesh.get_metadata('crs')}\")\n        mesh.add_metadata(\"test\", \"value\")\n        print(f\"Metadate set eqiuality : {mesh.get_metadata('test') == 'value'}\")\n\n        vertex = mesh.vertices\n        print(f\"Vertex Array Shape : {vertex.shape}\")\n\n        faces = mesh.faces\n        print(f\"Face Array Shape : {faces.shape}\")\n\n        edges = mesh.edges\n        print(f\"Edges Array Shape : {edges.shape}\")\n\n        print(\"\")\n\n        group = mesh.group(0)\n        print(f\"DatasetGroup Name : {group.name}\")\n        print(f\"DatasetGroup Location : {group.location.name}\")\n        print(f\"Dataset Count : {group.dataset_count}\")\n        print(f\"Group has scalar values : {group.has_scalar}\")\n        print(f\"Group has temporal values : {group.is_temporal}\")\n        print(f\"Reference Time : {group.reference_time}\")\n        print(f\"Maximum Vertical Level Count : {group.level_count}\")\n        print(f\"Minimum / Maximum ; {group.minmax}\")\n        print(f\"Metadata : {group.metadata}\")\n        print(f\"Name Metadata : {group.get_metadata('name')}\")\n        group.add_metadata(\"test\", \"value\")\n        print(\n            f\"Metadate set eqiuality : {group.get_metadata('test') == 'value'}\")\n\n        print(\"\")\n        for i in range(0, group.dataset_count):\n            data = group.data(i)\n            time = group.dataset_time(i)\n            print(f\"Dataset Shape for time {time} : {data.shape}\")\n\n        print(\"\")\n\n        test = PyMesh()\n        test.vertices = mesh.vertices\n        test.faces = mesh.faces\n        test.edges = mesh.edges\n        print(f\"Mesh Copy Equality : {test == mesh}\")\n        print(\n            f\"Mesh Vertex Size equality: {test.vertex_count == mesh.vertex_count}\")\n        print(f\"Mesh Face Size equality: {test.face_count == mesh.face_count}\")\n        test.save(\"data/save_test.nc\")\n\n        test2 = PyMesh(drivers()[0])\n        print(f\"Mesh created by Driver : {test2.driver_name}\")\n\n        ds2 = Datasource(\"data/save_test.nc\")\n        test4 = ds2.load(0)\n        print(f\"Save equality : {test4 == test}\")\n\n        del(test)\n        del(test4)\n        mesh.save(\"save_test.ply\")\n\n    with Datasource(\"data/ply/all_features.ply\").load(0) as mesh:\n        mesh.save(\"save_test_2.ply\")\n\n        with Datasource(\"save_test_2.ply\").load(0) as mesh2:\n            print(f\"Save equality 2 : {mesh == mesh2}\")\n\n    with Datasource(\"data/tuflowfv/withMaxes/trap_steady_05_3D.nc\").load() as mesh:\n        group = mesh.groups[1]\n        a, b, c = group.volumetric(0)\n\n        ds2 = Datasource(\"test_vol.ply\")\n        with ds2.add_mesh() as mesh2:\n            mesh2.vertices = mesh.vertices\n            mesh2.faces = mesh.faces\n\n            print(f\"Vertex Count :{mesh.vertex_count}\")\n            print(f\"Face Count : {mesh.face_count}\")\n\n            group2 = mesh2.add_group(\n                \"test\", location=MDAL_DataLocation.DataOnVolumes)\n            group2.add_volumetric(group.data(), a, b)\n\n            print(f\"Level Count: {group2.level_count}\")\n            print(f\"Location: {group2.location}\")\n            print(f\"MinMax: {group2.minmax}\")\n\n            print(f\"Dataset Count: {group2.dataset_count}\")\n\n            data = group2.data(0)\n            print(f\"Data Value Count: {len(data)}\")\n            print(f\"{data}\")\n\n            print(f\"{group2.volumetric(0)}\")\n\n            a, b, c = group2.volumetric(0)\n            print(f\"Number of Extrusion values : {len(b)}\")\n            mesh2.save()\n            with ds2.load() as mesh3:\n                mesh3.info()\n                group3 = mesh3.groups[1]\n                print(f\"{group3.location}\")\n                d, e, f = group3.volumetric(0)\n                print(f\"{group3.volumetric(0)}\")\n                print(f\"{group3.data(0)}\")\n                print(\"Mesh Equality : {mesh2 == mesh3}\")\n\n\n    \"\"\"deep copy test\"\"\"\n\n    with Datasource(\"data/ply/all_features.ply\").load() as mesh:\n        with ds.add_mesh(\"test\") as mesh2:\n            mesh2.deep_copy(mesh)\n            mesh2.data_copy(mesh)\n            print(f\"{mesh2.info()}\")\n\n\n    print(\"all finished !\")\n\n\nIntegration with meshio\n-----------------------\n\nThere is read and write integration with the meshio package. Any MDAL mesh\ncan be converted to a meshio object and vice versa.\n\nThis integration is beta at the moment.\n\nThere are the following constraints:\n\n- MDAL_transform.to_meshio can take as an argument either a Mesh or a Dataset Group,\n- Only scalar MDAL datasets can be converted to meshio,\n- Volumetric data must be passed as a Dataset Group,\n- Volumetric meshio meshes and data are not currently converted, and\n- MDAL_transform.from_meshio only converts cells of types [\"line\", \"triangle\", \"quad\"].\n\n.. code-block:: python\n\n    from mdal import Datasource,MDAL_transform\n\n    \"\"\"meshio tests\"\"\"\n    with Datasource(\"data/ply/all_features.ply\").load() as mesh:\n\n        mio = MDAL_transform.to_meshio(mesh)\n        print(f\"{mio}\")\n        mio.write(\"test.vtk\")\n\n        group = mesh.group(1)\n\n        mio2 = MDAL_transform.to_meshio(group)\n        print(f\"{mio2}\")\n        \n        mesh2 = MDAL_transform.from_meshio(mio)\n        print(f\"{mesh2.info()}\")\n        print(f\"{mesh2.group(0).data()}\")\n        print(f\"{mesh2.vertex_count}\")\n        print(f\"{mesh2.face_count}\")\n\n    with Datasource(\"test_vol.ply\").load() as mesh:\n        group = mesh.group(1)\n        mio2 = MDAL_transform.to_meshio(group)\n        print(f\"{mio2}\")\n\n\n    print(\"all finished !\")\n\nIntegration with Open3D\n-----------------------\n\nThere is read-only integration with Open3D.\n\nThe MDAL_transform.to_triangle_mesh function converts any MDAL mesh to an Open3D TriangleMesh. The function\ncan take as an argument an MDAL mesh or Dataset Group. In the former case \nif there are colour Datasets then these are converted to the TraingleMesh colours.\nIn the later case, the data is converted to a false colur using a simple process -\nscalar data is loaded into the red values and vector data to\nthe red and blue values.\n\nThe MDAL_transform.to_point_cloud converts a MDAL\nvolumetric DatasetGroup to an Open3D PointCloud with the data values\nconverted to color as above.\n\n.. note::\n    Open3D is NOT loaded as dependency. If these commands are used in an environment without Open3D, they will fail with a user friendly message.\n\nThis integration is beta at the moment.\n\n.. code-block:: python\n\n    from mdal import Datasource, MDAL_transform\n\n    import numpy as np\n    import open3d as o3d\n\n    \"\"\"\n    Open3d Tests\n    \"\"\"\n    with Datasource(\"data/ply/test_mesh.ply\").load() as mesh:\n        tm = MDAL_transform.to_triangle_mesh(mesh)\n        print(tm)\n        tm2 = o3d.io.read_triangle_mesh(\"data/ply/test_mesh.ply\")\n        tmc = np.asarray(tm.vertex_colors)\n        tmc2 = np.asarray(tm2.vertex_colors)\n        for i in range(len(tmc)):\n            value = tmc[i] - tmc2[i]\n            if not (value == [0, 0, 0]).all():\n                print(value)\n                break\n\n    with Datasource(\"test_vol.ply\").load() as mesh:\n        pc = MDAL_transform.to_point_cloud(mesh.group(1))\n        print(pc)\n\n\n    print(\"all finished !\")\n\n.. note::\n\n    About Python Versions. MDAL supports 3.8, 3.9 and 3.10. Open3D supports 3.6, 3.7 and 3.8. Therefore, \n    if you want to use Open3D, the Python version should be pinned to 3.8 before you start.\n\n\nDocumentation\n-------------\n\nThe documentation is currently WIP and can be found at https://virgis-team.github.io/mdal-python/html/index.html\n\n\nRequirements\n------------\n\n* MDAL 0.9.0 +\n* Python >=3.8\n* Cython (eg :code:`pip install cython`)\n* Numpy (eg :code:`pip install numpy`)\n* Packaging (eg :code:`pip install packaging`)\n* scikit-build (eg :code:`pip install scikit-build`)\n\n\nCredit\n------\n\nThis package borrowed heavily from the `PDAL-Python`_ package.\n\n.. _PDAL-Python:  https://github.com/PDAL/python\n\n\nChanges\n--------------------------------------------------------------------------------\n\n1.0.3\n-----\n\n- fix debug message error (#15)\n- Deprecate mdal-python (#16)\n\n1.0.2\n-----\n\n- fix memory leaks and inconsistencies around the Datagroup object (#11)\n\n1.0.1\n-----\n\n- Add the PyPI package\n\n\n1.0.0\n-----\n\nFirst Read / Write Release\n\n- read and write all MDAL compatible file formats\n- access vertex, face, edge and volume data as numpy arrays\n- write vertex, face, edge and volume data from numpy arrays\n- access and write scalar and vector datasets\n- beta level read and write integration with meshio\n- beta level read integration with Open3D\n\n\n0.9.0\n-----\n\nFirst release. This is beta software and has not been completely tested yet:\n\nCurrently, this integration can:\n\n- read all MDAL compatible file formats,\n- access the metadata for the source,\n- access the vertex, face and edge data as numpy arrays,\n- access 'double' datasets (both scalar and vector) as numpy arrays, and\n- convert the MDAL source mesh into a `meshio`_ mesh object (with some restrictions currently).\n\nThis version does not currently allow the MDAL source mesh to be written or ammended.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Mesh data processing",
    "version": "1.0.3",
    "project_urls": {
        "Homepage": "https://www.mdal.xyz"
    },
    "split_keywords": [
        "mesh",
        "data",
        "spatial"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07b067ccd32667bdc30a4807482cb2c0ab2b4a918a320be3f9159784669ae66c",
                "md5": "771f54107c1b44a3b4124db6c502f33a",
                "sha256": "4ba96b3a67ad26c0d6862a97e3271f024c9211708decd54b98a6ada7d395c0c1"
            },
            "downloads": -1,
            "filename": "mdal_python-1.0.3-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "771f54107c1b44a3b4124db6c502f33a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 144197,
            "upload_time": "2023-11-03T23:14:59",
            "upload_time_iso_8601": "2023-11-03T23:14:59.957882Z",
            "url": "https://files.pythonhosted.org/packages/07/b0/67ccd32667bdc30a4807482cb2c0ab2b4a918a320be3f9159784669ae66c/mdal_python-1.0.3-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e90e1e433b7fb0b9c49428afc7b803781322f28952949a4af53a43794113e9c",
                "md5": "79d7b68a6bc903e638868ddfe6fd2b9c",
                "sha256": "9e6195f0c5fe84fc9a54f8cec281f12029733c654e1f22a0ba40de7429d7e90d"
            },
            "downloads": -1,
            "filename": "mdal_python-1.0.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "79d7b68a6bc903e638868ddfe6fd2b9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 125643,
            "upload_time": "2023-11-03T23:15:02",
            "upload_time_iso_8601": "2023-11-03T23:15:02.402814Z",
            "url": "https://files.pythonhosted.org/packages/1e/90/e1e433b7fb0b9c49428afc7b803781322f28952949a4af53a43794113e9c/mdal_python-1.0.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92f2168127fd1810725e2fbc6f8331b043b8e0cc62cbcc68a0644c151527ab0a",
                "md5": "3985273764106ee7fa5ddfbe0880da7a",
                "sha256": "ade1f93ba19222b6a7e04db8b41df3f15740cacaf03ea5c9709fda35386964f4"
            },
            "downloads": -1,
            "filename": "mdal_python-1.0.3-cp311-cp311-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3985273764106ee7fa5ddfbe0880da7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 146083,
            "upload_time": "2023-11-03T23:15:04",
            "upload_time_iso_8601": "2023-11-03T23:15:04.906142Z",
            "url": "https://files.pythonhosted.org/packages/92/f2/168127fd1810725e2fbc6f8331b043b8e0cc62cbcc68a0644c151527ab0a/mdal_python-1.0.3-cp311-cp311-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54750e66d7a04734bd4a06f8931a68a676186658876b20d6e12a4e627ebed5fd",
                "md5": "709e2e2af5295645dd39c7d50628b2d1",
                "sha256": "8ce2e88303aa4d4bb548de00be42747ae788da5e1a362ac3117efad3b4bc8bb2"
            },
            "downloads": -1,
            "filename": "mdal_python-1.0.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "709e2e2af5295645dd39c7d50628b2d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 126279,
            "upload_time": "2023-11-03T23:15:07",
            "upload_time_iso_8601": "2023-11-03T23:15:07.001224Z",
            "url": "https://files.pythonhosted.org/packages/54/75/0e66d7a04734bd4a06f8931a68a676186658876b20d6e12a4e627ebed5fd/mdal_python-1.0.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "887cfe53c1092877bb9ffafb0980a04d25abc84e05807c36264abc2a68b9cf0f",
                "md5": "223128696aaddf1c11173a208dd1cb4d",
                "sha256": "15daa55c2e4120f77c3dc0b4151a5cfe72353859e5ab7208e8e9a546c0563722"
            },
            "downloads": -1,
            "filename": "mdal_python-1.0.3-cp312-cp312-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "223128696aaddf1c11173a208dd1cb4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 143748,
            "upload_time": "2023-11-03T23:15:09",
            "upload_time_iso_8601": "2023-11-03T23:15:09.751462Z",
            "url": "https://files.pythonhosted.org/packages/88/7c/fe53c1092877bb9ffafb0980a04d25abc84e05807c36264abc2a68b9cf0f/mdal_python-1.0.3-cp312-cp312-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75aeb337d3fd5f8013c5e5faf5f29caa290c7c5bcd192f8809479a3492e5389b",
                "md5": "bf241a5cc6b925f50eda6540e3bdccb6",
                "sha256": "6c49cd5014fc32539f7bda3a88acec4c39a804d2f79dd8e0c2522c5ac0e233f8"
            },
            "downloads": -1,
            "filename": "mdal_python-1.0.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bf241a5cc6b925f50eda6540e3bdccb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 123655,
            "upload_time": "2023-11-03T23:15:12",
            "upload_time_iso_8601": "2023-11-03T23:15:12.752872Z",
            "url": "https://files.pythonhosted.org/packages/75/ae/b337d3fd5f8013c5e5faf5f29caa290c7c5bcd192f8809479a3492e5389b/mdal_python-1.0.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbeb0c3533e3c2cfa24cc49be4c387ba5bd7766e61927429912172cff5370ba0",
                "md5": "11345e68233a342173b3df0596d7e162",
                "sha256": "4717ae4f740f49d410d09c7074ff6c0aa81e73e7e494efdebeed025f41062792"
            },
            "downloads": -1,
            "filename": "mdal_python-1.0.3-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11345e68233a342173b3df0596d7e162",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 144806,
            "upload_time": "2023-11-03T23:15:14",
            "upload_time_iso_8601": "2023-11-03T23:15:14.710975Z",
            "url": "https://files.pythonhosted.org/packages/cb/eb/0c3533e3c2cfa24cc49be4c387ba5bd7766e61927429912172cff5370ba0/mdal_python-1.0.3-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "425a7651d17f8d8d008cc4e293359e755d394145a3b5c2c826c75721612b243b",
                "md5": "c2e94d0fd730aac73e16c48b9809f275",
                "sha256": "dcc08e5d466062fc83ff215b90893ecb37148718e4a1cab79d95172ccd39a2ff"
            },
            "downloads": -1,
            "filename": "mdal_python-1.0.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c2e94d0fd730aac73e16c48b9809f275",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 125974,
            "upload_time": "2023-11-03T23:15:16",
            "upload_time_iso_8601": "2023-11-03T23:15:16.560453Z",
            "url": "https://files.pythonhosted.org/packages/42/5a/7651d17f8d8d008cc4e293359e755d394145a3b5c2c826c75721612b243b/mdal_python-1.0.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a01eb778a6ed5efd689076a502049deb199ea2326e72e56b5cef74abd1dd3be9",
                "md5": "3dca67eb363cc6301ea69594622979fe",
                "sha256": "b6f044a8bb06f0ffa86f28c1af6e51c1741a1521f67d871fe791f09b5bebbeb4"
            },
            "downloads": -1,
            "filename": "mdal-python-1.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "3dca67eb363cc6301ea69594622979fe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 56130697,
            "upload_time": "2023-11-03T23:15:20",
            "upload_time_iso_8601": "2023-11-03T23:15:20.341043Z",
            "url": "https://files.pythonhosted.org/packages/a0/1e/b778a6ed5efd689076a502049deb199ea2326e72e56b5cef74abd1dd3be9/mdal-python-1.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-03 23:15:20",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "mdal-python"
}
        
Elapsed time: 0.14150s