Structured data types
Example of variable declaration:
type
MyTreeRecord = record
ID : integer;
DBH_mm : variant;
Species : variant;
end;
var
a : array[1..100] of integer; // array of base type (integer)
tree : MyTreeRecord; // variable of type record
ATrees : array [1..100] of MyTreeRecord; // array of structured type (record)
See also: Basic data types
© 2024 IFER-Monitoring and Mapping Solutions