Read curve definitions from binary file
This MR implements the reading of curves from binary files (double values, little endian). Reading large curve definitions from project currently fails with huge input lookup error. The direct reading from the project file is not a suitable way, because large project files are bad editable. To overcome this issue, a direct reading of the curve in binary format was chosen.
It is implemented in the following way with the new tag <read_from_file>
:
<curves>
<curve>
<name>CurveName</name>
<read_from_file>true</read_from_file>
<coords>
coords_filename.bin
</coords>
<values>
values_filename.bin
</values>
</curve>
</curves>
-
Feature description was added to the changelog -
Tests covering your feature were added? -
Any new feature or behavior change was documented?
Edited by Max Jäschke