Discretize

Latest version: v0.11.2

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 9

0.4.6

- from pr 174
- commits from banesullivan
- review from lheagy

Overview

This release adds full support for going back and forth between OMF and `discretize.TensorMesh`. The OMF support implemented in a previous release only went one way (`disscretize` :arrow_right: OMF) and had a bug that messed up the spatial reference of the OMF mesh. This release makes it seamless to go back and forth (`discretize` :left_right_arrow: OMF). Give it a try with the new `to_omf(models)` method and load your `TensorMesh`s into other software that supports OMF (e.g. Leapfrog)!

Notes

- At the moment, only `TensorMesh`s are supported by OMF
- OMFv2 should bring more support for Curvilinear and Tree meshes. When that's released we can fill in the methods that currently raises a `NotImplementedError`
- These changes makes updates to the `TensorMesh`-OMF interface to make going to/from OMF/discretize more fluid.

Example

py
import discretize
import omf
import numpy as np

Make a TensorMesh
h = np.ones(16)
mesh = discretize.TensorMesh([h, 2*h, 3*h])
vec = np.arange(mesh.nC)
models = {'arange': vec}

Make an OMF Element
omf_element = mesh.to_omf(models)

Use OMF to save that element to an OMF project
proj = omf.Project(
name='My project',
description='The most awesome project I have ever worked '\
'on and this is a lengthy description of how '\
'awesome it is.',
)

Add the volume element
proj.elements = [omf_element,]

Verify all is good
assert proj.validate()

Write it out
omf.OMFWriter(proj, 'myproject.omf')


And now you can use the `.omf` project file with your tensor mesh or many tensor meshes in your favorite software that supports OMF (e.g. Leapfrog).

Or you could verify this all worked with [`omfvista`](https://github.com/OpenGeoVis/omfvista):

py
import omfvista
foo = omfvista.load_project('myproject.omf')
foo.plot()

0.4.5

- from pr 156
- commits from prisae
- review from rowanc1, lheagy

Make matplotlib a soft dependency; reasoning:
- it is "only" used for the plotting of meshes, which is sort of a relatively small (yet important) part of the whole discretize scope.
- it would help to install discretize on minimal conda-environments for running models on a server, without having to install matplotlib.

This is achieved by
- using a decorator on functions where matplotlib is required
- removing matplotlib from the setup.py

0.4.4

Commits: dccowan ; prisae ; banesullivan ; lheagy
Reviewers: lheagy ; thast

Merged from PR 159 160 163 166

- Add `(x,y,z)lim` to limit the axis. It works with the interactive tools and the home-button will reset to the provided limits. Resolves 165.

![Peek 2019-05-21 08-25](https://user-images.githubusercontent.com/8020943/58073128-19d7c400-7ba2-11e9-8b97-e603410128a0.gif)

- Fix Broken Example: plot_3d_slicer

- Fix `refine_mesh_xyz` for Tree mesh class

- Change model array shape check for VTK mixin: It must be an array of size `nC`

0.4.3

- from pr: 152
- commits from: banesullivan
- review from: lheagy

Changes

- Update `discretize` to work with PyVista (previously `vtki`)
- Enable the PyVista 3D visualization examples to be run when making the docs on CI services
- Switch the documentation hosting service to GitHub Pages from Read The Docs
- New `InterfaceOMF` mixin for converting `discretize` meshes to Open Mining Format (OMF) objects
- `pep8` refactoring of `mixins`
- Drop Windows testing on Python 3.5

0.4.2

- from pr: 143
- commits from: prisae, banesullivan
- review from: lheagy

This PR adds html and non-html representations which should be more generally applicable, for small and big `TensorMesh`'s.

Based on work by banesullivan on `vtki` and prisae on the `printversion`-tool.

![Selection_001](https://user-images.githubusercontent.com/8020943/56793032-50bcf300-680b-11e9-90de-46347d54f6e6.png)

0.4.1

- from prs: 141, 146
- commits from: fourndo, jcapriot, lheagy, prisae
- review from: prisae, lheagy, jcapriot

Tree Mesh updates
- Add functionality for TreeMesh creation
- General bug fix on refine function

Docs
- typo fix in the installation from source

Page 3 of 9

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.