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

The validation accepts the `offset_w` property of a `TensorGridSurface` being undefined or None. Could you please clarify the meaning of this case? Such that it removes the ambiguity in what...

Hi, I am looking into using the OMF format for data exchange. Is this format really in JSON utf-8? How does it handle large surface data? I am currently using...

If I create an omf project with the following code. def generate_test_project(): # pylint: disable=missing-function-docstring proj = omf.Project( name = "omf Test Project", description = "Randomly generated test project for...

- Some of the block model elements use elements instead of element in their schema. For example we have org.omf.v2.**element**.blockmodel.tensorgrid and org.omf.v2.**elements**.blockmodel.regular. - Composite is only org.omf.v2.composite despite it being...

There is no validation rule to checks that each element in a project has a unique name. The absence of such a check doesn't eliminate the possibility that it was...

I've now done the work to get omf added to conda-forge. Documentation needs to be updated to reflect this new install option for conda package users. Cheers

It was raised that we could potentially use something like this to implement OMF in multiple languages: https://github.com/facebookresearch/TransCoder - Ideally this would mean a single reference implementation with libraries in...

The doc in fileio.py says this: https://github.com/gmggroup/omf/blob/bd28cd65c9eaae7e71988a4b8abcf2f918c792c6/omf/fileio.py#L33 But actually uses this: https://github.com/gmggroup/omf/blob/bd28cd65c9eaae7e71988a4b8abcf2f918c792c6/omf/fileio.py#L73 The doc says the header uses a UUID in little-endian: https://github.com/gmggroup/omf/blob/bd28cd65c9eaae7e71988a4b8abcf2f918c792c6/omf/fileio.py#L35 But actually uses big-endian: https://github.com/gmggroup/omf/blob/bd28cd65c9eaae7e71988a4b8abcf2f918c792c6/omf/fileio.py#L77 As described...

The implementation of loading OMF v2 files (#36) currently only supports loading either all the binary or none of the binary. However, the ZIP format could support loading data on...