Package org.roverguild.pdsutil

Class Summary
PDSFilenameTranslator The PDSFilenameTranslator class provides a set of utility methods, which permit metadata contained within the NASA PDS filename format to be extracted, and translated into useful, human readable strings, per the guide located on page 13 of the document at: http://pds-imaging.jpl.nasa.gov/Atlas/MER/documents/pancam_ug.pdf

Usage example:

PDSFilenameTranslator example = new PDSFilenameTranslator("2F127262938EFF0218P1003R0M1");
// Get the Spacecraft Identifier field name and translated value
String scidFieldName = example.getSCIDName();
String scidValue = example.getSCIDTranslation();
// Print out the information
System.out.println(scidFieldName + ": " + scidValue);
PDSInfo This class uses the PDSFilenameTranslator class to provide a human readable summary of the metadata contained within a PDS file provided as a command line argument.