Skip to content

GeoDMSVersion

mtbeek32 edited this page Jan 26, 2023 · 20 revisions

Miscellaneous functions GeoDMSVersion

syntax

  • GeoDMSVersion()

definition

GeoDmsVersion() results in a float64 parameter with the GeoDMS version number.

Up until version 8.045 its value was defined as MajorVersion + 0.001 * MinorVersion.

Since November 2022 we use semantic versioning, following the format MajorVersion.MinorVersion.PatchNumber. The GeoDmsVersion() is now defined as MajorVersion + 0.01 * MinorVersion + 0.0001 * PatchNumber;

The first semantic version number is 8.5.0 in order to order well with earlier version numbers. In GeoDms v8.5.1, the result of the GeoDmsVersion() is (the Float64 representation of) 8.0501.

since version

5.61

example

parameter<float64> GeoDMSVersion := GeoDMSVersion();

result: GeoDMSVersion = 5.61

Clone this wiki locally