We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't find infomation on adding image to e57 file - I'm aware of the implementation in #15 but fail to find any doumentation on how to add new nodes
The text was updated successfully, but these errors were encountered:
I have been able to add new nodes but don't know how to write them.
import pye57 e57 = pye57.E57("filename.e57") imf = e57.image_file images_vector = imf.root()["images2D"] new_image = images_vector.append(pye57.libe57.StructureNode(imf)) new_image.set("guid", libe57.StringNode(imf, "0000000000000000")) # add nodes e57.close()
here is the gist of the code thats working, but when I reopen the e57 the changes are not there
Could anyone advise on how to write these changes to the file, or answer the original question in whole?
Sorry, something went wrong.
No branches or pull requests
I can't find infomation on adding image to e57 file - I'm aware of the implementation in #15 but fail to find any doumentation on how to add new nodes
The text was updated successfully, but these errors were encountered: