Skip to content
U.S. flag

An official website of the United States government

Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

Working with MRO HiRISE Data

Instrument Overview

MRO_HiRISE.jpg

A comparison between the resolution of a camera aboard Mars Global Surveyor and the HiRISE camera on Mars Reconnaissance Orbiter. NASA/JPL

HiRISE has acquired more than 20,000 images of the martian surface in unprecedented detail.

HiRISE operates in visible wavelengths with a telescope that will produce images at resolutions never before possible in planetary exploration. These high resolution images will enable scientists to resolve 1-meter (about 3-foot) sized objects on Mars and to study the morphology (surface structure) in a much more comprehensive manner than ever before.

From an altitude of approximately 300 kilometers above Mars, HiRISE will return surface images comprised of pixels representing 30 centimeters of the martian surface.

These high-resolution images provide unprecedented views of layered materials, gullies, channels, and other science targets, as well as possible future landing sites.

Technical Details

HiRISE Observations

HiRISE_Sample_Observation.png

This image is one half (vertically) of a HiRISE observation scaled down to approximately 1/50th of its original resolution. It is of a small area inside Eberswalde crater in Margaritifer Sinus. Taken on November 8, 2006, the image is a composite of all 10 red detectors and the 2 blue-green detectors. Notice, the blue-green detectors only cover the middle.


HiRISE_Sample_Full_Resolution_Subarea.png

A sub-area of the above observation (indicated by the red outline). One pixel represents 25.6 cm on the surface of Mars.

This telescopic camera has a primary mirror diameter of 50 centimeters and a field of view of 1.15°. At its focal plane, the instrument holds an array of 14 electronic detectors, each covered by a filter in one of three wavelength bands: 400 to 600 nanometers (blue-green), 550 to 850 nanometers (red), or 800 to 1000 nanometers (near-infrared). Ten red detectors are positioned in a line totaling 20,028 pixels across to cover the whole width of the field of view. Typical red images are 20,000 pixels wide by 40,000 lines high. Two each of the blue-green and near-infrared detectors lie across the central 20% of the field. Pixel size in images taken from an altitude of 300 kilometers will be 30 centimeters across, about a factor of two better than the highest-resolution down-track imaging possible from any earlier Mars orbiter and a factor of five better than any extended imaging to date. Generally, at least three pixels are needed to show the shape of a feature, so the smallest resolvable features in the images will be about a meter across for an object with reasonable contrast to its surroundings. The instrument uses a technology called time delay integration to accomplish a high signal-to-noise ratio for unprecedented image quality.

The Principal Investigator (lead scientist) for HiRISE is Alfred McEwen from the Lunar and Planetary Laboratory at the University of Arizona.

See HiRISE Level0 for image acquisition resources.

Cartographic Processing HiRISE Data

HiRISE Guides

Batch Processing

The ingestion, SPICE initialization, calibration, merging, and normalization must be run for each channel image. This would be incredibly tedious to run each application for every file! Luckily, batch processing is easy in ISIS. Using the -batchlist command line option, a set of CCD images for a single observation can be processed swiftly through level 1 processing.

Running ISIS Apps with the -batchlist option
  1. Create a single column list of images without the file extension

    ls *.IMG | sed s/.IMG// > cube.lis
    

  2. Run hi2isis on the list of files, adding the input/output extensions in the command line

    hi2isis from=\$1.IMG to=\$1.cub -batchlist=cube.lis
    

  3. Apply spiceinit to the hi2isis output cube files

    spiceinit from=\$1.cub -batchlist=cube.lis
    

  4. Apply hical with the appropriate input/output file extensions

    hical from=\$1.cub to=\$1.cal.cub -batchlist=cube.lis
    

  5. Create a list of one of the channels without file extensions

    ls *_0.IMG | sed s/_0.IMG// > cube2.lis
    

  6. Stitch together the channels in histitch specifying each appropriate extension in the command line

    histitch from1=\$1_0 from2=\$1_1 to=\$1 -batchlist=cube2.lis
    

  7. Normalize, tone-match across the channels (if necessary) in cubenorm

    cubenorm from=\$1 to=\$1.norm.cub -batch=cube2.lis
    


ISIS Apps Used:

  • hi2isis - Converts a HiRISE EDR to ISIS3 cube format

  • spiceinit - Adds SPICE information to the input cube

  • hical - Radiometrically calibrates HiRISE channel images

  • histitch - Combines two HiRISE channel images to form a single CCD image

  • cubenorm - Normalizes values in a image

Exporting ISIS Data

Exporting large HiRISE images

HiRISE mosaics are very large and our export application isis2std does not handle large PNG or JPEG images. You will need to decrease the size of the image to export by either cropping or reducing.