IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5191


Ignore:
Timestamp:
Sep 29, 2005, 1:06:50 PM (21 years ago)
Author:
jhoblitt
Message:

add stamp, size, md5 to ::Image::New

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/PS-IPP-MetaDB/lib/PS/IPP/MetaDB.pm

    r5189 r5191  
    11# Copyright (C) 2005  Joshua Hoblitt
    22#
    3 # $Id: MetaDB.pm,v 1.5 2005-09-29 22:11:27 jhoblitt Exp $
     3# $Id: MetaDB.pm,v 1.6 2005-09-29 23:06:50 jhoblitt Exp $
    44
    55package PS::IPP::MetaDB;
     
    145145=over 4
    146146
     147=item * exp_id
     148
     149exposure ID #
     150
     151=item * class
     152
     153The 'type' of data this is
     154
     155=item * class_id
     156
     157A unique identifier for data of the same class in the same exposure.
     158
     159=item * camera
     160
     161Camera that this data was acquired from
     162
     163=item * stamp
     164
     165Date/Time stamp of file when the file became available.
     166
     167=item * size
     168
     169The size of the file in bytes.
     170
     171=item * md5
     172
     173The md5 checksum of the file in hexadecimal form (ASCII).
     174
    147175=item * url
    148176
    149177URL to retrieve data from
    150 
    151 =item * exp_id
    152 
    153 exposure ID #
    154 
    155 =item * camera
    156 
    157 Camera that this data was acquired from
    158 
    159 =item * class
    160 
    161 The 'type' of data this is
    162 
    163 =item * class_id
    164 
    165 A unique identifier for data of the same class in the same exposure.
    166178
    167179=back
     
    180192    __PACKAGE__->create_table(q{
    181193        exp_id      BIGINT          NOT NULL PRIMARY KEY,
     194        class       VARCHAR(255),
    182195        class_id    BIGINT          NOT NULL,
    183196        camera      VARCHAR(255),
    184         class       VARCHAR(255),
     197        stamp       DATETIME,
     198        size        INT,
     199        md5         VARCHAR(32),
    185200        url         VARCHAR(255)    NOT NULL
    186201    });
Note: See TracChangeset for help on using the changeset viewer.