Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The keys in Section 4 that relate to fixed surface properties should be set such that the two "type" keys:
  typeOfFirstFixedSurface and
  typeOfSecondFixedSurface
are set before the scale keys.

For example:

Code Block
languagecpp
titleExample C code
codes_handle* h = ...;
...
codes_set_long(h, "typeOfFirstFixedSurface", 106); // Depth below land surface (m)
codes_set_long(h, "typeOfSecondFixedSurface", 106);

codes_set_long(h, "scaledValueOfFirstFixedSurface", 3);
codes_set_long(h, "scaleFactorOfFirstFixedSurface", 2);
codes_set_long(h, "scaledValueOfSecondFixedSurface", 5);
codes_set_long(h, "scaleFactorOfSecondFixedSurface", 2);

...