diff --git a/python/initializer/write_init_outputs.py b/python/initializer/write_init_outputs.py index 9a2670c5..40a93814 100755 --- a/python/initializer/write_init_outputs.py +++ b/python/initializer/write_init_outputs.py @@ -142,13 +142,13 @@ def main(args=None): return 1 -def _get_current_day_obs() -> str: +def _get_current_day_obs() -> int: """Generate the current day_obs value. Returns ------- - day_obs : `str` - The day_obs value in YYYY-MM-DD format. + day_obs : `int` + The day_obs value in YYYYMMDD format. """ return run_utils.get_day_obs(astropy.time.Time.now()) diff --git a/python/shared/run_utils.py b/python/shared/run_utils.py index 5acdc1ae..0b2086cc 100644 --- a/python/shared/run_utils.py +++ b/python/shared/run_utils.py @@ -38,7 +38,7 @@ _log_trace3.setLevel(logging.CRITICAL) # Turn off by default. -def get_output_chain(instrument: lsst.obs.base.Instrument, date: str) -> str: +def get_output_chain(instrument: lsst.obs.base.Instrument, date: int) -> str: """Generate a deterministic output chain name that avoids configuration conflicts. @@ -46,8 +46,8 @@ def get_output_chain(instrument: lsst.obs.base.Instrument, date: str) -> str: ---------- instrument : `lsst.obs.base.Instrument` The instrument for which to generate a collection. - date : `str` - Date of the processing run (not observation!). + date : `int` + Date of the processing run (not observation!) in YYYYMMDD format. Returns ------- @@ -55,10 +55,10 @@ def get_output_chain(instrument: lsst.obs.base.Instrument, date: str) -> str: The chain in which to place all output collections. """ # Order optimized for S3 bucket -- filter out as many files as soon as possible. - return instrument.makeCollectionName("prompt", f"output-{date}") + return instrument.makeCollectionName("runs", f"prompt-{date:08d}") -def get_preload_run(instrument: lsst.obs.base.Instrument, deployment_id: str, date: str) -> str: +def get_preload_run(instrument: lsst.obs.base.Instrument, deployment_id: str, date: int) -> str: """Generate a deterministic preload collection name that avoids configuration conflicts. @@ -68,8 +68,8 @@ def get_preload_run(instrument: lsst.obs.base.Instrument, deployment_id: str, da The instrument for which to generate a collection. deployment_id : `str` A unique version ID of the active stack and pipeline configuration(s). - date : `str` - Date of the processing run (not observation!). + date : `int` + Date of the processing run (not observation!) in YYYYMMDD format. Returns ------- @@ -82,7 +82,7 @@ def get_preload_run(instrument: lsst.obs.base.Instrument, deployment_id: str, da def get_output_run(instrument: lsst.obs.base.Instrument, deployment_id: str, pipeline_file: str, - date: str, + date: int, ) -> str: """Generate a deterministic collection name that avoids version or provenance conflicts. @@ -95,8 +95,8 @@ def get_output_run(instrument: lsst.obs.base.Instrument, A unique version ID of the active stack and pipeline configuration(s). pipeline_file : `str` The pipeline name that the run will be used for. - date : `str` - Date of the processing run (not observation!). + date : `int` + Date of the processing run (not observation!) in YYYYMMDD format. Returns ------- @@ -105,10 +105,11 @@ def get_output_run(instrument: lsst.obs.base.Instrument, """ pipeline_name, _ = os.path.splitext(os.path.basename(pipeline_file)) # Order optimized for S3 bucket -- filter out as many files as soon as possible. - return "/".join([get_output_chain(instrument, date), pipeline_name, deployment_id]) + output_run = instrument.makeCollectionName("runs", "prompt", f"{date:08d}") + return "/".join([output_run, pipeline_name, deployment_id]) -def get_day_obs(time: astropy.time.Time) -> str: +def get_day_obs(time: astropy.time.Time) -> int: """Convert a timestamp into a day-obs string. The day-obs is defined as the TAI date of an instant 12 hours before @@ -121,11 +122,12 @@ def get_day_obs(time: astropy.time.Time) -> str: Returns ------- - day_obs : `str` - The day-obs corresponding to ``time``, in YYYY-MM-DD format. + day_obs : `int` + The day_obs corresponding to ``time``, in YYYYMMDD format. """ day_obs_delta = astropy.time.TimeDelta(-12.0 * astropy.units.hour, scale="tai") - return (time + day_obs_delta).tai.to_value("iso", "date") + iso_date = (time + day_obs_delta).tai.to_value("iso", "date") + return int(iso_date.replace("-", "")) def _get_pp_hash(): diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeAssociateDiaSourceTiming_config/analyzeAssociateDiaSourceTiming_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250720/gainCorrectionGen.20251215a/20251218T183917Z/gain_correction/gain_correction_LSSTCam_R22_S00_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250720_gainCorrectionGen_20251215a_20251218T183917Z.fits similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeAssociateDiaSourceTiming_config/analyzeAssociateDiaSourceTiming_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250720/gainCorrectionGen.20251215a/20251218T183917Z/gain_correction/gain_correction_LSSTCam_R22_S00_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250720_gainCorrectionGen_20251215a_20251218T183917Z.fits diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeAssociatedDiaSourceTable_config/analyzeAssociatedDiaSourceTable_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250720/gainCorrectionGen.20251215a/20251218T183917Z/gain_correction/gain_correction_LSSTCam_R22_S01_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250720_gainCorrectionGen_20251215a_20251218T183917Z.fits similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeAssociatedDiaSourceTable_config/analyzeAssociatedDiaSourceTable_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250720/gainCorrectionGen.20251215a/20251218T183917Z/gain_correction/gain_correction_LSSTCam_R22_S01_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250720_gainCorrectionGen_20251215a_20251218T183917Z.fits diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeDiaSourceAssociationMetrics_config/analyzeDiaSourceAssociationMetrics_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250814/gainCorrectionGen.20251215a/20251218T185451Z/gain_correction/gain_correction_LSSTCam_R22_S00_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250814_gainCorrectionGen_20251215a_20251218T185451Z.fits similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeDiaSourceAssociationMetrics_config/analyzeDiaSourceAssociationMetrics_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250814/gainCorrectionGen.20251215a/20251218T185451Z/gain_correction/gain_correction_LSSTCam_R22_S00_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250814_gainCorrectionGen_20251215a_20251218T185451Z.fits diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeDiaSourceDetectionMetrics_config/analyzeDiaSourceDetectionMetrics_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250814/gainCorrectionGen.20251215a/20251218T185451Z/gain_correction/gain_correction_LSSTCam_R22_S01_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250814_gainCorrectionGen_20251215a_20251218T185451Z.fits similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeDiaSourceDetectionMetrics_config/analyzeDiaSourceDetectionMetrics_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250814/gainCorrectionGen.20251215a/20251218T185451Z/gain_correction/gain_correction_LSSTCam_R22_S01_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250814_gainCorrectionGen_20251215a_20251218T185451Z.fits diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeImageDifferenceMetrics_config/analyzeImageDifferenceMetrics_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250827/gainCorrectionGen.20251215a/20251218T191409Z/gain_correction/gain_correction_LSSTCam_R22_S00_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250827_gainCorrectionGen_20251215a_20251218T191409Z.fits similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeImageDifferenceMetrics_config/analyzeImageDifferenceMetrics_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250827/gainCorrectionGen.20251215a/20251218T191409Z/gain_correction/gain_correction_LSSTCam_R22_S00_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250827_gainCorrectionGen_20251215a_20251218T191409Z.fits diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzePreliminarySummaryStats_config/analyzePreliminarySummaryStats_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250827/gainCorrectionGen.20251215a/20251218T191409Z/gain_correction/gain_correction_LSSTCam_R22_S01_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250827_gainCorrectionGen_20251215a_20251218T191409Z.fits similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzePreliminarySummaryStats_config/analyzePreliminarySummaryStats_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250827/gainCorrectionGen.20251215a/20251218T191409Z/gain_correction/gain_correction_LSSTCam_R22_S01_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250827_gainCorrectionGen_20251215a_20251218T191409Z.fits diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeTrailedDiaSourceTable_config/analyzeTrailedDiaSourceTable_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250920/gainCorrectionGen.20251215a/20251218T193528Z/gain_correction/gain_correction_LSSTCam_R22_S00_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250920_gainCorrectionGen_20251215a_20251218T193528Z.fits similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/analyzeTrailedDiaSourceTable_config/analyzeTrailedDiaSourceTable_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250920/gainCorrectionGen.20251215a/20251218T193528Z/gain_correction/gain_correction_LSSTCam_R22_S00_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250920_gainCorrectionGen_20251215a_20251218T193528Z.fits diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/associateApdb_config/associateApdb_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250920/gainCorrectionGen.20251215a/20251218T193528Z/gain_correction/gain_correction_LSSTCam_R22_S01_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250920_gainCorrectionGen_20251215a_20251218T193528Z.fits similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/associateApdb_config/associateApdb_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250920/gainCorrectionGen.20251215a/20251218T193528Z/gain_correction/gain_correction_LSSTCam_R22_S01_LSSTCam_calib_DM-53620_3s_v1_dp2_v2_gain_correction_20250920_gainCorrectionGen_20251215a_20251218T193528Z.fits diff --git a/tests/data/central_repo/LSSTCam/calib/unbounded/camera/camera_LSSTCam_LSSTCam_calib_unbounded.fits b/tests/data/central_repo/LSSTCam/calib/unbounded/camera/camera_LSSTCam_LSSTCam_calib_unbounded.fits index 005fafa4..10546298 100644 --- a/tests/data/central_repo/LSSTCam/calib/unbounded/camera/camera_LSSTCam_LSSTCam_calib_unbounded.fits +++ b/tests/data/central_repo/LSSTCam/calib/unbounded/camera/camera_LSSTCam_LSSTCam_calib_unbounded.fits @@ -320,180 +320,208 @@ ws         '07= DMTZ ajqw ~     % ,5<B IRY_ fov|      $* 1: AG NW!^d kt"{ # $ % & '  "()/ 6?)FL S\*ci py+ , - . /  0 '1.4 ;D2KQ Xa3hn u~4 5 6 7 8 9 #,:39 @I;PV ]f<ms z= > ? @ A   B  ! ( 1C 8 > E ND U [ b kE r x  F   G   H   I   J!! !!K! !& !-!6L!=!C !J!SM!Z!` !g!pN!w!} !!O!! !!P!! !!Q!! !!R!! !"S"" ""T"%"+ "2";U"B"H "O"XV"_"e "l"uW"|" ""X"" ""Y"" ""Z"" ""["" "#\# # ###]#*#0 #7#@^#G#M #T#]_#d#j #q#z`## ##a## ##b## ##c## ##d## $$ e$$ $$(f$/$5 $<$Eg$L$R $Y$bh$i$o $v$i$$ $$j$$ $$k$$ $$l$$ $$m$% %%n%% %$%-o%4%: %A%Jp%Q%W %^%gq%n%t %{%r%% %%s%% %%t%% %%u%% %%v%& & &w&&" &)&2x&9&? &F&Oy&V&\ &c&lz&s&y &&{&& &&|&& &&}&& &&~&& &&'' - '''!'' '.'7'>'D 'K'T'['a 'h'q'x'~ '''' '''' '''' '''' '(( ( (((&(, (3(<(C(I (P(Y(`(f (m(v(}( (((( (((( (((( (((( ())) ))$)+)1 )8)A)H)N )U)^)e)k )r){)) )))) )))) )))) )))) ** ** * *)*0*6 *=*F*M*S *Z*c*j*p *w*FocalPlaneFieldAngleFocalPlanePixelsR01_S00FocalPlanePixelsR01_S01FocalPlanePixelsR01_S02FocalPlanePixelsR01_S10FocalPlanePixelsR01_S11FocalPlanePixelsR01_S12FocalPlanePixelsR01_S20FocalPlanePixelsR01_S21FocalPlanePixelsR01_S22FocalPlanePixelsR02_S00FocalPlanePixelsR02_S01FocalPlanePixelsR02_S02FocalPlanePixelsR02_S10FocalPlanePixelsR02_S11FocalPlanePixelsR02_S12FocalPlanePixelsR02_S20FocalPlanePixelsR02_S21FocalPlanePixelsR02_S22FocalPlanePixelsR03_S00FocalPlanePixelsR03_S01FocalPlanePixelsR03_S02FocalPlanePixelsR03_S10FocalPlanePixelsR03_S11FocalPlanePixelsR03_S12FocalPlanePixelsR03_S20FocalPlanePixelsR03_S21FocalPlanePixelsR03_S22FocalPlanePixelsR10_S00FocalPlanePixelsR10_S01FocalPlanePixelsR10_S02FocalPlanePixelsR10_S10FocalPlanePixelsR10_S11FocalPlanePixelsR10_S12FocalPlanePixelsR10_S20FocalPlanePixelsR10_S21FocalPlanePixelsR10_S22FocalPlanePixelsR11_S00FocalPlanePixelsR11_S01FocalPlanePixelsR11_S02FocalPlanePixelsR11_S10FocalPlanePixelsR11_S11FocalPlanePixelsR11_S12FocalPlanePixelsR11_S20FocalPlanePixelsR11_S21FocalPlanePixelsR11_S22FocalPlanePixelsR12_S00FocalPlanePixelsR12_S01FocalPlanePixelsR12_S02FocalPlanePixelsR12_S10FocalPlanePixelsR12_S11FocalPlanePixelsR12_S12FocalPlanePixelsR12_S20FocalPlanePixelsR12_S21FocalPlanePixelsR12_S22FocalPlanePixelsR13_S00FocalPlanePixelsR13_S01FocalPlanePixelsR13_S02FocalPlanePixelsR13_S10FocalPlanePixelsR13_S11FocalPlanePixelsR13_S12FocalPlanePixelsR13_S20FocalPlanePixelsR13_S21FocalPlanePixelsR13_S22FocalPlanePixelsR14_S00FocalPlanePixelsR14_S01FocalPlanePixelsR14_S02FocalPlanePixelsR14_S10FocalPlanePixelsR14_S11FocalPlanePixelsR14_S12FocalPlanePixelsR14_S20FocalPlanePixelsR14_S21FocalPlanePixelsR14_S22FocalPlanePixelsR20_S00FocalPlanePixelsR20_S01FocalPlanePixelsR20_S02FocalPlanePixelsR20_S10FocalPlanePixelsR20_S11FocalPlanePixelsR20_S12FocalPlanePixelsR20_S20FocalPlanePixelsR20_S21FocalPlanePixelsR20_S22FocalPlanePixelsR21_S00FocalPlanePixelsR21_S01FocalPlanePixelsR21_S02FocalPlanePixelsR21_S10FocalPlanePixelsR21_S11FocalPlanePixelsR21_S12FocalPlanePixelsR21_S20FocalPlanePixelsR21_S21FocalPlanePixelsR21_S22FocalPlanePixelsR22_S00FocalPlanePixelsR22_S01FocalPlanePixelsR22_S02FocalPlanePixelsR22_S10FocalPlanePixelsR22_S11FocalPlanePixelsR22_S12FocalPlanePixelsR22_S20FocalPlanePixelsR22_S21FocalPlanePixelsR22_S22FocalPlanePixelsR23_S00FocalPlanePixelsR23_S01FocalPlanePixelsR23_S02FocalPlanePixelsR23_S10FocalPlanePixelsR23_S11FocalPlanePixelsR23_S12FocalPlanePixelsR23_S20FocalPlanePixelsR23_S21FocalPlanePixelsR23_S22FocalPlanePixelsR24_S00FocalPlanePixelsR24_S01FocalPlanePixelsR24_S02FocalPlanePixelsR24_S10FocalPlanePixelsR24_S11FocalPlanePixelsR24_S12FocalPlanePixelsR24_S20FocalPlanePixelsR24_S21FocalPlanePixelsR24_S22FocalPlanePixelsR30_S00FocalPlanePixelsR30_S01FocalPlanePixelsR30_S02FocalPlanePixelsR30_S10FocalPlanePixelsR30_S11FocalPlanePixelsR30_S12FocalPlanePixelsR30_S20FocalPlanePixelsR30_S21FocalPlanePixelsR30_S22FocalPlanePixelsR31_S00FocalPlanePixelsR31_S01FocalPlanePixelsR31_S02FocalPlanePixelsR31_S10FocalPlanePixelsR31_S11FocalPlanePixelsR31_S12FocalPlanePixelsR31_S20FocalPlanePixelsR31_S21FocalPlanePixelsR31_S22FocalPlanePixelsR32_S00FocalPlanePixelsR32_S01FocalPlanePixelsR32_S02FocalPlanePixelsR32_S10FocalPlanePixelsR32_S11FocalPlanePixelsR32_S12FocalPlanePixelsR32_S20FocalPlanePixelsR32_S21FocalPlanePixelsR32_S22FocalPlanePixelsR33_S00FocalPlanePixelsR33_S01FocalPlanePixelsR33_S02FocalPlanePixelsR33_S10FocalPlanePixelsR33_S11FocalPlanePixelsR33_S12FocalPlanePixelsR33_S20FocalPlanePixelsR33_S21FocalPlanePixelsR33_S22FocalPlanePixelsR34_S00FocalPlanePixelsR34_S01FocalPlanePixelsR34_S02FocalPlanePixelsR34_S10FocalPlanePixelsR34_S11FocalPlanePixelsR34_S12FocalPlanePixelsR34_S20FocalPlanePixelsR34_S21FocalPlanePixelsR34_S22FocalPlanePixelsR41_S00FocalPlanePixelsR41_S01FocalPlanePixelsR41_S02FocalPlanePixelsR41_S10FocalPlanePixelsR41_S11FocalPlanePixelsR41_S12FocalPlanePixelsR41_S20FocalPlanePixelsR41_S21FocalPlanePixelsR41_S22FocalPlanePixelsR42_S00FocalPlanePixelsR42_S01FocalPlanePixelsR42_S02FocalPlanePixelsR42_S10FocalPlanePixelsR42_S11FocalPlanePixelsR42_S12FocalPlanePixelsR42_S20FocalPlanePixelsR42_S21FocalPlanePixelsR42_S22FocalPlanePixelsR43_S00FocalPlanePixelsR43_S01FocalPlanePixelsR43_S02FocalPlanePixelsR43_S10FocalPlanePixelsR43_S11FocalPlanePixelsR43_S12FocalPlanePixelsR43_S20FocalPlanePixelsR43_S21FocalPlanePixelsR43_S22FocalPlanePixelsR00_SG0FocalPlanePixelsR00_SG1FocalPlanePixelsR00_SW0FocalPlanePixelsR00_SW1FocalPlanePixelsR04_SG0FocalPlanePixelsR04_SG1FocalPlanePixelsR04_SW0FocalPlanePixelsR04_SW1FocalPlanePixelsR40_SG0FocalPlanePixelsR40_SG1FocalPlanePixelsR40_SW0FocalPlanePixelsR40_SW1FocalPlanePixelsR44_SG0FocalPlanePixelsR44_SG1FocalPlanePixelsR44_SW0FocalPlanePixelsR44_SW1PixelsR23_S10TanPixelsR23_S10PixelsR12_S20TanPixelsR12_S20PixelsR23_S11TanPixelsR23_S11PixelsR01_S20TanPixelsR01_S20PixelsR23_S12TanPixelsR23_S12PixelsR12_S21TanPixelsR12_S21PixelsR23_S20TanPixelsR23_S20PixelsR03_S22TanPixelsR03_S22PixelsR23_S21TanPixelsR23_S21PixelsR12_S22TanPixelsR12_S22PixelsR23_S22TanPixelsR23_S22PixelsR02_S11TanPixelsR02_S11PixelsR24_S00TanPixelsR24_S00PixelsR13_S00TanPixelsR13_S00PixelsR24_S01TanPixelsR24_S01PixelsR10_S00TanPixelsR10_S00PixelsR24_S02TanPixelsR24_S02PixelsR13_S01TanPixelsR13_S01PixelsR24_S10TanPixelsR24_S10PixelsR01_S10TanPixelsR01_S10PixelsR24_S11TanPixelsR24_S11PixelsR13_S02TanPixelsR13_S02PixelsR24_S12TanPixelsR24_S12PixelsR10_S01TanPixelsR10_S01PixelsR24_S20TanPixelsR24_S20PixelsR13_S10TanPixelsR13_S10PixelsR24_S21TanPixelsR24_S21PixelsR02_S12TanPixelsR02_S12PixelsR24_S22TanPixelsR24_S22PixelsR13_S11TanPixelsR13_S11PixelsR30_S00TanPixelsR30_S00PixelsR10_S02TanPixelsR10_S02PixelsR30_S01TanPixelsR30_S01PixelsR13_S12TanPixelsR13_S12PixelsR30_S02TanPixelsR30_S02PixelsR01_S21TanPixelsR01_S21PixelsR30_S10TanPixelsR30_S10PixelsR13_S20TanPixelsR13_S20PixelsR30_S11TanPixelsR30_S11PixelsR10_S10TanPixelsR10_S10PixelsR30_S12TanPixelsR30_S12PixelsR13_S21TanPixelsR13_S21PixelsR30_S20TanPixelsR30_S20PixelsR02_S20TanPixelsR02_S20PixelsR30_S21TanPixelsR30_S21PixelsR13_S22TanPixelsR13_S22PixelsR30_S22TanPixelsR30_S22PixelsR10_S11TanPixelsR10_S11PixelsR31_S00TanPixelsR31_S00PixelsR14_S00TanPixelsR14_S00PixelsR31_S01TanPixelsR31_S01PixelsR01_S00TanPixelsR01_S00PixelsR31_S02TanPixelsR31_S02PixelsR14_S01TanPixelsR14_S01PixelsR31_S10TanPixelsR31_S10PixelsR10_S12TanPixelsR10_S12PixelsR31_S11TanPixelsR31_S11PixelsR14_S02TanPixelsR14_S02PixelsR31_S12TanPixelsR31_S12PixelsR02_S21TanPixelsR02_S21PixelsR31_S20TanPixelsR31_S20PixelsR14_S10TanPixelsR14_S10PixelsR31_S21TanPixelsR31_S21PixelsR10_S20TanPixelsR10_S20PixelsR31_S22TanPixelsR31_S22PixelsR14_S11TanPixelsR14_S11PixelsR32_S00TanPixelsR32_S00PixelsR01_S22TanPixelsR01_S22PixelsR32_S01TanPixelsR32_S01PixelsR14_S12TanPixelsR14_S12PixelsR32_S02TanPixelsR32_S02PixelsR10_S21TanPixelsR10_S21PixelsR32_S10TanPixelsR32_S10PixelsR14_S20TanPixelsR14_S20PixelsR32_S11TanPixelsR32_S11PixelsR02_S22TanPixelsR02_S22PixelsR32_S12TanPixelsR32_S12PixelsR14_S21TanPixelsR14_S21PixelsR32_S20TanPixelsR32_S20PixelsR10_S22TanPixelsR10_S22PixelsR32_S21TanPixelsR32_S21PixelsR14_S22TanPixelsR14_S22PixelsR32_S22TanPixelsR32_S22PixelsR01_S11TanPixelsR01_S11PixelsR33_S00TanPixelsR33_S00PixelsR20_S00TanPixelsR20_S00PixelsR33_S01TanPixelsR33_S01PixelsR11_S00TanPixelsR11_S00PixelsR33_S02TanPixelsR33_S02PixelsR20_S01TanPixelsR20_S01PixelsR33_S10TanPixelsR33_S10PixelsR03_S00TanPixelsR03_S00PixelsR33_S11TanPixelsR33_S11PixelsR20_S02TanPixelsR20_S02PixelsR33_S12TanPixelsR33_S12PixelsR11_S01TanPixelsR11_S01PixelsR33_S20TanPixelsR33_S20PixelsR20_S10TanPixelsR20_S10PixelsR33_S21TanPixelsR33_S21PixelsR02_S00TanPixelsR02_S00PixelsR33_S22TanPixelsR33_S22PixelsR20_S11TanPixelsR20_S11PixelsR34_S00TanPixelsR34_S00PixelsR11_S02TanPixelsR11_S02PixelsR34_S01TanPixelsR34_S01PixelsR20_S12TanPixelsR20_S12PixelsR34_S02TanPixelsR34_S02PixelsR03_S01TanPixelsR03_S01PixelsR34_S10TanPixelsR34_S10PixelsR20_S20TanPixelsR20_S20PixelsR34_S11TanPixelsR34_S11PixelsR11_S10TanPixelsR11_S10PixelsR34_S12TanPixelsR34_S12PixelsR20_S21TanPixelsR20_S21PixelsR34_S20TanPixelsR34_S20PixelsR01_S02TanPixelsR01_S02PixelsR34_S21TanPixelsR34_S21PixelsR20_S22TanPixelsR20_S22PixelsR34_S22TanPixelsR34_S22PixelsR11_S11TanPixelsR11_S11PixelsR41_S00TanPixelsR41_S00PixelsR21_S00TanPixelsR21_S00PixelsR41_S01TanPixelsR41_S01PixelsR03_S02TanPixelsR03_S02PixelsR41_S02TanPixelsR41_S02PixelsR21_S01TanPixelsR21_S01PixelsR41_S10TanPixelsR41_S10PixelsR11_S12TanPixelsR11_S12PixelsR41_S11TanPixelsR41_S11PixelsR21_S02TanPixelsR21_S02PixelsR41_S12TanPixelsR41_S12PixelsR02_S01TanPixelsR02_S01PixelsR41_S20TanPixelsR41_S20PixelsR21_S10TanPixelsR21_S10PixelsR41_S21TanPixelsR41_S21PixelsR11_S20TanPixelsR11_S20PixelsR41_S22TanPixelsR41_S22PixelsR21_S11TanPixelsR21_S11PixelsR42_S00TanPixelsR42_S00PixelsR03_S10TanPixelsR03_S10PixelsR42_S01TanPixelsR42_S01PixelsR21_S12TanPixelsR21_S12PixelsR42_S02TanPixelsR42_S02PixelsR11_S21TanPixelsR11_S21PixelsR42_S10TanPixelsR42_S10PixelsR21_S20TanPixelsR21_S20PixelsR42_S11TanPixelsR42_S11PixelsR01_S12TanPixelsR01_S12PixelsR42_S12TanPixelsR42_S12PixelsR21_S21TanPixelsR21_S21PixelsR42_S20TanPixelsR42_S20PixelsR11_S22TanPixelsR11_S22PixelsR42_S21TanPixelsR42_S21PixelsR21_S22TanPixelsR21_S22PixelsR42_S22TanPixelsR42_S22PixelsR03_S11TanPixelsR03_S11PixelsR43_S00TanPixelsR43_S00PixelsR22_S00TanPixelsR22_S00PixelsR43_S01TanPixelsR43_S01PixelsR12_S00TanPixelsR12_S00PixelsR43_S02TanPixelsR43_S02PixelsR22_S01TanPixelsR22_S01PixelsR43_S10TanPixelsR43_S10PixelsR02_S02TanPixelsR02_S02PixelsR43_S11TanPixelsR43_S11PixelsR22_S02TanPixelsR22_S02PixelsR43_S12TanPixelsR43_S12PixelsR12_S01TanPixelsR12_S01PixelsR43_S20TanPixelsR43_S20PixelsR22_S10TanPixelsR22_S10PixelsR43_S21TanPixelsR43_S21PixelsR03_S12TanPixelsR03_S12PixelsR43_S22TanPixelsR43_S22PixelsR22_S11TanPixelsR22_S11PixelsR00_SG0TanPixelsR00_SG0PixelsR12_S02TanPixelsR12_S02PixelsR00_SG1TanPixelsR00_SG1PixelsR22_S12TanPixelsR22_S12PixelsR00_SW0TanPixelsR00_SW0PixelsR01_S01TanPixelsR01_S01PixelsR00_SW1TanPixelsR00_SW1PixelsR22_S20TanPixelsR22_S20PixelsR04_SG0TanPixelsR04_SG0PixelsR12_S10TanPixelsR12_S10PixelsR04_SG1TanPixelsR04_SG1PixelsR22_S21TanPixelsR22_S21PixelsR04_SW0TanPixelsR04_SW0PixelsR03_S20TanPixelsR03_S20PixelsR04_SW1TanPixelsR04_SW1PixelsR22_S22TanPixelsR22_S22PixelsR40_SG0TanPixelsR40_SG0PixelsR12_S11TanPixelsR12_S11PixelsR40_SG1TanPixelsR40_SG1PixelsR23_S00TanPixelsR23_S00PixelsR40_SW0TanPixelsR40_SW0PixelsR02_S10TanPixelsR02_S10PixelsR40_SW1TanPixelsR40_SW1PixelsR23_S01TanPixelsR23_S01PixelsR44_SG0TanPixelsR44_SG0PixelsR12_S12TanPixelsR12_S12PixelsR44_SG1TanPixelsR44_SG1PixelsR23_S02TanPixelsR23_S02PixelsR44_SW0TanPixelsR44_SW0PixelsR03_S21TanPixelsR03_S21PixelsR44_SW1TanPixelsR44_SW1XTENSION= 'BINTABLE' / binary table extension BITPIX = 8 / 8-bit bytes NAXIS = 2 / 2-dimensional binary table NAXIS1 = 16 / width of table in bytes NAXIS2 = 411 / number of rows in table PCOUNT = 624755 / size of special data area GCOUNT = 1 / one data group (required keyword) TFIELDS = 1 / number of fields in each row TTYPE1 = 'bytes ' / label for field TFORM1 = '1QB(3578)' / format of field TDOC1 = 'a bytestring containing the output of Transform.writeString' TCCLS1 = 'Array ' / Field template used by lsst.afw.table EXTTYPE = 'ARCHIVE_DATA' AR_CATN = 4 / # of this catalog relative to the start of thisAR_NAME = 'TransformPoint2ToPoint2' / Class name for objects stored here EXTNAME = 'TransformPoint2ToPoint2' HIERARCH AFW_TABLE_VERSION = 3 END z7 n -+ - b  UH|8l(]Q E! !"#e$-$%&o','()*K++,-T../0e1,123v42456|7C8 -89:T;;<=\>$>?@|ACB -BCDaE)EFGHHIIJKfL-LMNOKPPQRfS-STUVHWWXYbZ)Z[\~]D^ -^_`^a%abcYd defug<hhi{j7jklmSnnopXqqrsgt-tuvtw/wxyvz<{{|}I~~KEy5i%XFw2cjC|dEc_ k^2]cpP{5  - - - -ٯ - - - -i -U -B -&. -1& < -G -R -\ -g -r -} - -  - - x -{ -g -_ -V -N -E - ' - -" -- -7 -B -M -X -c -no yQ -T 5 -8 - - - - - - - - - - -z g -(j -3W >D -IG T? -_B j$ -u' - - + '''!'' '.'7'>'D 'K'T'['a 'h'q'x'~ '''' '''' '''' '''' '(( ( (((&(, (3(<(C(I (P(Y(`(f (m(v(}( (((( (((( (((( (((( ())) ))$)+)1 )8)A)H)N )U)^)e)k )r){)) )))) )))) )))) )))) ** ** * *)*0*6 *=*F*M*S *Z*c*j*p *w*FocalPlaneFieldAngleFocalPlanePixelsR01_S00FocalPlanePixelsR01_S01FocalPlanePixelsR01_S02FocalPlanePixelsR01_S10FocalPlanePixelsR01_S11FocalPlanePixelsR01_S12FocalPlanePixelsR01_S20FocalPlanePixelsR01_S21FocalPlanePixelsR01_S22FocalPlanePixelsR02_S00FocalPlanePixelsR02_S01FocalPlanePixelsR02_S02FocalPlanePixelsR02_S10FocalPlanePixelsR02_S11FocalPlanePixelsR02_S12FocalPlanePixelsR02_S20FocalPlanePixelsR02_S21FocalPlanePixelsR02_S22FocalPlanePixelsR03_S00FocalPlanePixelsR03_S01FocalPlanePixelsR03_S02FocalPlanePixelsR03_S10FocalPlanePixelsR03_S11FocalPlanePixelsR03_S12FocalPlanePixelsR03_S20FocalPlanePixelsR03_S21FocalPlanePixelsR03_S22FocalPlanePixelsR10_S00FocalPlanePixelsR10_S01FocalPlanePixelsR10_S02FocalPlanePixelsR10_S10FocalPlanePixelsR10_S11FocalPlanePixelsR10_S12FocalPlanePixelsR10_S20FocalPlanePixelsR10_S21FocalPlanePixelsR10_S22FocalPlanePixelsR11_S00FocalPlanePixelsR11_S01FocalPlanePixelsR11_S02FocalPlanePixelsR11_S10FocalPlanePixelsR11_S11FocalPlanePixelsR11_S12FocalPlanePixelsR11_S20FocalPlanePixelsR11_S21FocalPlanePixelsR11_S22FocalPlanePixelsR12_S00FocalPlanePixelsR12_S01FocalPlanePixelsR12_S02FocalPlanePixelsR12_S10FocalPlanePixelsR12_S11FocalPlanePixelsR12_S12FocalPlanePixelsR12_S20FocalPlanePixelsR12_S21FocalPlanePixelsR12_S22FocalPlanePixelsR13_S00FocalPlanePixelsR13_S01FocalPlanePixelsR13_S02FocalPlanePixelsR13_S10FocalPlanePixelsR13_S11FocalPlanePixelsR13_S12FocalPlanePixelsR13_S20FocalPlanePixelsR13_S21FocalPlanePixelsR13_S22FocalPlanePixelsR14_S00FocalPlanePixelsR14_S01FocalPlanePixelsR14_S02FocalPlanePixelsR14_S10FocalPlanePixelsR14_S11FocalPlanePixelsR14_S12FocalPlanePixelsR14_S20FocalPlanePixelsR14_S21FocalPlanePixelsR14_S22FocalPlanePixelsR20_S00FocalPlanePixelsR20_S01FocalPlanePixelsR20_S02FocalPlanePixelsR20_S10FocalPlanePixelsR20_S11FocalPlanePixelsR20_S12FocalPlanePixelsR20_S20FocalPlanePixelsR20_S21FocalPlanePixelsR20_S22FocalPlanePixelsR21_S00FocalPlanePixelsR21_S01FocalPlanePixelsR21_S02FocalPlanePixelsR21_S10FocalPlanePixelsR21_S11FocalPlanePixelsR21_S12FocalPlanePixelsR21_S20FocalPlanePixelsR21_S21FocalPlanePixelsR21_S22FocalPlanePixelsR22_S00FocalPlanePixelsR22_S01FocalPlanePixelsR22_S02FocalPlanePixelsR22_S10FocalPlanePixelsR22_S11FocalPlanePixelsR22_S12FocalPlanePixelsR22_S20FocalPlanePixelsR22_S21FocalPlanePixelsR22_S22FocalPlanePixelsR23_S00FocalPlanePixelsR23_S01FocalPlanePixelsR23_S02FocalPlanePixelsR23_S10FocalPlanePixelsR23_S11FocalPlanePixelsR23_S12FocalPlanePixelsR23_S20FocalPlanePixelsR23_S21FocalPlanePixelsR23_S22FocalPlanePixelsR24_S00FocalPlanePixelsR24_S01FocalPlanePixelsR24_S02FocalPlanePixelsR24_S10FocalPlanePixelsR24_S11FocalPlanePixelsR24_S12FocalPlanePixelsR24_S20FocalPlanePixelsR24_S21FocalPlanePixelsR24_S22FocalPlanePixelsR30_S00FocalPlanePixelsR30_S01FocalPlanePixelsR30_S02FocalPlanePixelsR30_S10FocalPlanePixelsR30_S11FocalPlanePixelsR30_S12FocalPlanePixelsR30_S20FocalPlanePixelsR30_S21FocalPlanePixelsR30_S22FocalPlanePixelsR31_S00FocalPlanePixelsR31_S01FocalPlanePixelsR31_S02FocalPlanePixelsR31_S10FocalPlanePixelsR31_S11FocalPlanePixelsR31_S12FocalPlanePixelsR31_S20FocalPlanePixelsR31_S21FocalPlanePixelsR31_S22FocalPlanePixelsR32_S00FocalPlanePixelsR32_S01FocalPlanePixelsR32_S02FocalPlanePixelsR32_S10FocalPlanePixelsR32_S11FocalPlanePixelsR32_S12FocalPlanePixelsR32_S20FocalPlanePixelsR32_S21FocalPlanePixelsR32_S22FocalPlanePixelsR33_S00FocalPlanePixelsR33_S01FocalPlanePixelsR33_S02FocalPlanePixelsR33_S10FocalPlanePixelsR33_S11FocalPlanePixelsR33_S12FocalPlanePixelsR33_S20FocalPlanePixelsR33_S21FocalPlanePixelsR33_S22FocalPlanePixelsR34_S00FocalPlanePixelsR34_S01FocalPlanePixelsR34_S02FocalPlanePixelsR34_S10FocalPlanePixelsR34_S11FocalPlanePixelsR34_S12FocalPlanePixelsR34_S20FocalPlanePixelsR34_S21FocalPlanePixelsR34_S22FocalPlanePixelsR41_S00FocalPlanePixelsR41_S01FocalPlanePixelsR41_S02FocalPlanePixelsR41_S10FocalPlanePixelsR41_S11FocalPlanePixelsR41_S12FocalPlanePixelsR41_S20FocalPlanePixelsR41_S21FocalPlanePixelsR41_S22FocalPlanePixelsR42_S00FocalPlanePixelsR42_S01FocalPlanePixelsR42_S02FocalPlanePixelsR42_S10FocalPlanePixelsR42_S11FocalPlanePixelsR42_S12FocalPlanePixelsR42_S20FocalPlanePixelsR42_S21FocalPlanePixelsR42_S22FocalPlanePixelsR43_S00FocalPlanePixelsR43_S01FocalPlanePixelsR43_S02FocalPlanePixelsR43_S10FocalPlanePixelsR43_S11FocalPlanePixelsR43_S12FocalPlanePixelsR43_S20FocalPlanePixelsR43_S21FocalPlanePixelsR43_S22FocalPlanePixelsR00_SG0FocalPlanePixelsR00_SG1FocalPlanePixelsR00_SW0FocalPlanePixelsR00_SW1FocalPlanePixelsR04_SG0FocalPlanePixelsR04_SG1FocalPlanePixelsR04_SW0FocalPlanePixelsR04_SW1FocalPlanePixelsR40_SG0FocalPlanePixelsR40_SG1FocalPlanePixelsR40_SW0FocalPlanePixelsR40_SW1FocalPlanePixelsR44_SG0FocalPlanePixelsR44_SG1FocalPlanePixelsR44_SW0FocalPlanePixelsR44_SW1PixelsR23_S10TanPixelsR23_S10PixelsR12_S20TanPixelsR12_S20PixelsR23_S11TanPixelsR23_S11PixelsR01_S20TanPixelsR01_S20PixelsR23_S12TanPixelsR23_S12PixelsR12_S21TanPixelsR12_S21PixelsR23_S20TanPixelsR23_S20PixelsR03_S22TanPixelsR03_S22PixelsR23_S21TanPixelsR23_S21PixelsR12_S22TanPixelsR12_S22PixelsR23_S22TanPixelsR23_S22PixelsR02_S11TanPixelsR02_S11PixelsR24_S00TanPixelsR24_S00PixelsR13_S00TanPixelsR13_S00PixelsR24_S01TanPixelsR24_S01PixelsR10_S00TanPixelsR10_S00PixelsR24_S02TanPixelsR24_S02PixelsR13_S01TanPixelsR13_S01PixelsR24_S10TanPixelsR24_S10PixelsR01_S10TanPixelsR01_S10PixelsR24_S11TanPixelsR24_S11PixelsR13_S02TanPixelsR13_S02PixelsR24_S12TanPixelsR24_S12PixelsR10_S01TanPixelsR10_S01PixelsR24_S20TanPixelsR24_S20PixelsR13_S10TanPixelsR13_S10PixelsR24_S21TanPixelsR24_S21PixelsR02_S12TanPixelsR02_S12PixelsR24_S22TanPixelsR24_S22PixelsR13_S11TanPixelsR13_S11PixelsR30_S00TanPixelsR30_S00PixelsR10_S02TanPixelsR10_S02PixelsR30_S01TanPixelsR30_S01PixelsR13_S12TanPixelsR13_S12PixelsR30_S02TanPixelsR30_S02PixelsR01_S21TanPixelsR01_S21PixelsR30_S10TanPixelsR30_S10PixelsR13_S20TanPixelsR13_S20PixelsR30_S11TanPixelsR30_S11PixelsR10_S10TanPixelsR10_S10PixelsR30_S12TanPixelsR30_S12PixelsR13_S21TanPixelsR13_S21PixelsR30_S20TanPixelsR30_S20PixelsR02_S20TanPixelsR02_S20PixelsR30_S21TanPixelsR30_S21PixelsR13_S22TanPixelsR13_S22PixelsR30_S22TanPixelsR30_S22PixelsR10_S11TanPixelsR10_S11PixelsR31_S00TanPixelsR31_S00PixelsR14_S00TanPixelsR14_S00PixelsR31_S01TanPixelsR31_S01PixelsR01_S00TanPixelsR01_S00PixelsR31_S02TanPixelsR31_S02PixelsR14_S01TanPixelsR14_S01PixelsR31_S10TanPixelsR31_S10PixelsR10_S12TanPixelsR10_S12PixelsR31_S11TanPixelsR31_S11PixelsR14_S02TanPixelsR14_S02PixelsR31_S12TanPixelsR31_S12PixelsR02_S21TanPixelsR02_S21PixelsR31_S20TanPixelsR31_S20PixelsR14_S10TanPixelsR14_S10PixelsR31_S21TanPixelsR31_S21PixelsR10_S20TanPixelsR10_S20PixelsR31_S22TanPixelsR31_S22PixelsR14_S11TanPixelsR14_S11PixelsR32_S00TanPixelsR32_S00PixelsR01_S22TanPixelsR01_S22PixelsR32_S01TanPixelsR32_S01PixelsR14_S12TanPixelsR14_S12PixelsR32_S02TanPixelsR32_S02PixelsR10_S21TanPixelsR10_S21PixelsR32_S10TanPixelsR32_S10PixelsR14_S20TanPixelsR14_S20PixelsR32_S11TanPixelsR32_S11PixelsR02_S22TanPixelsR02_S22PixelsR32_S12TanPixelsR32_S12PixelsR14_S21TanPixelsR14_S21PixelsR32_S20TanPixelsR32_S20PixelsR10_S22TanPixelsR10_S22PixelsR32_S21TanPixelsR32_S21PixelsR14_S22TanPixelsR14_S22PixelsR32_S22TanPixelsR32_S22PixelsR01_S11TanPixelsR01_S11PixelsR33_S00TanPixelsR33_S00PixelsR20_S00TanPixelsR20_S00PixelsR33_S01TanPixelsR33_S01PixelsR11_S00TanPixelsR11_S00PixelsR33_S02TanPixelsR33_S02PixelsR20_S01TanPixelsR20_S01PixelsR33_S10TanPixelsR33_S10PixelsR03_S00TanPixelsR03_S00PixelsR33_S11TanPixelsR33_S11PixelsR20_S02TanPixelsR20_S02PixelsR33_S12TanPixelsR33_S12PixelsR11_S01TanPixelsR11_S01PixelsR33_S20TanPixelsR33_S20PixelsR20_S10TanPixelsR20_S10PixelsR33_S21TanPixelsR33_S21PixelsR02_S00TanPixelsR02_S00PixelsR33_S22TanPixelsR33_S22PixelsR20_S11TanPixelsR20_S11PixelsR34_S00TanPixelsR34_S00PixelsR11_S02TanPixelsR11_S02PixelsR34_S01TanPixelsR34_S01PixelsR20_S12TanPixelsR20_S12PixelsR34_S02TanPixelsR34_S02PixelsR03_S01TanPixelsR03_S01PixelsR34_S10TanPixelsR34_S10PixelsR20_S20TanPixelsR20_S20PixelsR34_S11TanPixelsR34_S11PixelsR11_S10TanPixelsR11_S10PixelsR34_S12TanPixelsR34_S12PixelsR20_S21TanPixelsR20_S21PixelsR34_S20TanPixelsR34_S20PixelsR01_S02TanPixelsR01_S02PixelsR34_S21TanPixelsR34_S21PixelsR20_S22TanPixelsR20_S22PixelsR34_S22TanPixelsR34_S22PixelsR11_S11TanPixelsR11_S11PixelsR41_S00TanPixelsR41_S00PixelsR21_S00TanPixelsR21_S00PixelsR41_S01TanPixelsR41_S01PixelsR03_S02TanPixelsR03_S02PixelsR41_S02TanPixelsR41_S02PixelsR21_S01TanPixelsR21_S01PixelsR41_S10TanPixelsR41_S10PixelsR11_S12TanPixelsR11_S12PixelsR41_S11TanPixelsR41_S11PixelsR21_S02TanPixelsR21_S02PixelsR41_S12TanPixelsR41_S12PixelsR02_S01TanPixelsR02_S01PixelsR41_S20TanPixelsR41_S20PixelsR21_S10TanPixelsR21_S10PixelsR41_S21TanPixelsR41_S21PixelsR11_S20TanPixelsR11_S20PixelsR41_S22TanPixelsR41_S22PixelsR21_S11TanPixelsR21_S11PixelsR42_S00TanPixelsR42_S00PixelsR03_S10TanPixelsR03_S10PixelsR42_S01TanPixelsR42_S01PixelsR21_S12TanPixelsR21_S12PixelsR42_S02TanPixelsR42_S02PixelsR11_S21TanPixelsR11_S21PixelsR42_S10TanPixelsR42_S10PixelsR21_S20TanPixelsR21_S20PixelsR42_S11TanPixelsR42_S11PixelsR01_S12TanPixelsR01_S12PixelsR42_S12TanPixelsR42_S12PixelsR21_S21TanPixelsR21_S21PixelsR42_S20TanPixelsR42_S20PixelsR11_S22TanPixelsR11_S22PixelsR42_S21TanPixelsR42_S21PixelsR21_S22TanPixelsR21_S22PixelsR42_S22TanPixelsR42_S22PixelsR03_S11TanPixelsR03_S11PixelsR43_S00TanPixelsR43_S00PixelsR22_S00TanPixelsR22_S00PixelsR43_S01TanPixelsR43_S01PixelsR12_S00TanPixelsR12_S00PixelsR43_S02TanPixelsR43_S02PixelsR22_S01TanPixelsR22_S01PixelsR43_S10TanPixelsR43_S10PixelsR02_S02TanPixelsR02_S02PixelsR43_S11TanPixelsR43_S11PixelsR22_S02TanPixelsR22_S02PixelsR43_S12TanPixelsR43_S12PixelsR12_S01TanPixelsR12_S01PixelsR43_S20TanPixelsR43_S20PixelsR22_S10TanPixelsR22_S10PixelsR43_S21TanPixelsR43_S21PixelsR03_S12TanPixelsR03_S12PixelsR43_S22TanPixelsR43_S22PixelsR22_S11TanPixelsR22_S11PixelsR00_SG0TanPixelsR00_SG0PixelsR12_S02TanPixelsR12_S02PixelsR00_SG1TanPixelsR00_SG1PixelsR22_S12TanPixelsR22_S12PixelsR00_SW0TanPixelsR00_SW0PixelsR01_S01TanPixelsR01_S01PixelsR00_SW1TanPixelsR00_SW1PixelsR22_S20TanPixelsR22_S20PixelsR04_SG0TanPixelsR04_SG0PixelsR12_S10TanPixelsR12_S10PixelsR04_SG1TanPixelsR04_SG1PixelsR22_S21TanPixelsR22_S21PixelsR04_SW0TanPixelsR04_SW0PixelsR03_S20TanPixelsR03_S20PixelsR04_SW1TanPixelsR04_SW1PixelsR22_S22TanPixelsR22_S22PixelsR40_SG0TanPixelsR40_SG0PixelsR12_S11TanPixelsR12_S11PixelsR40_SG1TanPixelsR40_SG1PixelsR23_S00TanPixelsR23_S00PixelsR40_SW0TanPixelsR40_SW0PixelsR02_S10TanPixelsR02_S10PixelsR40_SW1TanPixelsR40_SW1PixelsR23_S01TanPixelsR23_S01PixelsR44_SG0TanPixelsR44_SG0PixelsR12_S12TanPixelsR12_S12PixelsR44_SG1TanPixelsR44_SG1PixelsR23_S02TanPixelsR23_S02PixelsR44_SW0TanPixelsR44_SW0PixelsR03_S21TanPixelsR03_S21PixelsR44_SW1TanPixelsR44_SW1XTENSION= 'BINTABLE' / binary table extension BITPIX = 8 / 8-bit bytes NAXIS = 2 / 2-dimensional binary table NAXIS1 = 16 / width of table in bytes NAXIS2 = 411 / number of rows in table PCOUNT = 590293 / size of special data area GCOUNT = 1 / one data group (required keyword) TFIELDS = 1 / number of fields in each row TTYPE1 = 'bytes ' / label for field TFORM1 = '1QB(3410)' / format of field TDOC1 = 'a bytestring containing the output of Transform.writeString' TCCLS1 = 'Array ' / Field template used by lsst.afw.table EXTTYPE = 'ARCHIVE_DATA' AR_CATN = 4 / # of this catalog relative to the start of thisAR_NAME = 'TransformPoint2ToPoint2' / Class name for objects stored here EXTNAME = 'TransformPoint2ToPoint2' HIERARCH AFW_TABLE_VERSION = 3 END EE|9 +p - d VH|8l(_S !]"%"#$}%:%&'|(D) )*+b,,-._/&/01{2B234v5=6678Y9 9:;T<<=>t?<@@ABYC!CDEyFAG GHI^J&JKL}MEN NOP`Q'QRS|TCU +UVW\X#XYZx[?\\]^X__`aib%bcdoe6efghGiijkMllmnho$opqbr)rst{uAuvwrx8xyz{P||}~G UEy5h$WDu0jaHdc1_^]cupH +[y +9 +P +:] +P֗ +C +O* +8y +D +E +D: +P~ +D( +[3 +O=m +:G +OQ +P\E +Pf +Ep +[{* +P +[ +:0 +Dj +[ +O +PX +Oͨ +P +OG +: +O +P +D o +: +E +E*2 +E4w +:> +:H +:S0 +[]j +9g +[q +:|Y +P +: +O +Pl +O +: +OE +[Δ +E +:4 +En +[ +E +E S +[ +P +[+C +:5 +[? +[J3 +CT +:^ +Mi +[sX +O} +: +9< +:u +C +E +E7 +E| +O +: +YJ +E +[ +EC +O +P +D"' +[,k +D6 +PA -  - - - -̞ -׀ -k -X -E -' -  -$ . -9 -D -O -Z e -p -{ - - -z -\ -T 6 9 -< -4 -, - - -  - -* -5 -@ -K -V -a ld -wg -T -@ -8 - -   - - - - - - -x Z -&] -1? -<6 -G -R \ -g -r -}  - - -w d -g -T -A -" - - - - - -! -, -7 -B -Mv -Xm -cZ -nE -y2 -) - - - - - -ż М -۝ - - -n -Y 9 : +4 -67 A5 -L8 -W -a -l -w -  -  -  -t -k c d -S J -  - - 8  F - Q - \ - g - r - }1 TransformPoint2ToPoint2 Begin CmpMap +EKZ +EU +:_ +Pj +:tn +[~ +[ +P^ +P +9 +P7 +P +D +[ +Ov +P +O +Ed +: +D +E' +[#l +E- +D8 +PBP +:L +[V +Da5 +[ky +[u +:/ +Oi +: +8 +:* +Od +: +[ +:H +O܂ +: +E +:P +[ +: +E +:$d +[. +98 +PC2 +EM +[W +Eb" +Elg +9v +O +E4 +Ey +E +O +9R +E +E +O +Ed +O +E +C= +D +O +8 +M%K +E/ +E9 +ED" +ONg +8X +Yb +EmG +Ow +E +C +8c +Y R +[F +V¡ +[ +=R +: +7 +C +TC +O + M +M"3 L, +E9 ED +OQV +P[ +Ye GpN +O} . +D JV +D M +[1 +PΌ +D +7 +EW +91 TransformPoint2ToPoint2 Begin CmpMap Nin = 2 IsSimp = 1 IsA Mapping @@ -524,17 +552,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -2785,17 +2809,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -2871,17 +2891,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -2957,17 +2973,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3043,17 +3055,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3129,17 +3137,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3215,17 +3219,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3301,17 +3301,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3387,17 +3383,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3473,17 +3465,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3559,17 +3547,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3645,17 +3629,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3731,17 +3711,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3817,17 +3793,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3903,17 +3875,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -3989,17 +3957,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4019,10 +3983,10 @@ ws Begin WinMap Nin = 2 IsA Mapping - Sft1 = -23352.5 - Scl1 = 1031021.5513366326 + Sft1 = -23352.500000000004 + Scl1 = 1031021.5513218425 Sft2 = 6226.5 - Scl2 = 1031021.5513366326 + Scl2 = 1031021.5513218425 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -4075,17 +4039,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4161,17 +4121,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4247,17 +4203,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4333,17 +4285,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4419,17 +4367,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4505,17 +4449,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4535,10 +4475,10 @@ ws Begin WinMap Nin = 2 IsA Mapping - Sft1 = -23352.5 - Scl1 = 1031021.5513366326 + Sft1 = -23352.500000000004 + Scl1 = 1031021.5513218425 Sft2 = 2001.4999999999998 - Scl2 = 1031021.5513366326 + Scl2 = 1031021.5513218425 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -4591,17 +4531,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4677,17 +4613,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4763,17 +4695,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4849,17 +4777,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -4935,17 +4859,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5021,17 +4941,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5051,10 +4967,10 @@ ws Begin WinMap Nin = 2 IsA Mapping - Sft1 = -23352.5 - Scl1 = 1031021.5513366326 + Sft1 = -23352.500000000004 + Scl1 = 1031021.5513218425 Sft2 = -2223.5 - Scl2 = 1031021.5513366326 + Scl2 = 1031021.5513218425 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -5107,17 +5023,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5193,17 +5105,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5279,17 +5187,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5365,17 +5269,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5451,17 +5351,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5537,17 +5433,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5623,17 +5515,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5709,17 +5597,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5795,17 +5679,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5881,17 +5761,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -5967,17 +5843,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6053,17 +5925,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6139,17 +6007,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6225,17 +6089,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6311,17 +6171,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6397,17 +6253,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6483,17 +6335,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6569,17 +6417,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6655,17 +6499,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6741,17 +6581,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6827,17 +6663,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6913,17 +6745,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -6999,17 +6827,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7085,17 +6909,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7171,17 +6991,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7257,17 +7073,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7343,17 +7155,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7373,10 +7181,10 @@ ws Begin WinMap Nin = 2 IsA Mapping - Sft1 = -23352.5 - Scl1 = 1031021.5513366326 + Sft1 = -23352.500000000004 + Scl1 = 1031021.5513218425 Sft2 = 18926.499999999996 - Scl2 = 1031021.5513366326 + Scl2 = 1031021.5513218425 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -7429,17 +7237,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7515,17 +7319,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7601,17 +7401,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7687,17 +7483,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7773,17 +7565,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7859,17 +7647,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -7945,17 +7729,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8031,17 +7811,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8117,17 +7893,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8203,17 +7975,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8289,17 +8057,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8375,17 +8139,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8405,10 +8165,10 @@ ws Begin WinMap Nin = 2 IsA Mapping - Sft1 = -23352.5 - Scl1 = 1031021.5513366326 + Sft1 = -23352.500000000004 + Scl1 = 1031021.5513218425 Sft2 = 14701.499999999998 - Scl2 = 1031021.5513366326 + Scl2 = 1031021.5513218425 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -8461,17 +8221,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8547,17 +8303,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8633,17 +8385,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8719,17 +8467,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8805,17 +8549,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8891,17 +8631,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -8977,17 +8713,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9063,17 +8795,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9149,17 +8877,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9235,17 +8959,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9321,17 +9041,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9407,17 +9123,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9437,10 +9149,10 @@ ws Begin WinMap Nin = 2 IsA Mapping - Sft1 = -23352.5 - Scl1 = 1031021.5513366326 + Sft1 = -23352.500000000004 + Scl1 = 1031021.5513218425 Sft2 = 10476.5 - Scl2 = 1031021.5513366326 + Scl2 = 1031021.5513218425 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -9493,17 +9205,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9579,17 +9287,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9665,17 +9369,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9751,17 +9451,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9837,17 +9533,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -9923,17 +9615,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10009,17 +9697,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10095,17 +9779,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10181,17 +9861,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10267,17 +9943,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10353,17 +10025,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10439,17 +10107,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10525,17 +10189,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10611,17 +10271,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10697,17 +10353,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10783,17 +10435,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10869,17 +10517,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -10955,17 +10599,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11041,17 +10681,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11127,17 +10763,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11213,17 +10845,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11299,17 +10927,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11385,17 +11009,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11471,17 +11091,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11557,17 +11173,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11643,17 +11255,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11729,17 +11337,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11759,10 +11363,10 @@ ws Begin WinMap Nin = 2 IsA Mapping - Sft1 = -23352.5 - Scl1 = 1031021.5513366326 + Sft1 = -23352.500000000004 + Scl1 = 1031021.5513218425 Sft2 = -6473.5 - Scl2 = 1031021.5513366326 + Scl2 = 1031021.5513218425 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -11815,17 +11419,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11901,17 +11501,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -11987,17 +11583,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12073,17 +11665,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12159,17 +11747,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12245,17 +11829,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12275,10 +11855,10 @@ ws Begin WinMap Nin = 2 IsA Mapping - Sft1 = -23352.5 - Scl1 = 1031021.5513366326 + Sft1 = -23352.500000000004 + Scl1 = 1031021.5513218425 Sft2 = -10698.5 - Scl2 = 1031021.5513366326 + Scl2 = 1031021.5513218425 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -12331,17 +11911,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12417,17 +11993,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12503,17 +12075,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12589,17 +12157,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12675,17 +12239,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12761,17 +12321,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12791,10 +12347,10 @@ ws Begin WinMap Nin = 2 IsA Mapping - Sft1 = -23352.5 - Scl1 = 1031021.5513366326 + Sft1 = -23352.500000000004 + Scl1 = 1031021.5513218425 Sft2 = -14923.500000000002 - Scl2 = 1031021.5513366326 + Scl2 = 1031021.5513218425 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -12847,17 +12403,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -12933,17 +12485,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13019,17 +12567,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13105,17 +12649,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13191,17 +12731,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13277,17 +12813,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13363,17 +12895,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13449,17 +12977,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13535,17 +13059,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13621,17 +13141,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13707,17 +13223,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13793,17 +13305,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13879,17 +13387,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -13965,17 +13469,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14051,17 +13551,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14137,17 +13633,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14223,17 +13715,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14309,17 +13797,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14395,17 +13879,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14481,17 +13961,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14567,17 +14043,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14653,17 +14125,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14739,17 +14207,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14825,17 +14289,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14911,17 +14371,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -14997,17 +14453,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15083,17 +14535,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15169,17 +14617,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15255,17 +14699,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15341,17 +14781,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15427,17 +14863,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15513,17 +14945,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15599,17 +15027,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15685,17 +15109,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15771,17 +15191,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15857,17 +15273,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -15943,17 +15355,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16029,17 +15437,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16115,17 +15519,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16201,17 +15601,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16287,17 +15683,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16373,17 +15765,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16406,7 +15794,7 @@ ws Sft1 = -10663.499999999998 Scl1 = 1031021.5514134717 Sft2 = -19174.5 - Scl2 = 1031021.5513358614 + Scl2 = 1031021.551320507 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -16459,17 +15847,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16545,17 +15929,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16631,17 +16011,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16717,17 +16093,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16803,17 +16175,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16889,17 +16257,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -16922,7 +16286,7 @@ ws Sft1 = -10663.499999999998 Scl1 = 1031021.5514134717 Sft2 = -23399.5 - Scl2 = 1031021.5513366421 + Scl2 = 1031021.5513466832 End WinMap End CmpMap 1 TransformPoint2ToPoint2 Begin CmpMap @@ -16975,17 +16339,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17061,17 +16421,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17147,17 +16503,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17233,17 +16585,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17319,17 +16667,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17405,17 +16749,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17491,17 +16831,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17577,17 +16913,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17663,17 +16995,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17755,17 +17083,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17859,17 +17183,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -17945,17 +17265,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18031,17 +17347,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18117,17 +17429,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18203,17 +17511,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18289,17 +17593,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18375,17 +17675,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18461,17 +17757,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18547,17 +17839,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18639,17 +17927,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18743,17 +18027,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18835,17 +18115,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -18939,17 +18215,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19031,17 +18303,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19135,17 +18403,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19221,17 +18485,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19307,17 +18567,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19399,17 +18655,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19503,17 +18755,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19595,17 +18843,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19699,17 +18943,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19791,17 +19031,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19895,17 +19131,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -19987,17 +19219,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -20091,17 +19319,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -20177,17 +19401,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -20263,17 +19483,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -20349,17 +19565,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -20435,17 +19647,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -20521,17 +19729,13 @@ ws Nin = 1 IsA Mapping MPF1 = 5 - NCF1 = 5 + NCF1 = 3 CF1 = 9.6991183036463177e-05 - CF2 = 0 - CF3 = -8.0862906301141211e-13 - CF4 = 0 - CF5 = -1.3713569596777536e-19 + CF2 = -8.0862906301141211e-13 + CF3 = -1.3713569596777536e-19 PF1 = 1 - PF2 = 2 - PF3 = 3 - PF4 = 4 - PF5 = 5 + PF2 = 3 + PF3 = 5 IterInv = 1 NiterInv = 30 TolInv = 1e-08 @@ -20557,7 +19761,7 @@ ws Scl2 = -1031021.5513366547 End WinMap End CmpMap -XTENSION= 'BINTABLE' / binary table extension BITPIX = 8 / 8-bit bytes NAXIS = 2 / 2-dimensional binary table NAXIS1 = 221 / width of table in bytes NAXIS2 = 3216 / number of rows in table PCOUNT = 106128 / size of special data area GCOUNT = 1 / one data group (required keyword) TFIELDS = 38 / number of fields in each row TTYPE1 = 'flags ' / bits for all Flag fields; see also TFLAGn TFORM1 = '3X ' / format of field FLAGCOL = 1 / Column number for the bitflags. TTYPE2 = 'name ' / label for field TFORM2 = '1QA(3) ' / format of field TDOC2 = 'name of amplifier location in camera' TCCLS2 = 'String ' / Field template used by lsst.afw.table TTYPE3 = 'bbox_min_x' / label for field TFORM3 = '1J ' / format of field TDOC3 = 'bbox of amplifier image data on assembled image, min point' TUNIT3 = 'pixel ' TCCLS3 = 'Scalar ' / Field template used by lsst.afw.table TTYPE4 = 'bbox_min_y' / label for field TFORM4 = '1J ' / format of field TDOC4 = 'bbox of amplifier image data on assembled image, min point' TUNIT4 = 'pixel ' TCCLS4 = 'Scalar ' / Field template used by lsst.afw.table TTYPE5 = 'bbox_extent_x' / label for field TFORM5 = '1J ' / format of field TDOC5 = 'bbox of amplifier image data on assembled image, extent' TUNIT5 = 'pixel ' TCCLS5 = 'Scalar ' / Field template used by lsst.afw.table TTYPE6 = 'bbox_extent_y' / label for field TFORM6 = '1J ' / format of field TDOC6 = 'bbox of amplifier image data on assembled image, extent' TUNIT6 = 'pixel ' TCCLS6 = 'Scalar ' / Field template used by lsst.afw.table TTYPE7 = 'gain ' / label for field TFORM7 = '1D ' / format of field TDOC7 = 'amplifier gain' TUNIT7 = 'electron adu^-1' TCCLS7 = 'Scalar ' / Field template used by lsst.afw.table TTYPE8 = 'saturation' / label for field TFORM8 = '1D ' / format of field TDOC8 = 'level above which pixels are considered saturated; use `nan` if no &'CONTINUE 'such level applies' TUNIT8 = 'adu ' TCCLS8 = 'Scalar ' / Field template used by lsst.afw.table TTYPE9 = 'suspectlevel' / label for field TFORM9 = '1D ' / format of field TDOC9 = 'level above which pixels are considered suspicious, meaning they ma&'CONTINUE 'y be affected by unknown systematics; for example if non-linearity &'CONTINUE 'corrections above a certain level are unstable then that would be a&'CONTINUE ' useful value for suspectLevel; use `nan` if no such level applies' TUNIT9 = 'adu ' TCCLS9 = 'Scalar ' / Field template used by lsst.afw.table TTYPE10 = 'readnoise' / label for field TFORM10 = '1D ' / format of field TDOC10 = 'amplifier read noise' TUNIT10 = 'electron' TCCLS10 = 'Scalar ' / Field template used by lsst.afw.table TTYPE11 = 'readoutcorner' / label for field TFORM11 = '1J ' / format of field TDOC11 = 'readout corner, in the frame of the assembled image' TCCLS11 = 'Scalar ' / Field template used by lsst.afw.table TTYPE12 = 'linearity_coeffs' / label for field TFORM12 = '1QD(2) ' / format of field TDOC12 = 'coefficients for linearity fit up to cubic' TCCLS12 = 'Array ' / Field template used by lsst.afw.table TTYPE13 = 'linearity_type' / label for field TFORM13 = '1QA(12) ' / format of field TDOC13 = 'type of linearity model' TCCLS13 = 'String ' / Field template used by lsst.afw.table TFLAG1 = 'hasrawinfo' TFDOC1 = 'is raw amplifier information available (e.g. untrimmed bounding box&'CONTINUE 'es)?' TTYPE14 = 'raw_bbox_min_x' / label for field TFORM14 = '1J ' / format of field TDOC14 = 'entire amplifier bbox on raw image, min point' TUNIT14 = 'pixel ' TCCLS14 = 'Scalar ' / Field template used by lsst.afw.table TTYPE15 = 'raw_bbox_min_y' / label for field TFORM15 = '1J ' / format of field TDOC15 = 'entire amplifier bbox on raw image, min point' TUNIT15 = 'pixel ' TCCLS15 = 'Scalar ' / Field template used by lsst.afw.table TTYPE16 = 'raw_bbox_extent_x' / label for field TFORM16 = '1J ' / format of field TDOC16 = 'entire amplifier bbox on raw image, extent' TUNIT16 = 'pixel ' TCCLS16 = 'Scalar ' / Field template used by lsst.afw.table TTYPE17 = 'raw_bbox_extent_y' / label for field TFORM17 = '1J ' / format of field TDOC17 = 'entire amplifier bbox on raw image, extent' TUNIT17 = 'pixel ' TCCLS17 = 'Scalar ' / Field template used by lsst.afw.table TTYPE18 = 'raw_databbox_min_x' / label for field TFORM18 = '1J ' / format of field TDOC18 = 'image data bbox on raw image, min point' TUNIT18 = 'pixel ' TCCLS18 = 'Scalar ' / Field template used by lsst.afw.table TTYPE19 = 'raw_databbox_min_y' / label for field TFORM19 = '1J ' / format of field TDOC19 = 'image data bbox on raw image, min point' TUNIT19 = 'pixel ' TCCLS19 = 'Scalar ' / Field template used by lsst.afw.table TTYPE20 = 'raw_databbox_extent_x' / label for field TFORM20 = '1J ' / format of field TDOC20 = 'image data bbox on raw image, extent' TUNIT20 = 'pixel ' TCCLS20 = 'Scalar ' / Field template used by lsst.afw.table TTYPE21 = 'raw_databbox_extent_y' / label for field TFORM21 = '1J ' / format of field TDOC21 = 'image data bbox on raw image, extent' TUNIT21 = 'pixel ' TCCLS21 = 'Scalar ' / Field template used by lsst.afw.table TFLAG2 = 'raw_flip_x' TFDOC2 = 'flip row order to make assembled image?' TFLAG3 = 'raw_flip_y' TFDOC3 = 'flip column order to make an assembled image?' TTYPE22 = 'raw_xyoffset_x' / label for field TFORM22 = '1J ' / format of field TDOC22 = 'offset for assembling a raw CCD image: desired xy0 - raw xy0; 0,0 i&'CONTINUE 'f raw data comes assembled' TUNIT22 = 'pixel ' TCCLS22 = 'Scalar ' / Field template used by lsst.afw.table TTYPE23 = 'raw_xyoffset_y' / label for field TFORM23 = '1J ' / format of field TDOC23 = 'offset for assembling a raw CCD image: desired xy0 - raw xy0; 0,0 i&'CONTINUE 'f raw data comes assembled' TUNIT23 = 'pixel ' TCCLS23 = 'Scalar ' / Field template used by lsst.afw.table TTYPE24 = 'raw_horizontaloverscanbbox_min_x' / label for field TFORM24 = '1J ' / format of field TDOC24 = 'usable horizontal overscan bbox on raw image, min point' TUNIT24 = 'pixel ' TCCLS24 = 'Scalar ' / Field template used by lsst.afw.table TTYPE25 = 'raw_horizontaloverscanbbox_min_y' / label for field TFORM25 = '1J ' / format of field TDOC25 = 'usable horizontal overscan bbox on raw image, min point' TUNIT25 = 'pixel ' TCCLS25 = 'Scalar ' / Field template used by lsst.afw.table TTYPE26 = 'raw_horizontaloverscanbbox_extent_x' / label for field TFORM26 = '1J ' / format of field TDOC26 = 'usable horizontal overscan bbox on raw image, extent' TUNIT26 = 'pixel ' TCCLS26 = 'Scalar ' / Field template used by lsst.afw.table TTYPE27 = 'raw_horizontaloverscanbbox_extent_y' / label for field TFORM27 = '1J ' / format of field TDOC27 = 'usable horizontal overscan bbox on raw image, extent' TUNIT27 = 'pixel ' TCCLS27 = 'Scalar ' / Field template used by lsst.afw.table TTYPE28 = 'raw_verticaloverscanbbox_min_x' / label for field TFORM28 = '1J ' / format of field TDOC28 = 'usable vertical overscan region raw image, min point' TUNIT28 = 'pixel ' TCCLS28 = 'Scalar ' / Field template used by lsst.afw.table TTYPE29 = 'raw_verticaloverscanbbox_min_y' / label for field TFORM29 = '1J ' / format of field TDOC29 = 'usable vertical overscan region raw image, min point' TUNIT29 = 'pixel ' TCCLS29 = 'Scalar ' / Field template used by lsst.afw.table TTYPE30 = 'raw_verticaloverscanbbox_extent_x' / label for field TFORM30 = '1J ' / format of field TDOC30 = 'usable vertical overscan region raw image, extent' TUNIT30 = 'pixel ' TCCLS30 = 'Scalar ' / Field template used by lsst.afw.table TTYPE31 = 'raw_verticaloverscanbbox_extent_y' / label for field TFORM31 = '1J ' / format of field TDOC31 = 'usable vertical overscan region raw image, extent' TUNIT31 = 'pixel ' TCCLS31 = 'Scalar ' / Field template used by lsst.afw.table TTYPE32 = 'raw_prescanbbox_min_x' / label for field TFORM32 = '1J ' / format of field TDOC32 = 'usable (horizontal) prescan bbox on raw image, min point' TUNIT32 = 'pixel ' TCCLS32 = 'Scalar ' / Field template used by lsst.afw.table TTYPE33 = 'raw_prescanbbox_min_y' / label for field TFORM33 = '1J ' / format of field TDOC33 = 'usable (horizontal) prescan bbox on raw image, min point' TUNIT33 = 'pixel ' TCCLS33 = 'Scalar ' / Field template used by lsst.afw.table TTYPE34 = 'raw_prescanbbox_extent_x' / label for field TFORM34 = '1J ' / format of field TDOC34 = 'usable (horizontal) prescan bbox on raw image, extent' TUNIT34 = 'pixel ' TCCLS34 = 'Scalar ' / Field template used by lsst.afw.table TTYPE35 = 'raw_prescanbbox_extent_y' / label for field TFORM35 = '1J ' / format of field TDOC35 = 'usable (horizontal) prescan bbox on raw image, extent' TUNIT35 = 'pixel ' TCCLS35 = 'Scalar ' / Field template used by lsst.afw.table TTYPE36 = 'linearityThreshold' / label for field TFORM36 = '1D ' / format of field TDOC36 = 'Minimum ADU level to apply linearity.' TCCLS36 = 'Scalar ' / Field template used by lsst.afw.table TTYPE37 = 'linearityMaximum' / label for field TFORM37 = '1D ' / format of field TDOC37 = 'Maximum ADU level to apply linearity.' TCCLS37 = 'Scalar ' / Field template used by lsst.afw.table TTYPE38 = 'linearityUnits' / label for field TFORM38 = '1QA(2) ' / format of field TDOC38 = 'Input units for linearity relation.' TCCLS38 = 'String ' / Field template used by lsst.afw.table EXTTYPE = 'ARCHIVE_DATA' AR_CATN = 5 / # of this catalog relative to the start of thisEXTVER = 2 AR_NAME = 'Detector' / Class name for objects stored here EXTNAME = 'Detector' HIERARCH AFW_TABLE_VERSION = 3 END `?1'@@Q @@0ApH`!??G@tp@/w$ 4@@@0ApH@`B?6&-@B@EE U@@0ApHa`c?do@T@@Ff v@@0ApH`?Կ @`@Q @ @0ApH` ?yh@P@hr! @ @@0ApH` ?l5@@@DS @ @0ApH` ?Z[(A`@9XbM @@0ApH@ ?f{_J@ @>vȴ9X @@0ApH'@) ?ZFsB@e@j~, <@ @0ApHH@J ?4xB0@?P@-VM ]@ @@0ApHi@k? ٔ@P@zG{n ~@ @0ApH@?=@@Vu @@0ApH@?YUqK@@v @@0ApH@?Ms@`@ @@@0ApH@?rSn@@1&x @@0ApH`?쿱[W@`@I^5? #@@0ApH/`1?O"}@U@ I^5?4 D@@@0ApHP`R? +XTENSION= 'BINTABLE' / binary table extension BITPIX = 8 / 8-bit bytes NAXIS = 2 / 2-dimensional binary table NAXIS1 = 221 / width of table in bytes NAXIS2 = 3216 / number of rows in table PCOUNT = 106128 / size of special data area GCOUNT = 1 / one data group (required keyword) TFIELDS = 38 / number of fields in each row TTYPE1 = 'flags ' / bits for all Flag fields; see also TFLAGn TFORM1 = '3X ' / format of field FLAGCOL = 1 / Column number for the bitflags. TTYPE2 = 'name ' / label for field TFORM2 = '1QA(3) ' / format of field TDOC2 = 'name of amplifier location in camera' TCCLS2 = 'String ' / Field template used by lsst.afw.table TTYPE3 = 'bbox_min_x' / label for field TFORM3 = '1J ' / format of field TDOC3 = 'bbox of amplifier image data on assembled image, min point' TUNIT3 = 'pixel ' TCCLS3 = 'Scalar ' / Field template used by lsst.afw.table TTYPE4 = 'bbox_min_y' / label for field TFORM4 = '1J ' / format of field TDOC4 = 'bbox of amplifier image data on assembled image, min point' TUNIT4 = 'pixel ' TCCLS4 = 'Scalar ' / Field template used by lsst.afw.table TTYPE5 = 'bbox_extent_x' / label for field TFORM5 = '1J ' / format of field TDOC5 = 'bbox of amplifier image data on assembled image, extent' TUNIT5 = 'pixel ' TCCLS5 = 'Scalar ' / Field template used by lsst.afw.table TTYPE6 = 'bbox_extent_y' / label for field TFORM6 = '1J ' / format of field TDOC6 = 'bbox of amplifier image data on assembled image, extent' TUNIT6 = 'pixel ' TCCLS6 = 'Scalar ' / Field template used by lsst.afw.table TTYPE7 = 'gain ' / label for field TFORM7 = '1D ' / format of field TDOC7 = 'amplifier gain' TUNIT7 = 'electron adu^-1' TCCLS7 = 'Scalar ' / Field template used by lsst.afw.table TTYPE8 = 'saturation' / label for field TFORM8 = '1D ' / format of field TDOC8 = 'level above which pixels are considered saturated; use `nan` if no &'CONTINUE 'such level applies' TUNIT8 = 'adu ' TCCLS8 = 'Scalar ' / Field template used by lsst.afw.table TTYPE9 = 'suspectlevel' / label for field TFORM9 = '1D ' / format of field TDOC9 = 'level above which pixels are considered suspicious, meaning they ma&'CONTINUE 'y be affected by unknown systematics; for example if non-linearity &'CONTINUE 'corrections above a certain level are unstable then that would be a&'CONTINUE ' useful value for suspectLevel; use `nan` if no such level applies' TUNIT9 = 'adu ' TCCLS9 = 'Scalar ' / Field template used by lsst.afw.table TTYPE10 = 'readnoise' / label for field TFORM10 = '1D ' / format of field TDOC10 = 'amplifier read noise' TUNIT10 = 'electron' TCCLS10 = 'Scalar ' / Field template used by lsst.afw.table TTYPE11 = 'readoutcorner' / label for field TFORM11 = '1J ' / format of field TDOC11 = 'readout corner, in the frame of the assembled image' TCCLS11 = 'Scalar ' / Field template used by lsst.afw.table TTYPE12 = 'linearity_coeffs' / label for field TFORM12 = '1QD(2) ' / format of field TDOC12 = 'coefficients for linearity fit up to cubic' TCCLS12 = 'Array ' / Field template used by lsst.afw.table TTYPE13 = 'linearity_type' / label for field TFORM13 = '1QA(12) ' / format of field TDOC13 = 'type of linearity model' TCCLS13 = 'String ' / Field template used by lsst.afw.table TFLAG1 = 'hasrawinfo' TFDOC1 = 'is raw amplifier information available (e.g. untrimmed bounding box&'CONTINUE 'es)?' TTYPE14 = 'raw_bbox_min_x' / label for field TFORM14 = '1J ' / format of field TDOC14 = 'entire amplifier bbox on raw image, min point' TUNIT14 = 'pixel ' TCCLS14 = 'Scalar ' / Field template used by lsst.afw.table TTYPE15 = 'raw_bbox_min_y' / label for field TFORM15 = '1J ' / format of field TDOC15 = 'entire amplifier bbox on raw image, min point' TUNIT15 = 'pixel ' TCCLS15 = 'Scalar ' / Field template used by lsst.afw.table TTYPE16 = 'raw_bbox_extent_x' / label for field TFORM16 = '1J ' / format of field TDOC16 = 'entire amplifier bbox on raw image, extent' TUNIT16 = 'pixel ' TCCLS16 = 'Scalar ' / Field template used by lsst.afw.table TTYPE17 = 'raw_bbox_extent_y' / label for field TFORM17 = '1J ' / format of field TDOC17 = 'entire amplifier bbox on raw image, extent' TUNIT17 = 'pixel ' TCCLS17 = 'Scalar ' / Field template used by lsst.afw.table TTYPE18 = 'raw_databbox_min_x' / label for field TFORM18 = '1J ' / format of field TDOC18 = 'image data bbox on raw image, min point' TUNIT18 = 'pixel ' TCCLS18 = 'Scalar ' / Field template used by lsst.afw.table TTYPE19 = 'raw_databbox_min_y' / label for field TFORM19 = '1J ' / format of field TDOC19 = 'image data bbox on raw image, min point' TUNIT19 = 'pixel ' TCCLS19 = 'Scalar ' / Field template used by lsst.afw.table TTYPE20 = 'raw_databbox_extent_x' / label for field TFORM20 = '1J ' / format of field TDOC20 = 'image data bbox on raw image, extent' TUNIT20 = 'pixel ' TCCLS20 = 'Scalar ' / Field template used by lsst.afw.table TTYPE21 = 'raw_databbox_extent_y' / label for field TFORM21 = '1J ' / format of field TDOC21 = 'image data bbox on raw image, extent' TUNIT21 = 'pixel ' TCCLS21 = 'Scalar ' / Field template used by lsst.afw.table TFLAG2 = 'raw_flip_x' TFDOC2 = 'flip row order to make assembled image?' TFLAG3 = 'raw_flip_y' TFDOC3 = 'flip column order to make an assembled image?' TTYPE22 = 'raw_xyoffset_x' / label for field TFORM22 = '1J ' / format of field TDOC22 = 'offset for assembling a raw CCD image: desired xy0 - raw xy0; 0,0 i&'CONTINUE 'f raw data comes assembled' TUNIT22 = 'pixel ' TCCLS22 = 'Scalar ' / Field template used by lsst.afw.table TTYPE23 = 'raw_xyoffset_y' / label for field TFORM23 = '1J ' / format of field TDOC23 = 'offset for assembling a raw CCD image: desired xy0 - raw xy0; 0,0 i&'CONTINUE 'f raw data comes assembled' TUNIT23 = 'pixel ' TCCLS23 = 'Scalar ' / Field template used by lsst.afw.table TTYPE24 = 'raw_horizontaloverscanbbox_min_x' / label for field TFORM24 = '1J ' / format of field TDOC24 = 'usable horizontal overscan bbox on raw image, min point' TUNIT24 = 'pixel ' TCCLS24 = 'Scalar ' / Field template used by lsst.afw.table TTYPE25 = 'raw_horizontaloverscanbbox_min_y' / label for field TFORM25 = '1J ' / format of field TDOC25 = 'usable horizontal overscan bbox on raw image, min point' TUNIT25 = 'pixel ' TCCLS25 = 'Scalar ' / Field template used by lsst.afw.table TTYPE26 = 'raw_horizontaloverscanbbox_extent_x' / label for field TFORM26 = '1J ' / format of field TDOC26 = 'usable horizontal overscan bbox on raw image, extent' TUNIT26 = 'pixel ' TCCLS26 = 'Scalar ' / Field template used by lsst.afw.table TTYPE27 = 'raw_horizontaloverscanbbox_extent_y' / label for field TFORM27 = '1J ' / format of field TDOC27 = 'usable horizontal overscan bbox on raw image, extent' TUNIT27 = 'pixel ' TCCLS27 = 'Scalar ' / Field template used by lsst.afw.table TTYPE28 = 'raw_verticaloverscanbbox_min_x' / label for field TFORM28 = '1J ' / format of field TDOC28 = 'usable vertical overscan region raw image, min point' TUNIT28 = 'pixel ' TCCLS28 = 'Scalar ' / Field template used by lsst.afw.table TTYPE29 = 'raw_verticaloverscanbbox_min_y' / label for field TFORM29 = '1J ' / format of field TDOC29 = 'usable vertical overscan region raw image, min point' TUNIT29 = 'pixel ' TCCLS29 = 'Scalar ' / Field template used by lsst.afw.table TTYPE30 = 'raw_verticaloverscanbbox_extent_x' / label for field TFORM30 = '1J ' / format of field TDOC30 = 'usable vertical overscan region raw image, extent' TUNIT30 = 'pixel ' TCCLS30 = 'Scalar ' / Field template used by lsst.afw.table TTYPE31 = 'raw_verticaloverscanbbox_extent_y' / label for field TFORM31 = '1J ' / format of field TDOC31 = 'usable vertical overscan region raw image, extent' TUNIT31 = 'pixel ' TCCLS31 = 'Scalar ' / Field template used by lsst.afw.table TTYPE32 = 'raw_prescanbbox_min_x' / label for field TFORM32 = '1J ' / format of field TDOC32 = 'usable (horizontal) prescan bbox on raw image, min point' TUNIT32 = 'pixel ' TCCLS32 = 'Scalar ' / Field template used by lsst.afw.table TTYPE33 = 'raw_prescanbbox_min_y' / label for field TFORM33 = '1J ' / format of field TDOC33 = 'usable (horizontal) prescan bbox on raw image, min point' TUNIT33 = 'pixel ' TCCLS33 = 'Scalar ' / Field template used by lsst.afw.table TTYPE34 = 'raw_prescanbbox_extent_x' / label for field TFORM34 = '1J ' / format of field TDOC34 = 'usable (horizontal) prescan bbox on raw image, extent' TUNIT34 = 'pixel ' TCCLS34 = 'Scalar ' / Field template used by lsst.afw.table TTYPE35 = 'raw_prescanbbox_extent_y' / label for field TFORM35 = '1J ' / format of field TDOC35 = 'usable (horizontal) prescan bbox on raw image, extent' TUNIT35 = 'pixel ' TCCLS35 = 'Scalar ' / Field template used by lsst.afw.table TTYPE36 = 'linearityThreshold' / label for field TFORM36 = '1D ' / format of field TDOC36 = 'Minimum ADU level to apply linearity.' TCCLS36 = 'Scalar ' / Field template used by lsst.afw.table TTYPE37 = 'linearityMaximum' / label for field TFORM37 = '1D ' / format of field TDOC37 = 'Maximum ADU level to apply linearity.' TCCLS37 = 'Scalar ' / Field template used by lsst.afw.table TTYPE38 = 'linearityUnits' / label for field TFORM38 = '1QA(2) ' / format of field TDOC38 = 'Input units for linearity relation.' TCCLS38 = 'String ' / Field template used by lsst.afw.table EXTTYPE = 'ARCHIVE_DATA' AR_CATN = 5 / # of this catalog relative to the start of thisEXTVER = 2 AR_NAME = 'Detector' / Class name for objects stored here EXTNAME = 'Detector' HIERARCH AFW_TABLE_VERSION = 3 END `?1'@@Q @@0ApH`!??G@tp@/w$ 4@@@0ApH@`B?6&-@B@EE U@@0ApHa`c?do@T@@Ff v@@0ApH`?Կ @`@Q @ @0ApH` ?yh@P@hr! @ @@0ApH` ?l5@@@DS @ @0ApH` ?Z[(A`@9XbM @@0ApH@ ?f{_J@ @>vȴ9X @@0ApH'@) ?ZFsB@e@j~, <@ @0ApHH@J ?4xB0@?P@-VM ]@ @@0ApHi@k? ٔ@P@zG{n ~@ @0ApH@?=@@Vu @@0ApH@?YUqK@@v @@0ApH@?Ms@`@ @@@0ApH@?rSn@@1&x @@0ApH`?쿱[W@`@I^5? #@@0ApH/`1?O"}@U@ I^5?4 D@@@0ApHP`R? D @ @šU e@@0ApHq`s?!Z@@Qv @@0ApH`?]yЦ@@nP @ @0ApH` ?O"}@p@P`A7 @ @@0ApH` ?QX'@v@t @ @0ApH` ?@@ =q  @@0ApH@ ?]9@F@@O; +@@0ApH7@9 ?+U@t@,1&y< L@ @0ApHX@Z ?H@@Ƨ-] m@ @@0ApHy@{?*0@<@ȴ9X~ @ @0ApH@?K @@F @@0ApH@?A_E@s`@`A @@0ApH@?@@9XbM @@@0ApH@?xzNz@F@33333 @@0ApH` ?CA0P@5 @# 3@@0ApH?`A?%F diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/calibrateImage_config/calibrateImage_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeAssociateDiaSourceTiming_config/analyzeAssociateDiaSourceTiming_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/calibrateImage_config/calibrateImage_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeAssociateDiaSourceTiming_config/analyzeAssociateDiaSourceTiming_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/computeReliability_config/computeReliability_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeAssociatedDiaSourceTable_config/analyzeAssociatedDiaSourceTable_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/computeReliability_config/computeReliability_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeAssociatedDiaSourceTable_config/analyzeAssociatedDiaSourceTable_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/detectAndMeasureDiaSource_config/detectAndMeasureDiaSource_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeDiaSourceAssociationMetrics_config/analyzeDiaSourceAssociationMetrics_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/detectAndMeasureDiaSource_config/detectAndMeasureDiaSource_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeDiaSourceAssociationMetrics_config/analyzeDiaSourceAssociationMetrics_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/dia_source_schema/dia_source_schema_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.fits b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeDiaSourceDetectionMetrics_config/analyzeDiaSourceDetectionMetrics_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/dia_source_schema/dia_source_schema_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.fits rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeDiaSourceDetectionMetrics_config/analyzeDiaSourceDetectionMetrics_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/filterDiaSourcePostReliability_config/filterDiaSourcePostReliability_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeImageDifferenceMetrics_config/analyzeImageDifferenceMetrics_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/filterDiaSourcePostReliability_config/filterDiaSourcePostReliability_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeImageDifferenceMetrics_config/analyzeImageDifferenceMetrics_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/filterDiaSource_config/filterDiaSource_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzePreliminarySummaryStats_config/analyzePreliminarySummaryStats_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/filterDiaSource_config/filterDiaSource_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzePreliminarySummaryStats_config/analyzePreliminarySummaryStats_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/isr_config/isr_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeTrailedDiaSourceTable_config/analyzeTrailedDiaSourceTable_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/isr_config/isr_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/analyzeTrailedDiaSourceTable_config/analyzeTrailedDiaSourceTable_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.yaml b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/associateApdb_config/associateApdb_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.yaml rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/associateApdb_config/associateApdb_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/rewarpTemplate_config/rewarpTemplate_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/buildTemplate_config/buildTemplate_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/rewarpTemplate_config/rewarpTemplate_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/buildTemplate_config/buildTemplate_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/single_visit_star_schema/single_visit_star_schema_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.fits b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/calibrateImage_config/calibrateImage_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/single_visit_star_schema/single_visit_star_schema_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.fits rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/calibrateImage_config/calibrateImage_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/standardizeDiaSource_config/standardizeDiaSource_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/computeReliability_config/computeReliability_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/standardizeDiaSource_config/standardizeDiaSource_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/computeReliability_config/computeReliability_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/subtractImages_config/subtractImages_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/detectAndMeasureDiaSource_config/detectAndMeasureDiaSource_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ApPipe/pipelines-cf62e06-config-8acfde6/subtractImages_config/subtractImages_config_LSSTCam_prompt_output-2025-09-12_ApPipe_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/detectAndMeasureDiaSource_config/detectAndMeasureDiaSource_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ISR/pipelines-cf62e06-config-8acfde6/isr_config/isr_config_LSSTCam_prompt_output-2025-09-12_ISR_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/dia_source_schema/dia_source_schema_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.fits similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ISR/pipelines-cf62e06-config-8acfde6/isr_config/isr_config_LSSTCam_prompt_output-2025-09-12_ISR_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/dia_source_schema/dia_source_schema_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.fits diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ISR/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_ISR_pipelines-cf62e06-config-8acfde6.yaml b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/filterDiaSourcePostReliability_config/filterDiaSourcePostReliability_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/ISR/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_ISR_pipelines-cf62e06-config-8acfde6.yaml rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/filterDiaSourcePostReliability_config/filterDiaSourcePostReliability_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/MinPrep/pipelines-cf62e06-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_prompt_output-2025-09-12_MinPrep_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/filterDiaSource_config/filterDiaSource_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/MinPrep/pipelines-cf62e06-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_prompt_output-2025-09-12_MinPrep_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/filterDiaSource_config/filterDiaSource_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/MinPrep/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_MinPrep_pipelines-cf62e06-config-8acfde6.yaml b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/isr_config/isr_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/MinPrep/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_MinPrep_pipelines-cf62e06-config-8acfde6.yaml rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/isr_config/isr_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/NoPrep/pipelines-cf62e06-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_prompt_output-2025-09-12_NoPrep_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.yaml similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/NoPrep/pipelines-cf62e06-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_prompt_output-2025-09-12_NoPrep_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.yaml diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/NoPrep/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_NoPrep_pipelines-cf62e06-config-8acfde6.yaml b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/single_visit_star_schema/single_visit_star_schema_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.fits similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/NoPrep/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_NoPrep_pipelines-cf62e06-config-8acfde6.yaml rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/single_visit_star_schema/single_visit_star_schema_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.fits diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/Preprocess/pipelines-cf62e06-config-8acfde6/analyzeLoadDiaCatalogsMetrics_config/analyzeLoadDiaCatalogsMetrics_config_LSSTCam_prompt_output-2025-09-12_Preprocess_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/standardizeDiaSource_config/standardizeDiaSource_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/Preprocess/pipelines-cf62e06-config-8acfde6/analyzeLoadDiaCatalogsMetrics_config/analyzeLoadDiaCatalogsMetrics_config_LSSTCam_prompt_output-2025-09-12_Preprocess_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/standardizeDiaSource_config/standardizeDiaSource_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/Preprocess/pipelines-cf62e06-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_prompt_output-2025-09-12_Preprocess_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/subtractImages_config/subtractImages_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/Preprocess/pipelines-cf62e06-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_prompt_output-2025-09-12_Preprocess_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ApPipe/pipelines-e8bc8a9-config-8acfde6/subtractImages_config/subtractImages_config_LSSTCam_runs_prompt_20260401_ApPipe_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/Preprocess/pipelines-cf62e06-config-8acfde6/mpSkyEphemerisQuery_config/mpSkyEphemerisQuery_config_LSSTCam_prompt_output-2025-09-12_Preprocess_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ISR/pipelines-e8bc8a9-config-8acfde6/isr_config/isr_config_LSSTCam_runs_prompt_20260401_ISR_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/Preprocess/pipelines-cf62e06-config-8acfde6/mpSkyEphemerisQuery_config/mpSkyEphemerisQuery_config_LSSTCam_prompt_output-2025-09-12_Preprocess_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ISR/pipelines-e8bc8a9-config-8acfde6/isr_config/isr_config_LSSTCam_runs_prompt_20260401_ISR_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/Preprocess/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_Preprocess_pipelines-cf62e06-config-8acfde6.yaml b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/ISR/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_ISR_pipelines-e8bc8a9-config-8acfde6.yaml similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/Preprocess/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_Preprocess_pipelines-cf62e06-config-8acfde6.yaml rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/ISR/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_ISR_pipelines-e8bc8a9-config-8acfde6.yaml diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/SingleFrame/pipelines-cf62e06-config-8acfde6/calibrateImage_config/calibrateImage_config_LSSTCam_prompt_output-2025-09-12_SingleFrame_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/MinPrep/pipelines-e8bc8a9-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_runs_prompt_20260401_MinPrep_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/SingleFrame/pipelines-cf62e06-config-8acfde6/calibrateImage_config/calibrateImage_config_LSSTCam_prompt_output-2025-09-12_SingleFrame_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/MinPrep/pipelines-e8bc8a9-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_runs_prompt_20260401_MinPrep_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/SingleFrame/pipelines-cf62e06-config-8acfde6/isr_config/isr_config_LSSTCam_prompt_output-2025-09-12_SingleFrame_pipelines-cf62e06-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/MinPrep/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_MinPrep_pipelines-e8bc8a9-config-8acfde6.yaml similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/SingleFrame/pipelines-cf62e06-config-8acfde6/isr_config/isr_config_LSSTCam_prompt_output-2025-09-12_SingleFrame_pipelines-cf62e06-config-8acfde6.py rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/MinPrep/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_MinPrep_pipelines-e8bc8a9-config-8acfde6.yaml diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/SingleFrame/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_SingleFrame_pipelines-cf62e06-config-8acfde6.yaml b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/NoPrep/pipelines-e8bc8a9-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_runs_prompt_20260401_NoPrep_pipelines-e8bc8a9-config-8acfde6.py similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/SingleFrame/pipelines-cf62e06-config-8acfde6/packages/packages_LSSTCam_prompt_output-2025-09-12_SingleFrame_pipelines-cf62e06-config-8acfde6.yaml rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/NoPrep/pipelines-e8bc8a9-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_runs_prompt_20260401_NoPrep_pipelines-e8bc8a9-config-8acfde6.py diff --git a/tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/SingleFrame/pipelines-cf62e06-config-8acfde6/single_visit_star_schema/single_visit_star_schema_LSSTCam_prompt_output-2025-09-12_SingleFrame_pipelines-cf62e06-config-8acfde6.fits b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/NoPrep/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_NoPrep_pipelines-e8bc8a9-config-8acfde6.yaml similarity index 100% rename from tests/data/central_repo/LSSTCam/prompt/output-2025-09-12/SingleFrame/pipelines-cf62e06-config-8acfde6/single_visit_star_schema/single_visit_star_schema_LSSTCam_prompt_output-2025-09-12_SingleFrame_pipelines-cf62e06-config-8acfde6.fits rename to tests/data/central_repo/LSSTCam/runs/prompt/20260401/NoPrep/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_NoPrep_pipelines-e8bc8a9-config-8acfde6.yaml diff --git a/tests/data/central_repo/LSSTCam/runs/prompt/20260401/Preprocess/pipelines-e8bc8a9-config-8acfde6/analyzeLoadDiaCatalogsMetrics_config/analyzeLoadDiaCatalogsMetrics_config_LSSTCam_runs_prompt_20260401_Preprocess_pipelines-e8bc8a9-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/Preprocess/pipelines-e8bc8a9-config-8acfde6/analyzeLoadDiaCatalogsMetrics_config/analyzeLoadDiaCatalogsMetrics_config_LSSTCam_runs_prompt_20260401_Preprocess_pipelines-e8bc8a9-config-8acfde6.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/central_repo/LSSTCam/runs/prompt/20260401/Preprocess/pipelines-e8bc8a9-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_runs_prompt_20260401_Preprocess_pipelines-e8bc8a9-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/Preprocess/pipelines-e8bc8a9-config-8acfde6/loadDiaCatalogs_config/loadDiaCatalogs_config_LSSTCam_runs_prompt_20260401_Preprocess_pipelines-e8bc8a9-config-8acfde6.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/central_repo/LSSTCam/runs/prompt/20260401/Preprocess/pipelines-e8bc8a9-config-8acfde6/mpSkyEphemerisQuery_config/mpSkyEphemerisQuery_config_LSSTCam_runs_prompt_20260401_Preprocess_pipelines-e8bc8a9-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/Preprocess/pipelines-e8bc8a9-config-8acfde6/mpSkyEphemerisQuery_config/mpSkyEphemerisQuery_config_LSSTCam_runs_prompt_20260401_Preprocess_pipelines-e8bc8a9-config-8acfde6.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/central_repo/LSSTCam/runs/prompt/20260401/Preprocess/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_Preprocess_pipelines-e8bc8a9-config-8acfde6.yaml b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/Preprocess/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_Preprocess_pipelines-e8bc8a9-config-8acfde6.yaml new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/central_repo/LSSTCam/runs/prompt/20260401/SingleFrame/pipelines-e8bc8a9-config-8acfde6/calibrateImage_config/calibrateImage_config_LSSTCam_runs_prompt_20260401_SingleFrame_pipelines-e8bc8a9-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/SingleFrame/pipelines-e8bc8a9-config-8acfde6/calibrateImage_config/calibrateImage_config_LSSTCam_runs_prompt_20260401_SingleFrame_pipelines-e8bc8a9-config-8acfde6.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/central_repo/LSSTCam/runs/prompt/20260401/SingleFrame/pipelines-e8bc8a9-config-8acfde6/isr_config/isr_config_LSSTCam_runs_prompt_20260401_SingleFrame_pipelines-e8bc8a9-config-8acfde6.py b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/SingleFrame/pipelines-e8bc8a9-config-8acfde6/isr_config/isr_config_LSSTCam_runs_prompt_20260401_SingleFrame_pipelines-e8bc8a9-config-8acfde6.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/central_repo/LSSTCam/runs/prompt/20260401/SingleFrame/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_SingleFrame_pipelines-e8bc8a9-config-8acfde6.yaml b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/SingleFrame/pipelines-e8bc8a9-config-8acfde6/packages/packages_LSSTCam_runs_prompt_20260401_SingleFrame_pipelines-e8bc8a9-config-8acfde6.yaml new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/central_repo/LSSTCam/runs/prompt/20260401/SingleFrame/pipelines-e8bc8a9-config-8acfde6/single_visit_star_schema/single_visit_star_schema_LSSTCam_runs_prompt_20260401_SingleFrame_pipelines-e8bc8a9-config-8acfde6.fits b/tests/data/central_repo/LSSTCam/runs/prompt/20260401/SingleFrame/pipelines-e8bc8a9-config-8acfde6/single_visit_star_schema/single_visit_star_schema_LSSTCam_runs_prompt_20260401_SingleFrame_pipelines-e8bc8a9-config-8acfde6.fits new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/central_repo/gen3.sqlite3 b/tests/data/central_repo/gen3.sqlite3 index 768fe177..6fc4606f 100644 Binary files a/tests/data/central_repo/gen3.sqlite3 and b/tests/data/central_repo/gen3.sqlite3 differ diff --git a/tests/data/make_central_repo.sh b/tests/data/make_central_repo.sh index 74efdf6e..ab0b232c 100644 --- a/tests/data/make_central_repo.sh +++ b/tests/data/make_central_repo.sh @@ -10,7 +10,6 @@ REPO="${PROMPT_PROCESSING_DIR:?Can\'t find prompt_processing repo; is it set up? # For compatibility testing, use the lowest version we offer support for butler create "$REPO" --dimension-config "$DAF_BUTLER_DIR/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe7.yaml" butler register-instrument "$REPO" lsst.obs.lsst.LsstCam -butler register-dataset-type "$REPO" gain_correction IsrCalib instrument detector --is-calibration # Import datasets butler write-curated-calibrations "$REPO" LSSTCam --collection LSSTCam/calib/DM-50520 @@ -23,12 +22,13 @@ butler transfer-datasets /repo/main "$REPO" --transfer copy --register-dataset-t # write-curated-calibrations produces manual_defects but not defects butler transfer-datasets /repo/main "$REPO" --transfer copy --register-dataset-types --transfer-dimensions --dataset-type defects --collections LSSTCam/calib/DM-49175 --where "instrument='LSSTCam' and detector in (90, 91)" butler transfer-datasets /repo/main "$REPO" --transfer copy --register-dataset-types --transfer-dimensions --dataset-type flat --collections LSSTCam/calib/DM-52163 --where "instrument='LSSTCam' and detector in (90, 91) and physical_filter='g_6'" +butler transfer-datasets /repo/main "$REPO" --transfer copy --register-dataset-types --transfer-dimensions --dataset-type gain_correction --collections LSSTCam/calib/DM-53620 --where "instrument='LSSTCam' and detector in (90, 91) and physical_filter='g_6'" butler transfer-datasets /repo/main "$REPO" --transfer copy --register-dataset-types --transfer-dimensions --dataset-type linearizer --collections LSSTCam/calib/DM-49175 --where "instrument='LSSTCam' and detector in (90, 91)" butler transfer-datasets /repo/main "$REPO" --transfer copy --register-dataset-types --transfer-dimensions --dataset-type ptc --collections LSSTCam/calib/DM-50336 --where "instrument='LSSTCam' and detector in (90, 91)" butler transfer-datasets /repo/main "$REPO" --transfer copy --register-dataset-types --transfer-dimensions --dataset-type pretrainedModelPackage --collections pretrained_models/dummy butler transfer-datasets /repo/main "$REPO" --transfer copy --register-dataset-types --transfer-dimensions --dataset-type skyMap --where "skymap='lsst_cells_v1'" --collections skymaps # The tract constraint is not strictly necessary but just to filter out templates from another overlapping tract. -butler transfer-datasets embargo "$REPO" --transfer copy --register-dataset-types --transfer-dimensions --dataset-type template_coadd --collections LSSTCam/templates/DM-51716/SV_225/run --where "instrument='LSSTCam' and detector=90 and visit=2025052100138 and skymap='lsst_cells_v1' and tract=3534" +butler transfer-datasets /repo/main "$REPO" --transfer copy --register-dataset-types --transfer-dimensions --dataset-type template_coadd --collections LSSTCam/templates/DM-51716/SV_225/run --where "instrument='LSSTCam' and detector=90 and visit=2025052100138 and skymap='lsst_cells_v1' and tract=3534" butler transfer-datasets /repo/main "$REPO" --transfer copy --register-dataset-types --transfer-dimensions --dataset-type the_monster_20250219 --collections refcats --where "instrument='LSSTCam' and detector=90 and visit=2025052100138" # Certify non-curated calibs @@ -38,6 +38,7 @@ butler certify-calibrations "$REPO" LSSTCam/calib/DM-49175/run7/ctiGen.20250320a butler certify-calibrations "$REPO" LSSTCam/calib/DM-49175/run7/darkGen.20250320a/20250326T000943Z LSSTCam/calib/DM-50520 dark --begin-date "2025-05-15T12:00:00" --end-date "2025-06-25T12:00:00" butler certify-calibrations "$REPO" LSSTCam/calib/DM-49175/run7/defectGen.20250401a/20250401T232630Z LSSTCam/calib/DM-50520 defects --begin-date "2025-05-15T12:00:00" --end-date "2025-06-25T12:00:00" butler certify-calibrations "$REPO" LSSTCam/calib/DM-52163/flats-2s-v30-nograd-ugrizy/flatTwoLedGen-g.20250812a/20250812T182450Z LSSTCam/calib/DM-50520 flat --begin-date "2025-05-15T12:00:00" --end-date "2025-06-25T12:00:00" +butler certify-calibrations "$REPO" LSSTCam/calib/DM-53620/3s_v1_dp2_v2_gain_correction_20250920/gainCorrectionGen.20251215a/20251218T193528Z LSSTCam/calib/DM-50520 gain_correction --begin-date "2025-05-15T12:00:00" --end-date "2025-06-25T12:00:00" butler certify-calibrations "$REPO" LSSTCam/calib/DM-49175/run7/linearizerGen.20250320a/20250321T052032Z LSSTCam/calib/DM-50520 linearizer --begin-date "2025-05-15T12:00:00" --end-date "2025-06-25T12:00:00" butler certify-calibrations "$REPO" LSSTCam/calib/DM-50336/run7/ptcGen.20250422a/20250422T162135Z LSSTCam/calib/DM-50520 ptc --begin-date "2025-05-15T12:00:00" --end-date "2025-06-25T12:00:00" @@ -67,9 +68,12 @@ export MAIN_PIPELINES_CONFIG="- survey: SURVEY - ${PROMPT_PROCESSING_DIR}/tests/data/ISR.yaml " apdb-cli create-sql "sqlite:///${TEMP_APDB}" "${CONFIG_APDB}" -butler ingest-raws "$REPO" s3://embargo@rubin-summit/LSSTCam/20250521/MC_O_20250521_000138/MC_O_20250521_000138_R22_S00.fits -t copy +temp_dir=$(mktemp -d) +unzip /sdf/data/rubin/lsstdata/offline/instrument/LSSTCam/20250521/MC_O_20250521_000138.zip -d "$temp_dir" +butler ingest-raws "$REPO" "$temp_dir/MC_O_20250521_000138_R22_S00.fits" -t copy +rm -rf "$temp_dir" butler define-visits "$REPO" lsst.obs.lsst.LsstCam -pipetask run -b "$REPO" -i LSSTCam/raw/all,LSSTCam/defaults,LSSTCam/templates -o u/add-dataset-type -d "instrument='LSSTCam' and exposure=2025052100138 and detector=90" -p $AP_PIPE_DIR/pipelines/LSSTCam/ApPipe.yaml -c parameters:apdb_config=${CONFIG_APDB} -c associateApdb:doPackageAlerts=False --register-dataset-types --init-only +pipetask run -b "$REPO" -i LSSTCam/raw/all,LSSTCam/defaults,LSSTCam/templates/DM-51716/SV_225/run -o u/add-dataset-type -d "instrument='LSSTCam' and exposure=2025052100138 and detector=90" -p $AP_PIPE_DIR/pipelines/LSSTCam/ApPipe.yaml -c parameters:apdb_config=${CONFIG_APDB} -c associateApdb:doPackageAlerts=False --register-dataset-types --init-only # Clean up data that are no longer needed. butler remove-runs "$REPO" LSSTCam/raw/all --no-confirm --force rm -rf "$REPO"/raw @@ -87,4 +91,4 @@ for x in `find "$REPO/LSSTCam/calib/curated/" -name "*.fits"`; do : > $x; done for x in `find "$REPO/LSSTCam/templates/" -name "*.fits"`; do : > $x; done for x in `find "$REPO/pretrained_models/" -name "*.zip"`; do : > $x; done for x in `find "$REPO/refcats/DM-49042/" -name "*.fits"`; do : > $x; done -for x in `find "$REPO/LSSTCam/prompt/" -type f`; do : > $x; done +for x in `find "$REPO/LSSTCam/runs/prompt/" -type f`; do : > $x; done diff --git a/tests/mock_central_repo.py b/tests/mock_central_repo.py index 5b4957f9..f5d3a080 100644 --- a/tests/mock_central_repo.py +++ b/tests/mock_central_repo.py @@ -57,9 +57,9 @@ class TestRepo: skymap_name = "lsst_cells_v1" # The day_obs used for the init-output runs in the test repo. # Does not need to be synchronized with simulated metadata. - sim_date = astropy.time.Time("2025-09-13T00:00:00Z") + sim_date = astropy.time.Time("2026-04-02T00:00:00Z") # The deployment ID used in the test repo. - sim_deployment = "pipelines-cf62e06-config-8acfde6" + sim_deployment = "pipelines-e8bc8a9-config-8acfde6" @classmethod def fake_file_data(cls, filename, dimensions, instrument, visit): diff --git a/tests/test_middleware_interface.py b/tests/test_middleware_interface.py index 37646a5c..08fd98c6 100644 --- a/tests/test_middleware_interface.py +++ b/tests/test_middleware_interface.py @@ -311,8 +311,8 @@ def _check_imports(self, butler, group, detector, expected_shards, have_filter=T # Check that preloaded datasets have been generated date = (astropy.time.Time.now() - 12 * u.hour).to_value("ymdhms") - preload_collection = f"{TestRepo.instname}/prompt/" \ - f"output-{date.year:04d}-{date.month:02d}-{date.day:02d}/" \ + preload_collection = f"{TestRepo.instname}/runs/prompt/" \ + f"{date.year:04d}{date.month:02d}{date.day:02d}/" \ f"NoPipeline/{self.deploy_id}" self.assertTrue( butler.exists('promptPreload_metrics', @@ -1346,11 +1346,11 @@ def setUp(self): with unittest.mock.patch("activator.middleware_interface.MiddlewareInterface._run_preprocessing"): self.second_interface.prep_butler() date = (astropy.time.Time.now() - 12 * u.hour).to_value("ymdhms") - self.preprocessing_run = f"{TestRepo.instname}/prompt/" \ - f"output-{date.year:04d}-{date.month:02d}-{date.day:02d}" \ + self.preprocessing_run = f"{TestRepo.instname}/runs/prompt/" \ + f"{date.year:04d}{date.month:02d}{date.day:02d}" \ f"/Preprocess/{self.deploy_id}" - self.output_run = f"{TestRepo.instname}/prompt/" \ - f"output-{date.year:04d}-{date.month:02d}-{date.day:02d}" \ + self.output_run = f"{TestRepo.instname}/runs/prompt/" \ + f"{date.year:04d}{date.month:02d}{date.day:02d}" \ f"/ApPipe/{self.deploy_id}" with unittest.mock.patch.object(self.interface.rawIngestTask, "extractMetadata") as mock: diff --git a/tests/test_run_utils.py b/tests/test_run_utils.py index 1c35a9ed..40800456 100644 --- a/tests/test_run_utils.py +++ b/tests/test_run_utils.py @@ -39,10 +39,10 @@ def test_get_output_run(self): instrument = Instrument.from_string(instclass) deploy_id = "test-9660137" filename = "ApPipe.yaml" - date = "2023-01-22" + date = 20230122 out_chain = get_output_chain(instrument, date) - self.assertEqual(out_chain, f"{instname}/prompt/output-2023-01-22") + self.assertEqual(out_chain, f"{instname}/runs/prompt-20230122") preload_run = get_preload_run(instrument, deploy_id, date) - self.assertEqual(preload_run, f"{instname}/prompt/output-2023-01-22/NoPipeline/{deploy_id}") + self.assertEqual(preload_run, f"{instname}/runs/prompt/20230122/NoPipeline/{deploy_id}") out_run = get_output_run(instrument, deploy_id, filename, date) - self.assertEqual(out_run, f"{instname}/prompt/output-2023-01-22/ApPipe/{deploy_id}") + self.assertEqual(out_run, f"{instname}/runs/prompt/20230122/ApPipe/{deploy_id}") diff --git a/tests/test_write_init_outputs.py b/tests/test_write_init_outputs.py index 926633e4..74848636 100644 --- a/tests/test_write_init_outputs.py +++ b/tests/test_write_init_outputs.py @@ -98,7 +98,7 @@ def test_make_init_outputs_not_registered(self): def test_make_init_outputs_empty_run(self): pipe_file = "${PROMPT_PROCESSING_DIR}/tests/data/SingleFrame.yaml" instrument = lsst.obs.base.Instrument.from_string("lsst.obs.lsst.LsstCam") - expected_run = get_output_run(instrument, self.deploy_id, pipe_file, "2024-09-24") + expected_run = get_output_run(instrument, self.deploy_id, pipe_file, 20240924) self._register_dataset_types(pipe_file) @@ -118,7 +118,7 @@ def test_make_init_outputs_empty_run(self): def test_make_init_outputs_filled_run(self): pipe_file = "${PROMPT_PROCESSING_DIR}/tests/data/SingleFrame.yaml" instrument = lsst.obs.base.Instrument.from_string("lsst.obs.lsst.LsstCam") - expected_run = get_output_run(instrument, self.deploy_id, pipe_file, "2024-09-24") + expected_run = get_output_run(instrument, self.deploy_id, pipe_file, 20240924) self._register_dataset_types(pipe_file) @@ -139,7 +139,7 @@ def test_make_init_outputs_filled_run(self): def test_make_output_chain_new(self): instrument = lsst.obs.base.Instrument.from_string("lsst.obs.lsst.LsstCam") - expected_chain = get_output_chain(instrument, "2024-09-24") + expected_chain = get_output_chain(instrument, 20240924) self.base_butler.collections.register("run1", CollectionType.RUN) self.base_butler.collections.register("run2", CollectionType.RUN) @@ -153,7 +153,7 @@ def test_make_output_chain_new(self): def test_make_output_chain_existing(self): instrument = lsst.obs.base.Instrument.from_string("lsst.obs.lsst.LsstCam") - expected_chain = get_output_chain(instrument, "2024-09-24") + expected_chain = get_output_chain(instrument, 20240924) self.base_butler.collections.register("run1", CollectionType.RUN) self.base_butler.collections.register("run2", CollectionType.RUN) @@ -196,12 +196,12 @@ def _make_init_outputs(butler, instrument, apdb, deploy_id, pipeline): unittest.mock.patch("initializer.write_init_outputs._make_init_outputs", side_effect=_make_init_outputs) as mock_make, \ unittest.mock.patch("initializer.write_init_outputs._get_current_day_obs", - return_value=""), \ + return_value=0), \ unittest.mock.patch("initializer.write_init_outputs.import_iers_cache"): main(["--deploy-id", self.deploy_id]) # The preload collection is not associated with a pipeline - preload_run = get_preload_run(lsst.obs.lsst.LsstCam(), self.deploy_id, "") + preload_run = get_preload_run(lsst.obs.lsst.LsstCam(), self.deploy_id, 0) with Butler(self.repo.name) as butler: self.assertTrue(butler.collections.query(preload_run, CollectionType.RUN))