How to parse stp file using go lang

I want to parse stp file into Json format like get their coordinates, dimension, start and end point with cut and band.

It appears that you need to purchase a copy of the ISO 10303-21 Clear Text Encoding of the Exchange Structure standard for the file format specification, then you can write a parser. The format is text, so it is human-readable making it easy to test that your parser works. Alternatively, there is a C++ library you could either wrap or port, STEPcode ยท GitHub.

I learned all this from ISO 10303-21 - Wikipedia

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.