McIDAS-X Learning Guide
Version 2020
[Search Manual] [Table of Contents] [Go to Previous] [Go to Next]
At the Unix prompt:
Type: mcidas
Your session should still be set for twenty frames from the last time you edited the Configuration GUI. If not, set it for six frames, as described in Getting Started.
Type: TL
TL without any parameters lists the first 20 strings that begin with a letter or number. The string table contains the H and Y system strings, which contain the current date and time, as shown in the example below.TL H := 19:09:02 Y := 2020231 --END OF LIST |
Type: PC C;ZA "#Y
Notice that the string is expanded in the text window; the current Julian date (ccyyddd) replaces #Y.
Type: TE NOTE "MAP OF THE WORLD
Type: TE WORLDMAP "MAP WORL 3 BOX=NO
Type: TE ?CROSS "CUR 51 51 XBOX GREEN
A string whose first character is a question mark (?) is defined as global. Global strings remain in the table unless deleted explicitly with TD ALL GLOB.
Type: TL;ERASE G 1
The string table now contains four strings: H, NOTE, WORLDMAP, and Y, as shown below.TL H := 19:16:43 NOTE := MAP OF THE WORLD WORLDMAP := MAP WORL 3 BOX=NO Y := 1999362 --END OF LIST |
Note that the global string ?CROSS did not get listed.
Type: TL OUT
?CROSS should be included in the listing.
Type: #WORLDMAP
A map of the world is drawn on the frame.
Type: #?CROSS
Type: PC T 15 260;ZA "#NOTE
The text MAP OF THE WORLD is printed on the screen.
Type: ERASE G 1
Type: TE T "ZA "#H
Notice the expanded string in the text window. The system time when the string was created (HH:MM:SS) replaces the #H as shown below.T := ZA "20:12:07 |
Press: Ctrl T
The time is drawn on the screen. Notice that it is the same each time the string is run.
Type: TE CT "ZA "##H
Notice the expanded string in the text window as shown below.CT := ZA "#H |
Type: TL
The #H string is expanded in the T string and not in the CT string.TL CT := ZA "#H H := 20:42:30 NOTE := MAP OF THE WORLD T := ZA "20:12:07 WORLDMAP := MAP WORL 3 BOX=NO Y := 1999362 --END OF LIST |
Type: #CT
The time is drawn on the screen; it is updated each time the string is run.
Type: TE KEYF4 "ZA "USA
Press: F4
[Search Manual] [Table of Contents] [Go to Previous] [Go to Next]