omf-python icon indicating copy to clipboard operation
omf-python copied to clipboard

Python library for working with OMF files

Results 40 omf-python issues
Sort by recently updated
recently updated
newest added

# Context and scope OMF v1 only supports regular and tensor block models. This means that applications can't use it to store sub-blocked models. OMF v2 should support common regular...

This raises on omf:1.0.1 with properties:0.6.1: ```python omf.ScalarData(order="F") # AttributeError: Keyword input 'order' is not a known property or attribute of ScalarData ``` Whereas this suggests it should be possible.

Calling `get_project` with uids mutates the project_elments in `fileio.get_project` on v1.0.1 this line is the culprit as copy is a shallow copy and not a deepcopy `project_json = self._project_json.copy()` proposed...

I tried creating a "basic" datetime object to serialize and deserialize in omf v1.0.1 (see example below). The object is written to disk without issue however upon deserialization I get...

In omf version 1.0.1 there is no problem with this (read it does not error): ```python omf.VolumeElement( name='vol', geometry=omf.VolumeGridGeometry( axis_u=(1, 0, 0), axis_v=(0, 1, 0), axis_w=(0, 0, 1), tensor_u=np.ones(10).astype(float), tensor_v=np.ones(15).astype(float),...

Could I make a request for someone to convert the assets/v1/test_file.omf to a v2 version and put it up here in the assets/v2 folder?

Hi, this is important and much needed project in the geoscience and mining space. I'm disappointed to see that it appears development has been halted? Is there a plan to...

I tried to load an omf file as per the [docs](https://omf.readthedocs.io/en/stable/content/io.html) and all I get is this circular import error: ``` AttributeError: partially initialized module 'omf' has no attribute 'OMFReader'...

This work assumes the docs in the `omf-rust` repo represents the latest omf specification. Mimicked the level of testing present for the `TensorGridSurface`. Copied images for 2d regular and 2d...

I'm looking for the most efficient way to store a raster in an OMF2 file. Consider this workflow: 1. Create a `RegularBlockModel` 2. Source elevation and imagery rasters with the...