From ce69a1561cd6623d2c9db46dfa304fb87e5e29e6 Mon Sep 17 00:00:00 2001 From: Fritz Mueller Date: Wed, 22 Jun 2022 20:12:08 -0700 Subject: [PATCH] Fixes for configs/dp02.yaml - Update collection to 2.2i/runs/DP0.2 - Add lsst_vist, lsst_detector, lsst_tract, lsst_patch, lsst_band, and lsstd_filter - Add "e-9" suffix to spectral range constants --- configs/dp02.yaml | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/configs/dp02.yaml b/configs/dp02.yaml index b1b05c7..b8bafe8 100644 --- a/configs/dp02.yaml +++ b/configs/dp02.yaml @@ -1,6 +1,6 @@ facility_name: Rubin-LSST obs_collection: LSST.DP02 -collections: ["2.2i/runs/test-med-1/v23_0_0_rc2/PREOPS-863"] +collections: ["2.2i/runs/DP0.2"] use_butler_uri: false dataset_types: raw: @@ -43,10 +43,29 @@ dataset_types: o_ucd: phot.count access_format: image/fits datalink_url_fmt: "https://data.lsst.cloud/api/datalink/links?ID=butler%3A//dp02/{id}" +extra_columns: + lsst_visit: + template: "{visit}" + type: "int" + lsst_detector: + template: "{detector}" + type: "int" + lsst_tract: + template: "{tract}" + type: "int" + lsst_patch: + template: "{patch}" + type: "int" + lsst_band: + template: "{band}" + type: "str" + lsst_filter: + template: "{physical_filter}" + type: "str" spectral_ranges: - "u": [330., 400.] - "g": [402., 552.] - "r": [552., 691.] - "i": [691., 818.] - "z": [818., 922.] - "y": [970., 1060.] + "u": [330.0e-9, 400.0e-9] + "g": [402.0e-9, 552.0e-9] + "r": [552.0e-9, 691.0e-9] + "i": [691.0e-9, 818.0e-9] + "z": [818.0e-9, 922.0e-9] + "y": [970.0e-9, 1060.0e-9]