IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 17, 2005, 10:58:22 AM (22 years ago)
Author:
desonia
Message:

added test for psFitsReadTable.

Location:
trunk/psLib/src/astronomy
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psMetadata.c

    r2985 r3025  
    1212*  @author Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.48 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-01-13 23:27:06 $
     14*  @version $Revision: 1.49 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-01-17 20:58:20 $
    1616*
    1717*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    495495psMetadataLookupNumTYPE(F64)
    496496psMetadataLookupNumTYPE(S32)
     497psMetadataLookupNumTYPE(Bool)
    497498
    498499psMetadataItem* psMetadataGet(psMetadata *md, psS32 where)
  • trunk/psLib/src/astronomy/psMetadata.h

    r2975 r3025  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-01-13 21:09:39 $
     13*  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-01-17 20:58:20 $
    1515*
    1616*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    240240);
    241241
     242/** Find an item in the metadata collection based on key name and return its boolean value.
     243 *
     244 *  Items may be found in the metadata by providing a key. If the key is
     245 *  non-unique, the value of the first item is returned. If the item is not found, zero is
     246 *  returned.
     247 *
     248 * @return psBool : Value of metadata item.
     249 */
     250psBool psMetadataLookupBool(
     251    psMetadata *md,            ///< Metadata collection to lookup metadata item.
     252    const char *key,           ///< Name of metadata key.
     253    psBool *status              ///< Status of lookup.
     254);
     255
    242256/** Find an item in the metadata collection based on key name and return its integer value.
    243257 *
Note: See TracChangeset for help on using the changeset viewer.