From 3147e63b09836e2826fb36a8b8f20028e5f4b96f Mon Sep 17 00:00:00 2001 From: daya Date: Mon, 18 Dec 2023 18:05:28 +0530 Subject: [PATCH] NAK-771 created initial folder structure for OSD data storage --- tmdata/osddata/observatory_policies.json | 16 +++ .../osddata/ska1_low/low_configuration.json | 6 ++ .../osddata/ska1_mid/mid_configuration.json | 97 +++++++++++++++++++ 3 files changed, 119 insertions(+) create mode 100644 tmdata/osddata/observatory_policies.json create mode 100644 tmdata/osddata/ska1_low/low_configuration.json create mode 100644 tmdata/osddata/ska1_mid/mid_configuration.json diff --git a/tmdata/osddata/observatory_policies.json b/tmdata/osddata/observatory_policies.json new file mode 100644 index 00000000..9cb0fb77 --- /dev/null +++ b/tmdata/osddata/observatory_policies.json @@ -0,0 +1,16 @@ +{ + "cycle_number": 0, + "cycle_description": "Science Verification", + "cycle_information": { + "cycle_id": "SKAO_2027_1", + "proposal_open": "20260327T12:00:00.000Z", + "proposal_close": "20260512T15:00:00.000z" + }, + "cycle_policies": { + "normal_max_hours": 100.0 + }, + "telescope_capabilities": { + "Mid": "AA2", + "Low": "AA2" + } +} \ No newline at end of file diff --git a/tmdata/osddata/ska1_low/low_configuration.json b/tmdata/osddata/ska1_low/low_configuration.json new file mode 100644 index 00000000..2200dbc9 --- /dev/null +++ b/tmdata/osddata/ska1_low/low_configuration.json @@ -0,0 +1,6 @@ +{ + + "telescope": "Low", + "basic_capabilities": { +} +} \ No newline at end of file diff --git a/tmdata/osddata/ska1_mid/mid_configuration.json b/tmdata/osddata/ska1_mid/mid_configuration.json new file mode 100644 index 00000000..c3b1a7fb --- /dev/null +++ b/tmdata/osddata/ska1_mid/mid_configuration.json @@ -0,0 +1,97 @@ +{ + + "telescope": "Mid", + + "basic_capabilities": { + "dish_elevation_limit_deg": 15.0, + + "receiver_information": [ + { + "rx_id": "Band_1", + "min_frequency_hz": 350000.0, + "max_frequency_hz": 1050000.0 + }, + { + "rx_id": "Band_2", + "min_frequency_hz": 950000.0, + "max_frequency_hz": 1760000.0 + }, + { + "rx_id": "Band_3", + "min_frequency_hz": 1650000.0, + "max_frequency_hz": 3050000.0 + }, + { + "rx_id": "Band_4", + "min_frequency_hz": 2800000.0, + "max_frequency_hz": 5180000.0 + }, + { + "rx_id": "Band_5a", + "min_frequency_hz": 4600000.0, + "max_frequency_hz": 8500000.0 + }, + { + "rx_id": "Band_5b", + "min_frequency_hz": 8300000.0, + "max_frequency_hz": 15400000.0 + } + + + ] + }, + + "AA0.5": { + "available_receivers": [ + "Band_1", "Band_2" + ], + "number_ska_dishes": 4, + "number_meerkat_dishes": 0, + "number_meerkatplus_dishes": 0, + "max_baseline_km": 1.5, + "available_bandwidth_hz": 800000.0, + "number_channels": 14880, + "number_zoom_windows": 0, + "number_zoom_channels": 0, + "number_pss_beams": 0, + "number_pst_beams": 0, + "ps_beam_bandwidth_hz": 0.0, + "number_fsps": 4 + }, + + "AA1": { + "available_receivers": [ + "Band_1", "Band_2", "Band_5a", "Band_5b" + ], + "number_ska_dishes": 8, + "number_meerkat_dishes": 0, + "number_meerkatplus_dishes": 0, + "max_baseline_km": 1.5, + "available_bandwidth_hz": 800000.0, + "number_channels": 14880, + "number_zoom_windows": 0, + "number_zoom_channels": 0, + "number_pss_beams": 0, + "number_pst_beams": 1, + "ps_beam_bandwidth_hz": 800000.0, + "number_fsps": 4 + }, + + "AA2": { + "available_receivers": [ + "Band_1", "Band_2", "Band_5a", "Band_5b" + ], + "number_ska_dishes": 64, + "number_meerkat_dishes": 4, + "number_meerkatplus_dishes": 0, + "max_baseline_km": 110.0, + "available_bandwidth_hz": 800000.0, + "number_channels": 14880, + "number_zoom_windows": 16, + "number_zoom_channels": 14880, + "number_pss_beams": 384, + "number_pst_beams": 6, + "ps_beam_bandwidth_hz": 800000.0, + "number_fsps": 4 + } +} \ No newline at end of file -- GitLab