# displays region number for the given region name
$ irOid=`wlookup -r distinguished InterRegion`
$ idlcall $irOid map_region_name '"tmr1-region"'
1143674623
$
In the above command, the tmrname is enclosed in a double quote and the double quote is enclosed by single quote.
# displays region name for the the given region number
$ irOid=`wlookup -r distinguished InterRegion`
$ idlcall $irOid map_region_number 1143674623
"tmr1-region"
$
In the above command, 1143674623 is the region number of a tmr.
Hope you find it useful.
No comments:
Post a Comment