McIDAS-X Learning Guide
Version 2020

[Search Manual] [Table of Contents] [Go to Previous] [Go to Next]


Satellite Imagery - Changing the Image Resolution

In this exercise, you will magnify the resolution of displayed images using the IMGDISP command. Then, you will use the IMGPROBE command to list data values inside the cursor. Many other commands, for example IMGCOPY, have parameters to change the resolution.
  1. Display the local GOES-16 conus image, band 14, in its original resolution (2 km) on frame 1. Center the image on earth coordinates 30° and 87°
    Type:  IMGDISP ABI/CONUS 1 LATLON=30 87 BAND=14

  2. Decrease (blow down) the image resolution of the GOES-16 conus image by a factor of 2 and display it on frame 3.
    Type:  IMGDISP ABI/CONUS 3 LATLON=30 87 BAND=14 MAG=-2 SF=YES

  3. Magnify (blow up) the image resolution of the GOES-16 conus image by factor of 2 and display it on frame 2.
    Type:  IMGDISP ABI/CONUS 2 LATLON=30 87 BAND=14 MAG=2 SF=YES

  4. Loop the frames.
    Press:  Alt L
  5. Change the loop sequence to view the images in the order of increasing resolution.
    Type:  LS 3 1 2
  6. Stop the loop.
    Press:  Alt L
  7. Show frame 1 and list the data and brightness values inside the cursor.
    Type:  PC C;SF 1;IMGPROBE LIST BOX BRIT MODE=N
    Notice you have 5 lines and 5 elements of data.

  8. Show frame 3 and list the data and brightness values inside the cursor.
    Type:  SF 3;IMGPROBE LIST BOX BRIT MODE=N
    Notice that you have 10 lines and 10 elements of data. Because the image was blown down by a factor of 2, every second line and element was sampled. Therefore, the number of lines and elements read from the area is twice the amount displayed as an image. The following equation determines the number of lines and elements in the cursor area for a blow down:
    cursor size*blow down factor
    which for this example is 5 * 2 = 10.

  9. Show frame 2 and list the data and brightness values inside the cursor.
    Type:  SF 2;IMGPROBE LIST BOX BRIT MODE=N
    There are 3 lines by 3 elements of data listed. The following equation determines the number of lines and elements in the cursor area for a blow up:
    (cursor size-1)/blow up factor + 1
    which for this example is [(5 - 1)/2] + 1 = 3.

[Search Manual] [Table of Contents] [Go to Previous] [Go to Next]