IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6735


Ignore:
Timestamp:
Mar 30, 2006, 10:21:06 AM (20 years ago)
Author:
Paul Price
Message:

Adding PS_DATA_REGION to psMetadataPrint.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/rel10_ifa/psLib/src/types/psMetadata.c

    r6733 r6735  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.99.4.9 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2006-03-30 03:37:04 $
     14 *  @version $Revision: 1.99.4.10 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2006-03-30 20:21:06 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    11341134            psMetadataPrint(item->data.V, level + 1);
    11351135            break;
     1136        case PS_DATA_REGION: {
     1137                psString region = psRegionToString(*(psRegion*)item->data.V);
     1138                printf("%s", region);
     1139                psFree(region);
     1140                break;
     1141            }
     1142        case PS_DATA_LIST:
     1143            printf("<a list of unknown contents>");
     1144            break;
     1145        case PS_DATA_TIME: {
     1146                psString time = psTimeToISO(item->data.V);
     1147                printf("%s", time);
     1148                psFree(time);
     1149                break;
     1150            }
    11361151        default:
    11371152            printf("\n");
Note: See TracChangeset for help on using the changeset viewer.