2021-05-17
04:38 PM
- last edited on
2021-09-14
09:11 AM
by
Noemi Balogh
2021-05-17 04:54 PM
2021-05-17 05:19 PM
DIM t[]
n = REQUEST ("STORY_INFO", "", nr, t)
FOR i = 1 TO nr
nr = STR ("%.0m", t [4 * (i - 1) + 1])
name = t [4 * (i - 1) + 2]
elevation = STR ("%m", t [4 * (i - 1) + 3])
height = STR ("%m", t [4 * (i - 1) + 4])
TEXT2 0, -i, nr + "," + name + "," + elevation + "," + height
NEXT i
2021-05-17 06:10 PM
2021-05-18 05:51 PM
n = REQUEST ("STORY_INFO", "", nr, t). !! from GDL-reference..had this anyway in the masterscript..
FOR i = 1 TO nr
nr = STR ("%.0m", t[4 * (i - 1) + 1])
name = t[4 * (i - 1) + 2]
elevation = STR ("%m", t[4 * (i - 1) + 3])
height = STR ("%m", t[4 * (i - 1) + 4])
Geschosshoehe = t[4 * (i - 1) + 4]
Geschosshoehen = Geschosshoehe
NEXT i
!! This puts it in the right hight, no matter where its inserted in the Project.
ADDZ -GLOB_HSTORY_ELEV-Geschosshoehen[1]
2021-05-27 08:03 PM