Home

User Documentation

Getting Started
Learn More
Explore in Detail
Get Inspired

Contributor Documentation

Getting Started
Learn More
Explore in Detail
Get Inspired

Quick Links

Software Manual
AstroDiscuss
GitHub
API Reference

Documentation Versions


ISIS 2

Documentation
Tutorials
Technical Documents
USGS

ISIS Application Documentation


vicar2isis

Standard View | TOC | Home

Import Vicar image file into Isis format

Description
Categories
Groups
Examples
History


Description

This program will import a Vicar image file into an Isis cube. No translation of Vicar labels are done.

Categories


Parameter Groups

Files

Name Description
FROM Input Vicar file
TO Output Isis cube

Special Pixels

Name Description
SETNULLRANGECreate special pixel values
NULLMIN Minimum valid value
NULLMAX Maximum valid value
SETHRSRANGECreate special pixel values
HRSMIN Minimum valid value
HRSMAX Maximum valid value
SETLRSRANGECreate special pixel values
LRSMIN Minimum valid value
LRSMAX Maximum valid value

Files: FROM

Description

Use this parameter to select the Vicar filename. If multi-band, it is assumed to be in band sequential order.

Type filename
File Mode input
Filter *.img *.IMG *.vic

Files: TO

Description

Use this parameter to select the output filename

Type cube
File Mode output
Filter *.cub

Special Pixels: SETNULLRANGE

Description

If this option is used input raw pixels below minimum and above maximum will be converted to LRS and HRS respectively. Otherwise pixels in the input raw file will be left unchanged in most cases. For example, importing a raw 8-bit file and outputing to a 16-bit or 32-bit real will cause 0 and 255 to be actual values. If left as 8-bit then 0 will be NULL and 255 will be HRS.

Type boolean
Default NO
Inclusions
  • NULLMIN
  • NULLMAX

Special Pixels: NULLMIN

Description

Minimum valid value. Anything below this value will be set to LRS.

Type double
Inclusions
  • SETNULLRANGE

Special Pixels: NULLMAX

Description

Maximum valid value. Anything above this value will be set to HRS.

Type double
Inclusions
  • SETNULLRANGE

Special Pixels: SETHRSRANGE

Description

If this option is used input raw pixels below minimum and above maximum will be converted to LRS and HRS respectively. Otherwise pixels in the input raw file will be left unchanged in most cases. For example, importing a raw 8-bit file and outputing to a 16-bit or 32-bit real will cause 0 and 255 to be actual values. If left as 8-bit then 0 will be NULL and 255 will be HRS.

Type boolean
Default NO
Inclusions
  • HRSMIN
  • HRSMAX

Special Pixels: HRSMIN

Description

Minimum valid value. Anything below this value will be set to LRS.

Type double
Inclusions
  • SETHRSRANGE

Special Pixels: HRSMAX

Description

Maximum valid value. Anything above this value will be set to HRS.

Type double
Inclusions
  • SETHRSRANGE

Special Pixels: SETLRSRANGE

Description

If this option is used input raw pixels below minimum and above maximum will be converted to LRS and HRS respectively. Otherwise pixels in the input raw file will be left unchanged in most cases. For example, importing a raw 8-bit file and outputing to a 16-bit or 32-bit real will cause 0 and 255 to be actual values. If left as 8-bit then 0 will be NULL and 255 will be HRS.

Type boolean
Default NO
Inclusions
  • LRSMIN
  • LRSMAX

Special Pixels: LRSMIN

Description

Minimum valid value. Anything below this value will be set to LRS.

Type double
Inclusions
  • SETLRSRANGE

Special Pixels: LRSMAX

Description

Maximum valid value. Anything above this value will be set to HRS.

Type double
Inclusions
  • SETLRSRANGE

Examples


Example 1

Converting an vicar file to an Isis Cube

Description

This example will show the conversion from a vicar file to a cube.

Command Line

vicar2isis FROM=input.img TO=out.cub
Convert the image input.img to the Isis Cube out.cub

GUI Screenshot

Convert input.img to the Isis Cube out.cub

Convert the image input.img to the Isis Cube out.cub

The is the GUI for vicar2isis when converting the ascii file input.txt to the Isis Cube out.cub

Data File

Vicar input file. This is the vicar data

Output Image

Output Image

Output Isis Cube

The is the output Isis Cube peaks.cub generated from this example.


History

Tracie L Sucharski2003-09-10 Original version
Jeff Anderson2004-02-06 Modified due to IsisImport refactor
Elizabeth Miller2005-11-15 Added appTest
Steven Koechle2007-08-29 Added special pixel ranges and example