ctao-calibpipe 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ctao-calibpipe might be problematic. Click here for more details.

Files changed (93) hide show
  1. calibpipe/__init__.py +5 -0
  2. calibpipe/_dev_version/__init__.py +9 -0
  3. calibpipe/_version.py +21 -0
  4. calibpipe/atmosphere/__init__.py +1 -0
  5. calibpipe/atmosphere/atmosphere_containers.py +109 -0
  6. calibpipe/atmosphere/meteo_data_handlers.py +485 -0
  7. calibpipe/atmosphere/models/README.md +14 -0
  8. calibpipe/atmosphere/models/__init__.py +1 -0
  9. calibpipe/atmosphere/models/macobac.ecsv +23 -0
  10. calibpipe/atmosphere/models/reference_MDPs/__init__.py +1 -0
  11. calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_intermediate.ecsv +8 -0
  12. calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_summer.ecsv +8 -0
  13. calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_winter.ecsv +8 -0
  14. calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-south_summer.ecsv +8 -0
  15. calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-south_winter.ecsv +8 -0
  16. calibpipe/atmosphere/models/reference_atmospheres/__init__.py +1 -0
  17. calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_intermediate.ecsv +73 -0
  18. calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_summer.ecsv +73 -0
  19. calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_winter.ecsv +73 -0
  20. calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-south_summer.ecsv +73 -0
  21. calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-south_winter.ecsv +73 -0
  22. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/__init__.py +1 -0
  23. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_intermediate.ecsv +857 -0
  24. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_summer.ecsv +857 -0
  25. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_winter.ecsv +857 -0
  26. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-south_summer.ecsv +857 -0
  27. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-south_winter.ecsv +857 -0
  28. calibpipe/atmosphere/templates/request_templates/__init__.py +1 -0
  29. calibpipe/atmosphere/templates/request_templates/copernicus.json +11 -0
  30. calibpipe/atmosphere/templates/request_templates/gdas.json +12 -0
  31. calibpipe/core/__init__.py +39 -0
  32. calibpipe/core/common_metadata_containers.py +195 -0
  33. calibpipe/core/exceptions.py +87 -0
  34. calibpipe/database/__init__.py +24 -0
  35. calibpipe/database/adapter/__init__.py +23 -0
  36. calibpipe/database/adapter/adapter.py +80 -0
  37. calibpipe/database/adapter/database_containers/__init__.py +61 -0
  38. calibpipe/database/adapter/database_containers/atmosphere.py +199 -0
  39. calibpipe/database/adapter/database_containers/common_metadata.py +148 -0
  40. calibpipe/database/adapter/database_containers/container_map.py +59 -0
  41. calibpipe/database/adapter/database_containers/observatory.py +61 -0
  42. calibpipe/database/adapter/database_containers/table_version_manager.py +39 -0
  43. calibpipe/database/adapter/database_containers/version_control.py +17 -0
  44. calibpipe/database/connections/__init__.py +28 -0
  45. calibpipe/database/connections/calibpipe_database.py +60 -0
  46. calibpipe/database/connections/postgres_utils.py +97 -0
  47. calibpipe/database/connections/sql_connection.py +103 -0
  48. calibpipe/database/connections/user_confirmation.py +19 -0
  49. calibpipe/database/interfaces/__init__.py +71 -0
  50. calibpipe/database/interfaces/hashable_row_data.py +54 -0
  51. calibpipe/database/interfaces/queries.py +180 -0
  52. calibpipe/database/interfaces/sql_column_info.py +67 -0
  53. calibpipe/database/interfaces/sql_metadata.py +6 -0
  54. calibpipe/database/interfaces/sql_table_info.py +131 -0
  55. calibpipe/database/interfaces/table_handler.py +351 -0
  56. calibpipe/database/interfaces/types.py +96 -0
  57. calibpipe/tests/data/atmosphere/molecular_atmosphere/__init__.py +0 -0
  58. calibpipe/tests/data/atmosphere/molecular_atmosphere/contemporary_MDP.ecsv +34 -0
  59. calibpipe/tests/data/atmosphere/molecular_atmosphere/macobac.csv +852 -0
  60. calibpipe/tests/data/atmosphere/molecular_atmosphere/macobac.ecsv +23 -0
  61. calibpipe/tests/data/atmosphere/molecular_atmosphere/merged_file.ecsv +1082 -0
  62. calibpipe/tests/data/atmosphere/molecular_atmosphere/meteo_data_copernicus.ecsv +1082 -0
  63. calibpipe/tests/data/atmosphere/molecular_atmosphere/meteo_data_gdas.ecsv +66 -0
  64. calibpipe/tests/data/atmosphere/molecular_atmosphere/observatory_configurations.json +71 -0
  65. calibpipe/tests/data/utils/__init__.py +0 -0
  66. calibpipe/tests/data/utils/meteo_data_winter_and_summer.ecsv +12992 -0
  67. calibpipe/tests/unittests/atmosphere/astral_testing.py +107 -0
  68. calibpipe/tests/unittests/atmosphere/test_meteo_data_handler.py +775 -0
  69. calibpipe/tests/unittests/atmosphere/test_molecular_atmosphere.py +327 -0
  70. calibpipe/tests/unittests/database/test_table_handler.py +66 -0
  71. calibpipe/tests/unittests/database/test_types.py +38 -0
  72. calibpipe/tests/unittests/test_bootstrap_db.py +79 -0
  73. calibpipe/tests/unittests/utils/test_observatory.py +309 -0
  74. calibpipe/tools/atmospheric_base_tool.py +78 -0
  75. calibpipe/tools/atmospheric_model_db_loader.py +181 -0
  76. calibpipe/tools/basic_tool_with_db.py +38 -0
  77. calibpipe/tools/contemporary_mdp_producer.py +87 -0
  78. calibpipe/tools/init_db.py +37 -0
  79. calibpipe/tools/macobac_calculator.py +82 -0
  80. calibpipe/tools/molecular_atmospheric_model_producer.py +197 -0
  81. calibpipe/tools/observatory_data_db_loader.py +71 -0
  82. calibpipe/tools/reference_atmospheric_model_selector.py +201 -0
  83. calibpipe/utils/__init__.py +10 -0
  84. calibpipe/utils/observatory.py +486 -0
  85. calibpipe/utils/observatory_containers.py +26 -0
  86. calibpipe/version.py +24 -0
  87. ctao_calibpipe-0.1.0.dist-info/METADATA +86 -0
  88. ctao_calibpipe-0.1.0.dist-info/RECORD +93 -0
  89. ctao_calibpipe-0.1.0.dist-info/WHEEL +5 -0
  90. ctao_calibpipe-0.1.0.dist-info/entry_points.txt +8 -0
  91. ctao_calibpipe-0.1.0.dist-info/licenses/AUTHORS.md +13 -0
  92. ctao_calibpipe-0.1.0.dist-info/licenses/LICENSE +21 -0
  93. ctao_calibpipe-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,93 @@
1
+ calibpipe/__init__.py,sha256=Id9ZXEUMH4fUFQqh4Rcaz918dpCbETbF1aTGclqmE4U,89
2
+ calibpipe/_version.py,sha256=-LyU5F1uZDjn6Q8_Z6-_FJt_8RE4Kq9zcKdg1abSSps,511
3
+ calibpipe/version.py,sha256=T6wjTQNq_sU7ep_-0KSX12Ej2fI7O_bIxl7MqqQt4cM,766
4
+ calibpipe/_dev_version/__init__.py,sha256=3qlzT1l_MfLxHuRphBwNwkb2WRttg3hGooj5n3BBZi4,369
5
+ calibpipe/atmosphere/__init__.py,sha256=ZDsUqVG1I_LDRW-xZb3vvHv9oDH5WEnch_HewkkI_N0,81
6
+ calibpipe/atmosphere/atmosphere_containers.py,sha256=i-6V5vuWgJiwwISiAX0R828E0TeSCKJj24X_XPK3QHE,4025
7
+ calibpipe/atmosphere/meteo_data_handlers.py,sha256=1CATYodYGMTnAFMdNNGqprYsDVOcLYUIKy73Hc12pQ8,17136
8
+ calibpipe/atmosphere/models/README.md,sha256=Go9Dsck2eirm0rqVlNFsbq2gLZcjYdcxWo_QORVekl0,2134
9
+ calibpipe/atmosphere/models/__init__.py,sha256=dUSSlvHhznasctqsNxwMUpQUMb5xm3GrFSQlQLitRjk,60
10
+ calibpipe/atmosphere/models/macobac.ecsv,sha256=-BH6X4PyIr16VDZdqKLVlfKbW7Pr-XGrG7qMnGsqluc,756
11
+ calibpipe/atmosphere/models/reference_MDPs/__init__.py,sha256=ere46bmFXdsEhcLvkgr93F8xGqtMTw9k7TltiMtDMnQ,44
12
+ calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_intermediate.ecsv,sha256=H2QWtqUSyyU5GhqDINAKRNUmrxvzNwZYiuTFg52wSE4,193
13
+ calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_summer.ecsv,sha256=0Sjq9QNjb-NJr9MtobOG0FikDjsDea-4hvGgKmnvqMo,187
14
+ calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_winter.ecsv,sha256=uCLZU8uedYwbi8NKvBp79kBWfGF6xK8U8GYcMO5Ch_E,187
15
+ calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-south_summer.ecsv,sha256=0lASNA32J3G9fR3YfztUZ37j9dDKOu2-pypO_sBDmlk,187
16
+ calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-south_winter.ecsv,sha256=E2whNcYRMLqWjKc7v2wM1wK4gy3MEEWPjJHzJ0r23fM,187
17
+ calibpipe/atmosphere/models/reference_atmospheres/__init__.py,sha256=mZ_Vd4deqA8QTEUldPWLKx870vJlrZw6W3T26FeKVQM,36
18
+ calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_intermediate.ecsv,sha256=tzIMJexSEmK3p2wIaDXQvcybNRP7wTz6ppR842Emi6o,8032
19
+ calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_summer.ecsv,sha256=LU5eK2H9EsmRMRzS_OdspAZkWx9ropuZkPUThymv9xo,8073
20
+ calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_winter.ecsv,sha256=WL3QRCsb4s0DlSlrPU2I8VhmyZvaXspU-j8lKpPK0KU,8035
21
+ calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-south_summer.ecsv,sha256=UWLOH_1v_jJ8ICNiaTN5xIHhUPXUREClO2nb9TjNykI,8072
22
+ calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-south_winter.ecsv,sha256=V6wdpqn3UYfinjCogTSkSQzGUBVZvPFuI5_vzP6ykUI,8102
23
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/__init__.py,sha256=TdAQ-1ODUXxDDQ7mwNDs6-87hO37aK_C020yiFYrPUQ,46
24
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_intermediate.ecsv,sha256=kkxj-39_hzMVYh2LD-TJhojA85EVox4RUt_cT11T7R0,860986
25
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_summer.ecsv,sha256=UTNC5MXYMbd1EKIvFd-sCnsNuafhZKcQVE8bfBer4Is,861179
26
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_winter.ecsv,sha256=ckEjK8VmGAzkCsZLJ1P4QYlalG3MJeud_1Z4wcKcW5w,860958
27
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-south_summer.ecsv,sha256=h2lCXSGKIzq_V3-SFG5ltCv4VPjoe4zv8sA9E9Un3a0,861209
28
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-south_winter.ecsv,sha256=3rON8t0-FwmkctnAP4RgGbZps-lvqpUDless49jFQ3s,861017
29
+ calibpipe/atmosphere/templates/request_templates/__init__.py,sha256=30TTOLYx6hLbO1KsYzMrXJiRRp46G58qiTGquLnZMe0,39
30
+ calibpipe/atmosphere/templates/request_templates/copernicus.json,sha256=MKJuyzV00D3lmKUnFUCB2uwp-mCK-2VJwFwrBVNzLFw,687
31
+ calibpipe/atmosphere/templates/request_templates/gdas.json,sha256=qBKXEBWTi5gxWs0UO8N0ElGHzHGV7RGHbDtw740JtIc,349
32
+ calibpipe/core/__init__.py,sha256=bvVm1TvgbHkeBbkDMfNMcLPbhSfegApuEpEyk1X2CMw,1096
33
+ calibpipe/core/common_metadata_containers.py,sha256=llj5zajx5NMJIS5BjT2OM7BKUIAsn0sf5Mp5jn8rysM,6206
34
+ calibpipe/core/exceptions.py,sha256=JzQ22ylG4Ztq5_oNucM4Ow9F1vrvxSJDhFDq9K7GeBE,2694
35
+ calibpipe/database/__init__.py,sha256=Ti6vuFnNENsGh_Bf9QrUP47p9f7sPBGsYZmIMvCUGyI,810
36
+ calibpipe/database/adapter/__init__.py,sha256=ckgbAmcN9ra98AX7bA2DMNvl3RhlaeYRG4-TekeKj10,604
37
+ calibpipe/database/adapter/adapter.py,sha256=HEAJMtXvKteBPUaVdVTdQ8CjNisABy31_JmBPSSLIRk,2802
38
+ calibpipe/database/adapter/database_containers/__init__.py,sha256=LkatnAzyKAlZcWwAjBK8i4R5WocO5JgfJD-rdfbTCI8,1961
39
+ calibpipe/database/adapter/database_containers/atmosphere.py,sha256=KbJMhkJB3OmU6e1Y_9Umd2hPxHGHFEy39n62qycZdkI,5429
40
+ calibpipe/database/adapter/database_containers/common_metadata.py,sha256=NQJidAiwiZoM9A0q23SM71C69Fgsxi9KdKrJwnqzwwY,4918
41
+ calibpipe/database/adapter/database_containers/container_map.py,sha256=ERu2rmbhXJgJ8I66eEmYvm-tgLAplwapkQvwwSCB2Xg,2112
42
+ calibpipe/database/adapter/database_containers/observatory.py,sha256=AXZDcuXeKAnowxUzmosI-CwnitWyBPHnxWzK8G_jf80,1948
43
+ calibpipe/database/adapter/database_containers/table_version_manager.py,sha256=S_3OuVCVbgKYkidMDsZucS1qzYCiRL8SN3J2VRaipTQ,1490
44
+ calibpipe/database/adapter/database_containers/version_control.py,sha256=VcVhIVL9NNRaOFJAjTHVsHehslSFCp-oTNg9AbFQfcU,588
45
+ calibpipe/database/connections/__init__.py,sha256=NDKxrKZj8mMwIsmxxonbrVNsiJRpVE4_I1BPcAXNStE,913
46
+ calibpipe/database/connections/calibpipe_database.py,sha256=IBDPG_bRRN_xr4g0gsdWTv2XTM9vdZ_N0BNkoK9Y4xs,1643
47
+ calibpipe/database/connections/postgres_utils.py,sha256=JNtWv0meZx7fzWyCp6k7hwL9Ow9M6iAaEI98X9idNq0,2895
48
+ calibpipe/database/connections/sql_connection.py,sha256=QJWmp3GxbAgqf7UnU2f_JWlaNHO8NYUmY33z2cjiyNo,3354
49
+ calibpipe/database/connections/user_confirmation.py,sha256=d3P_wgfE9QA2BHhgKBsiTmXSXs55nb61lYc5IPjuwSQ,430
50
+ calibpipe/database/interfaces/__init__.py,sha256=DmADVq96RD04bSLaUBOjCNMJ3LjzD11eevd9103MfsU,2024
51
+ calibpipe/database/interfaces/hashable_row_data.py,sha256=bjkk8kcX8V6LIHP0lRcaT6L9LrhFCvHRBwXVq98kAy8,1711
52
+ calibpipe/database/interfaces/queries.py,sha256=evuWSUbeQQao7jxXXyLn0DmsJ6hdMmnkaTMDq0Sgng8,5987
53
+ calibpipe/database/interfaces/sql_column_info.py,sha256=SM943ZjBwTkS8RTz20ceDoqaoxFkRHVFP0tm08d_SOE,2054
54
+ calibpipe/database/interfaces/sql_metadata.py,sha256=zlmv3OAIbn2YxmDM0QE17myBwj1910D1RvhpJ6c5Ej4,142
55
+ calibpipe/database/interfaces/sql_table_info.py,sha256=HBpYreOJJNdxjH-fbL5QL4_M0nn4hNe52_yxVVrcuDo,4485
56
+ calibpipe/database/interfaces/table_handler.py,sha256=o0RehvLTqweC56sQ4DWY7DMamdme7Yn2aL1LBh5072A,13653
57
+ calibpipe/database/interfaces/types.py,sha256=p6HYmMQplDxoWr_h7GSB8sqhmOrT9tssCqgVsgtGH1g,3238
58
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/contemporary_MDP.ecsv,sha256=5KCpT8LAQVasTyIO9OhpOKA2kLXz-bpUzgyI-1NRfRQ,991
60
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/macobac.csv,sha256=3gbKyR6w02VtEajLM7h5YCOBaGcP5IwnTATwC3Z5aas,83199
61
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/macobac.ecsv,sha256=iTqVV-xZdbEvYcS_eVBdcL2F9X47U0jZu7u4HR3dThg,769
62
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/merged_file.ecsv,sha256=QsfgxpKCC3mNQJb2SAJHeUwhwlR1WSx8QCszfxLwMPY,321905
63
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/meteo_data_copernicus.ecsv,sha256=QsfgxpKCC3mNQJb2SAJHeUwhwlR1WSx8QCszfxLwMPY,321905
64
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/meteo_data_gdas.ecsv,sha256=U24RfBCsSw_bp-NccVpyE91sKofnjEsQqD9rTxEevrU,6374
65
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/observatory_configurations.json,sha256=HXIzgJm10h0ZmoEiSBPDFEiv5wJ8S1v1dAMObZHGzNA,1878
66
+ calibpipe/tests/data/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
+ calibpipe/tests/data/utils/meteo_data_winter_and_summer.ecsv,sha256=RIFzId8qlxYl4fF5BOfRsfyPlTQP2ByILnwjOyb38iM,2847673
68
+ calibpipe/tests/unittests/test_bootstrap_db.py,sha256=aRVIcSH1sU1ASbLpqXU1supjUry4KaPZqnplrEnfU_A,2730
69
+ calibpipe/tests/unittests/atmosphere/astral_testing.py,sha256=uhw31ltMpdc0C6hsuGKK-p4ySyt1gts5dqdBnSWIy8Q,2773
70
+ calibpipe/tests/unittests/atmosphere/test_meteo_data_handler.py,sha256=Lhe0e1gQQhseYYQ2aiE2nVey_L0rlgLBSZ56HCv04hA,25313
71
+ calibpipe/tests/unittests/atmosphere/test_molecular_atmosphere.py,sha256=kgtVleN7vYiiNg_9gi3rts-p-TSM7VdTofrzGkzXvoU,12177
72
+ calibpipe/tests/unittests/database/test_table_handler.py,sha256=cqnpkvUlp_hJb3kbaklbpTc4I-n_ErA9V_yOwVdOz7w,2317
73
+ calibpipe/tests/unittests/database/test_types.py,sha256=VBJ5XX8CC9UMQ6vnlKlYuM3Lwgio6wQT7gAasgFHgCo,668
74
+ calibpipe/tests/unittests/utils/test_observatory.py,sha256=w0UIvmc1mWN6-fSvvvBkMpwWKkX3YpoOeHePOXudcCI,11080
75
+ calibpipe/tools/atmospheric_base_tool.py,sha256=JStn-4uFfoTpSKXvXVxRqG447g8kXtb_Mud_m4m6crE,1995
76
+ calibpipe/tools/atmospheric_model_db_loader.py,sha256=4hb-kMyCr-NSjYzR5qSkJ9QfihajIi3dzUbpZYHQLHI,6802
77
+ calibpipe/tools/basic_tool_with_db.py,sha256=LW_EnwiQShV25lkx6uC8mFj3MfKKVxrr4uwqJMTexwA,1198
78
+ calibpipe/tools/contemporary_mdp_producer.py,sha256=y3D1vNR51h2orutUo9myGAZ4XqP_ci32pL6GKPHHYNU,3260
79
+ calibpipe/tools/init_db.py,sha256=GQ0YbhkkCbXRCe-DgfaMjP89xjUTnMLyzYqDt02J9XA,1180
80
+ calibpipe/tools/macobac_calculator.py,sha256=Y9kc9uTLRlkqb94HoZQSCwpj0tNDEEDhTvsm1bIdUkg,2689
81
+ calibpipe/tools/molecular_atmospheric_model_producer.py,sha256=u21qgSHq3bXR6lwfI-w2PUGBRlrSi0PMLh0pEhOjl3Y,7216
82
+ calibpipe/tools/observatory_data_db_loader.py,sha256=xXk7VQ6txHdMYXzPdPym3P181z5-ESSBfS_N1wMTfjQ,2301
83
+ calibpipe/tools/reference_atmospheric_model_selector.py,sha256=U1Io3rw7GG-n0d4kLbRAywtAP7sbKGtGwEsaJRi3ktw,8062
84
+ calibpipe/utils/__init__.py,sha256=duJUrgGL-1bp6lfzRiMu_WFCjgVO9MDvMOGoxk51eQE,264
85
+ calibpipe/utils/observatory.py,sha256=ZNvSVF5UzHRwH5K8UZegoNICrKuO5GB0wvVAb_T_u-M,16385
86
+ calibpipe/utils/observatory_containers.py,sha256=l2kxVLOLORwFTeVI2t7VlONVXdCmtl_8SdhlSMg6yBM,918
87
+ ctao_calibpipe-0.1.0.dist-info/licenses/AUTHORS.md,sha256=GUsdkkhsl_eFAEnqSji9g3nqZQ8JS_GihAHgK9UBGUE,219
88
+ ctao_calibpipe-0.1.0.dist-info/licenses/LICENSE,sha256=7_4TIFvKWt1rsbuxBaO2DWpaMr6wSXiPaKI272Ddu9w,1090
89
+ ctao_calibpipe-0.1.0.dist-info/METADATA,sha256=42QKtvYV0bpFSyltHudYPhGPgoSDPjpURSNLY9me_H8,3334
90
+ ctao_calibpipe-0.1.0.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
91
+ ctao_calibpipe-0.1.0.dist-info/entry_points.txt,sha256=q3BjfJ9TkImbYasXbgGT2ewZP8jyq7P3xWHcJWwXAB0,614
92
+ ctao_calibpipe-0.1.0.dist-info/top_level.txt,sha256=lK2hWb87wSJMO0ruQCd-d2JRtBwcxjgT1EQZmrNYe9k,10
93
+ ctao_calibpipe-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.3.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,8 @@
1
+ [console_scripts]
2
+ calibpipe-calculate-macobac = calibpipe.tools.macobac_calculator:main
3
+ calibpipe-create-molecular-atmospheric-model = calibpipe.tools.molecular_atmospheric_model_producer:main
4
+ calibpipe-create-molecular-density-profile = calibpipe.tools.contemporary_mdp_producer:main
5
+ calibpipe-init-db = calibpipe.tools.init_db:main
6
+ calibpipe-select-reference-atmospheric-model = calibpipe.tools.reference_atmospheric_model_selector:main
7
+ calibpipe-upload-atmospheric-model-data = calibpipe.tools.atmospheric_model_db_loader:main
8
+ calibpipe-upload-observatory-data = calibpipe.tools.observatory_data_db_loader:main
@@ -0,0 +1,13 @@
1
+ # CONTRIBUTORS
2
+
3
+ ## Current team members
4
+ - Leonid Burmistrov
5
+ - Mykhailo Dalchenko
6
+ - Tjark Miener
7
+ - Georgios Voutsinas
8
+
9
+ ## Former team members
10
+ - Gabriel Emery
11
+ - Antonio Di Pilato
12
+ - Gregoire Uhlrich
13
+ - Vadym Voitsekhovskyi
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright 2022 CTA DPPS Calibration Pipeline Authors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ calibpipe