IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 42233


Ignore:
Timestamp:
Jul 4, 2022, 2:04:24 PM (4 years ago)
Author:
mhuber
Message:

new gpc2 format config with SHMDOUTC, SHMDCUTC mid-focalplane open/close shutter times starting 20220616 when keywords added, adding SHMDOUTC,SHMDCUTC keywords to pass on to warp,diff and include in publishing (IPP-1667, IPP-1688)

Location:
trunk
Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippconfig/gpc2/Makefile.am

    r41750 r42233  
    88        format_mef.config \
    99        format_20180131.config \
     10        format_20220616.config \
    1011        ghost.model.mdc \
    1112        ppImage.config \
  • trunk/ippconfig/gpc2/camera.config

    r41750 r42233  
    55        MEF             STR     gpc2/format_mef.config
    66        # RELPHOT       STR     gpc2/format_relphot.config
     7        FORMAT_20220616 STR     gpc2/format_20220616.config
    78        FORMAT_20180131 STR     gpc2/format_20180131.config
    89        FORMAT_DEFAULT  STR     gpc2/format_default.config
  • trunk/ppTranslate/src/ppMops.h

    r41588 r42233  
    6767  psString fpashutoutc;               // FPA shutoutc
    6868  psString fpashutcutc;               // FPA shutcutc
     69  psString fpashmdoutc;               // FPA shmdoutc
     70  psString fpashmdcutc;               // FPA shmdcutc
    6971  psString refcat;                    // Reference catalog used
    7072} ppMopsDetections;
  • trunk/ppTranslate/src/ppMopsDetections.c

    r38729 r42233  
    2222    psFree(det->fpashutoutc);
    2323    psFree(det->fpashutcutc);
     24    psFree(det->fpashmdoutc);
     25    psFree(det->fpashmdcutc);
    2426    return;
    2527}
     
    5254    det->fpashutoutc = NULL;
    5355    det->fpashutcutc = NULL;
     56    det->fpashmdoutc = NULL;
     57    det->fpashmdcutc = NULL;
    5458    return det;
    5559}
  • trunk/ppTranslate/src/ppMopsRead.c

    r40582 r42233  
    107107    det->fpashutoutc = psMemIncrRefCounter(psMetadataLookupStr(NULL, header, "FPA.SHUTOUTC"));
    108108    det->fpashutcutc = psMemIncrRefCounter(psMetadataLookupStr(NULL, header, "FPA.SHUTCUTC"));
     109    det->fpashmdoutc = psMemIncrRefCounter(psMetadataLookupStr(NULL, header, "FPA.SHMDOUTC"));
     110    det->fpashmdcutc = psMemIncrRefCounter(psMetadataLookupStr(NULL, header, "FPA.SHMDCUTC"));
    109111    det->refcat = psMemIncrRefCounter(psMetadataLookupStr(NULL, header, "PSREFCAT"));
    110112    psFree(header);
  • trunk/ppTranslate/src/ppMopsWrite.c

    r40553 r42233  
    102102  psMetadataAddF32(header, PS_LIST_TAIL, "PLTSCALE_EXT", 0, "Plate scale at centroid", det->platescale);
    103103  psMetadataAddF32(header, PS_LIST_TAIL, "PLTSCALE", 0, "Plate scale at centroid", det->platescale);
    104   psMetadataAddStr(header, PS_LIST_TAIL, "FPA.SHUTOUTC", 0, "Time of exposure open (CHIP mod)", det->fpashutoutc);
    105   psMetadataAddStr(header, PS_LIST_TAIL, "FPA.SHUTCUTC", 0, "Time of exposure close (RAW)", det->fpashutcutc);
     104  psMetadataAddStr(header, PS_LIST_TAIL, "FPA.SHUTOUTC", 0, "Time shutter open", det->fpashutoutc);
     105  psMetadataAddStr(header, PS_LIST_TAIL, "FPA.SHUTCUTC", 0, "Time shutter close", det->fpashutcutc);
     106  psMetadataAddStr(header, PS_LIST_TAIL, "FPA.SHMDOUTC", 0, "Time shutter open mid-fp", det->fpashmdoutc);
     107  psMetadataAddStr(header, PS_LIST_TAIL, "FPA.SHMDCUTC", 0, "Time shutter close mid-fp", det->fpashmdcutc);
    106108  psMetadataAddStr(header, PS_LIST_TAIL, "PSREFCAT", 0, "Reference catalog used", det->refcat);
    107109
  • trunk/psModules/src/concepts/pmConcepts.c

    r38729 r42233  
    315315        conceptRegisterStr("FPA.SHUTOUTC", "Time of exposure open", NULL,NULL,NULL,false, PM_FPA_LEVEL_FPA);
    316316        conceptRegisterStr("FPA.SHUTCUTC", "Time of exposure close", NULL,NULL,NULL,false, PM_FPA_LEVEL_FPA);
     317        conceptRegisterStr("FPA.SHMDOUTC", "Time of exposure open mid-focalplane", NULL,NULL,NULL,false, PM_FPA_LEVEL_FPA);
     318        conceptRegisterStr("FPA.SHMDCUTC", "Time of exposure close mid-focalplane", NULL,NULL,NULL,false, PM_FPA_LEVEL_FPA);
    317319
    318320        conceptRegisterF32("FPA.TEMP", "Temperature of focal plane", NULL, NULL, NULL, false, PM_FPA_LEVEL_FPA);
Note: See TracChangeset for help on using the changeset viewer.