metkitlib 1.16.0.9__cp312-cp312-manylinux_2_28_aarch64.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.
Files changed (104) hide show
  1. metkitlib/__init__.py +3 -0
  2. metkitlib/bin/bufr-sanity-check +0 -0
  3. metkitlib/bin/compare-mars-requests.py +265 -0
  4. metkitlib/bin/mars-archive-script +0 -0
  5. metkitlib/bin/parse-mars-request +0 -0
  6. metkitlib/include/metkit/api/metkit_c.h +255 -0
  7. metkitlib/include/metkit/codes/BUFRDecoder.h +47 -0
  8. metkitlib/include/metkit/codes/BufrContent.h +43 -0
  9. metkitlib/include/metkit/codes/CodesContent.h +67 -0
  10. metkitlib/include/metkit/codes/CodesHandleDeleter.h +41 -0
  11. metkitlib/include/metkit/codes/CodesSplitter.h +40 -0
  12. metkitlib/include/metkit/codes/GRIBDecoder.h +42 -0
  13. metkitlib/include/metkit/codes/GribAccessor.h +75 -0
  14. metkitlib/include/metkit/codes/GribHandle.h +121 -0
  15. metkitlib/include/metkit/codes/GribIterator.h +48 -0
  16. metkitlib/include/metkit/codes/LibEccodes.h +38 -0
  17. metkitlib/include/metkit/codes/MallocCodesContent.h +46 -0
  18. metkitlib/include/metkit/codes/api/CodesAPI.h +365 -0
  19. metkitlib/include/metkit/codes/api/CodesTypes.h +93 -0
  20. metkitlib/include/metkit/codes/api/GeoIterator.h +104 -0
  21. metkitlib/include/metkit/codes/api/KeyIterator.h +187 -0
  22. metkitlib/include/metkit/config/LibMetkit.h +56 -0
  23. metkitlib/include/metkit/fields/FieldIndex.h +58 -0
  24. metkitlib/include/metkit/fields/FieldIndexList.h +40 -0
  25. metkitlib/include/metkit/fields/SimpleFieldIndex.h +41 -0
  26. metkitlib/include/metkit/hypercube/HyperCube.h +105 -0
  27. metkitlib/include/metkit/hypercube/HyperCubePayloaded.h +88 -0
  28. metkitlib/include/metkit/mars/BaseProtocol.h +95 -0
  29. metkitlib/include/metkit/mars/ClientTask.h +206 -0
  30. metkitlib/include/metkit/mars/DHSProtocol.h +106 -0
  31. metkitlib/include/metkit/mars/MarsExpandContext.h +42 -0
  32. metkitlib/include/metkit/mars/MarsExpansion.h +83 -0
  33. metkitlib/include/metkit/mars/MarsExpension.h +28 -0
  34. metkitlib/include/metkit/mars/MarsHandle.h +83 -0
  35. metkitlib/include/metkit/mars/MarsLanguage.h +106 -0
  36. metkitlib/include/metkit/mars/MarsLocation.h +100 -0
  37. metkitlib/include/metkit/mars/MarsParsedRequest.h +44 -0
  38. metkitlib/include/metkit/mars/MarsParser.h +70 -0
  39. metkitlib/include/metkit/mars/MarsRequest.h +198 -0
  40. metkitlib/include/metkit/mars/MarsRequestHandle.h +79 -0
  41. metkitlib/include/metkit/mars/Matcher.h +88 -0
  42. metkitlib/include/metkit/mars/Param.b +43 -0
  43. metkitlib/include/metkit/mars/Param.h +84 -0
  44. metkitlib/include/metkit/mars/ParamID.h +306 -0
  45. metkitlib/include/metkit/mars/Parameter.h +87 -0
  46. metkitlib/include/metkit/mars/Quantile.h +73 -0
  47. metkitlib/include/metkit/mars/RequestEnvironment.h +58 -0
  48. metkitlib/include/metkit/mars/StepRange.b +43 -0
  49. metkitlib/include/metkit/mars/StepRange.h +164 -0
  50. metkitlib/include/metkit/mars/StepRangeNormalise.h +95 -0
  51. metkitlib/include/metkit/mars/Type.h +265 -0
  52. metkitlib/include/metkit/mars/TypeAny.h +39 -0
  53. metkitlib/include/metkit/mars/TypeDate.h +42 -0
  54. metkitlib/include/metkit/mars/TypeEnum.h +67 -0
  55. metkitlib/include/metkit/mars/TypeExpver.h +40 -0
  56. metkitlib/include/metkit/mars/TypeFloat.h +41 -0
  57. metkitlib/include/metkit/mars/TypeInteger.h +55 -0
  58. metkitlib/include/metkit/mars/TypeLowercase.h +38 -0
  59. metkitlib/include/metkit/mars/TypeMixed.h +47 -0
  60. metkitlib/include/metkit/mars/TypeParam.h +45 -0
  61. metkitlib/include/metkit/mars/TypeRange.h +41 -0
  62. metkitlib/include/metkit/mars/TypeRegex.h +49 -0
  63. metkitlib/include/metkit/mars/TypeTime.h +44 -0
  64. metkitlib/include/metkit/mars/TypeToByList.h +137 -0
  65. metkitlib/include/metkit/mars/TypeToByListQuantile.h +41 -0
  66. metkitlib/include/metkit/mars/TypesFactory.h +92 -0
  67. metkitlib/include/metkit/metkit_config.h +26 -0
  68. metkitlib/include/metkit/metkit_ecbuild_config.h +72 -0
  69. metkitlib/include/metkit/metkit_version.h +30 -0
  70. metkitlib/include/metkit/pointdb/DataSource.h +91 -0
  71. metkitlib/include/metkit/pointdb/FieldIndexer.h +128 -0
  72. metkitlib/include/metkit/pointdb/GribDataSource.h +47 -0
  73. metkitlib/include/metkit/pointdb/GribFieldInfo.h +76 -0
  74. metkitlib/include/metkit/pointdb/GribHandleDataSource.h +58 -0
  75. metkitlib/include/metkit/pointdb/PointIndex.h +121 -0
  76. metkitlib/include/metkit/pointdb/bits.h +1834 -0
  77. metkitlib/include/metkit/pointdb/masks.h +22 -0
  78. metkitlib/include/metkit/tool/MetkitTool.h +79 -0
  79. metkitlib/lib64/cmake/metkit/metkit-config-version.cmake +43 -0
  80. metkitlib/lib64/cmake/metkit/metkit-config.cmake +112 -0
  81. metkitlib/lib64/cmake/metkit/metkit-import.cmake +14 -0
  82. metkitlib/lib64/cmake/metkit/metkit-targets-relwithdebinfo.cmake +46 -0
  83. metkitlib/lib64/cmake/metkit/metkit-targets.cmake +116 -0
  84. metkitlib/lib64/libmetkit.so +0 -0
  85. metkitlib/lib64/pkgconfig/metkit.pc +33 -0
  86. metkitlib/share/metkit/axis.yaml +63 -0
  87. metkitlib/share/metkit/bufr-subtypes.yaml +140 -0
  88. metkitlib/share/metkit/chemids.yaml +209 -0
  89. metkitlib/share/metkit/language.yaml +1707 -0
  90. metkitlib/share/metkit/modifiers.yaml +341 -0
  91. metkitlib/share/metkit/obstype.yaml +182 -0
  92. metkitlib/share/metkit/odb/marsrequest.yaml +9 -0
  93. metkitlib/share/metkit/param-matching.yaml +16 -0
  94. metkitlib/share/metkit/paramids.yaml +24034 -0
  95. metkitlib/share/metkit/params-static.yaml +212 -0
  96. metkitlib/share/metkit/params.yaml +9833 -0
  97. metkitlib/share/metkit/reportype.yaml +525 -0
  98. metkitlib/share/metkit/shortname-context.yaml +192 -0
  99. metkitlib-1.16.0.9.dist-info/METADATA +75 -0
  100. metkitlib-1.16.0.9.dist-info/RECORD +104 -0
  101. metkitlib-1.16.0.9.dist-info/WHEEL +5 -0
  102. metkitlib-1.16.0.9.dist-info/licenses/AUTHORS +12 -0
  103. metkitlib-1.16.0.9.dist-info/licenses/LICENSE +190 -0
  104. metkitlib-1.16.0.9.dist-info/top_level.txt +1 -0
@@ -0,0 +1,75 @@
1
+ Metadata-Version: 2.4
2
+ Name: metkitlib
3
+ Version: 1.16.0.9
4
+ Summary: "metkitlib"
5
+ Author: file: AUTHORS
6
+ Description-Content-Type: text/markdown
7
+ License-File: LICENSE
8
+ License-File: AUTHORS
9
+ Requires-Dist: eckitlib==1.32.4.9
10
+ Requires-Dist: eccodeslib==2.45.1.9
11
+ Dynamic: license-file
12
+ Dynamic: requires-dist
13
+
14
+
15
+ [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/ecmwf/metkit/blob/develop/LICENSE)
16
+ [![Static Badge](https://github.com/ecmwf/codex/raw/refs/heads/main/Project%20Maturity/graduated_badge.svg)](https://github.com/ecmwf/codex/raw/refs/heads/main/Project%20Maturity#graduated))
17
+
18
+ > \[!IMPORTANT\]
19
+ > This software is **Graduated** and subject to ECMWF's guidelines on [Software Maturity](https://github.com/ecmwf/codex/raw/refs/heads/main/Project%20Maturity).
20
+
21
+ # metkit
22
+
23
+ ## Requirements
24
+
25
+ Runtime dependencies:
26
+
27
+ - eckit -- http://github.com/ecmwf/eckit
28
+
29
+ Build dependencies:
30
+
31
+ - CMake --- For use and installation see http://www.cmake.org/
32
+ - ecbuild --- ECMWF library of CMake macros ()
33
+
34
+ ## Installation
35
+
36
+ metkit employs an out-of-source build/install based on CMake.
37
+
38
+ Make sure ecbuild is installed and the ecbuild executable script is found ( `which ecbuild` ).
39
+
40
+ Now proceed with installation as follows:
41
+
42
+ ```bash
43
+ # Environment --- Edit as needed
44
+ srcdir=$(pwd)
45
+ builddir=build
46
+ installdir=$HOME/local
47
+
48
+ # 1. Create the build directory:
49
+ mkdir $builddir
50
+ cd $builddir
51
+
52
+ # 2. Run CMake
53
+ ecbuild --prefix=$installdir -- -DECKIT_PATH=<path/to/eckit/install> $srcdir
54
+
55
+ # 3. Compile / Install
56
+ make -j10
57
+ make install
58
+ ```
59
+
60
+ ## Release
61
+
62
+ Config files should be updated before releasing a new version.
63
+ Please refer to the documentation available on [Confluence](https://confluence.ecmwf.int/display/METK/MetKit+configuration)
64
+
65
+
66
+ ## License
67
+
68
+ Copyright 2021 European Centre for Medium-Range Weather Forecasts (ECMWF)
69
+
70
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
71
+ > http://www.apache.org/licenses/LICENSE-2.0
72
+
73
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
74
+
75
+ In applying this licence, ECMWF does not waive the privileges and immunities granted to it by virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
@@ -0,0 +1,104 @@
1
+ metkitlib/__init__.py,sha256=2SG-5LSDwpT9RPsHeOaruW2mwtQXW-VUur0EdfWBy08,137
2
+ metkitlib/bin/bufr-sanity-check,sha256=y2_hvG_Hjk3sCyRIgcaAJ1hSgeWyc4fGwSTgaj9WcXc,1123296
3
+ metkitlib/bin/compare-mars-requests.py,sha256=kYWmNOdh1p1OQ7d6EjSEhYNUZDBQFXpQnuVlMuZx8HY,9201
4
+ metkitlib/bin/mars-archive-script,sha256=xeaNUr8KTMK8kP4n_nmY5H7dXjEZhTZR9eCCKGDCRkA,1681560
5
+ metkitlib/bin/parse-mars-request,sha256=2Ag8InGh6utqCs2_KXVxRvej6W9_R93WIfPU8bmT-Tk,879432
6
+ metkitlib/include/metkit/metkit_config.h,sha256=oLGUgHS8ip1CMb5Yjf4dxEtBfiOvF6IAwXtU2CNo3sw,718
7
+ metkitlib/include/metkit/metkit_ecbuild_config.h,sha256=7ZYEQholUnMLcHeeF41vDLLzWmkPq1YnPk02nz-JjYY,2247
8
+ metkitlib/include/metkit/metkit_version.h,sha256=jt1iVsXapaGaujlCmKuoTBVvsn75jWRotLD2hvAzvpA,521
9
+ metkitlib/include/metkit/api/metkit_c.h,sha256=BA5GhMqp0-CnfKClyD_DvjK5iFaIrwWWRAPP3iqOqxw,9615
10
+ metkitlib/include/metkit/codes/BUFRDecoder.h,sha256=vNer5Gm0fTMzmmdWSe4qhlG1zRv40Zpjtq4UnGQ5vOM,1412
11
+ metkitlib/include/metkit/codes/BufrContent.h,sha256=DAelA8FacDIO2oC1o4yJtAiuyr-nJxF3N53i68-l9oU,1160
12
+ metkitlib/include/metkit/codes/CodesContent.h,sha256=q2hxzvd8EAI_EkPXsqvij6YDj2JKvtDduPAL-wDYpoE,2218
13
+ metkitlib/include/metkit/codes/CodesHandleDeleter.h,sha256=YQystCNpFLGUY28XjJQrKRtGVZV_a7mSXC-JQ6nFZCs,1224
14
+ metkitlib/include/metkit/codes/CodesSplitter.h,sha256=0WqXXjXmGgfee_e3Ava_1X-tKjqDK4oZdxAwZv1Cu6s,1067
15
+ metkitlib/include/metkit/codes/GRIBDecoder.h,sha256=4d3iTcn23dY8j0GtDgLhYUxt3QoLDhv6_2YQxRYMlMM,1327
16
+ metkitlib/include/metkit/codes/GribAccessor.h,sha256=OvPvXrLzC1bdTkvcD9tf-6Y6k4BHGQoe9kea8rflvJU,2472
17
+ metkitlib/include/metkit/codes/GribHandle.h,sha256=KCR2hhPLriphecWAXRtLuRbSad-RR3lSReVQdWRffBI,3498
18
+ metkitlib/include/metkit/codes/GribIterator.h,sha256=i9G16AmzKJGjMiA0RZOOhe4G2_-Ab7mNDPdG6Oo96JY,1188
19
+ metkitlib/include/metkit/codes/LibEccodes.h,sha256=1G6GcqLWB2lHdLuvpaQS3DQIvBSgKRgrVYIGmeBQKv0,1022
20
+ metkitlib/include/metkit/codes/MallocCodesContent.h,sha256=HQdlymhONCeb9oMB4_wFXZc-B99ea8DeIaoGkXsZPj4,1083
21
+ metkitlib/include/metkit/codes/api/CodesAPI.h,sha256=BM24--qHYnhU3Ou5OAInihQuizzp1Gkj0fX_XmlF5bI,16812
22
+ metkitlib/include/metkit/codes/api/CodesTypes.h,sha256=_Z6pUS6Vb_UcocZnNyYnIERpoJX3Loe8c0__KRoLJkk,2602
23
+ metkitlib/include/metkit/codes/api/GeoIterator.h,sha256=NLq0Ao-J-ItEpwxpRLYamSXi271PdjW3kVC2mgDnwUo,2753
24
+ metkitlib/include/metkit/codes/api/KeyIterator.h,sha256=lTToLLlhggBcM6cNHXlEC19ngm1UwotKfOzWIslgZjE,5980
25
+ metkitlib/include/metkit/config/LibMetkit.h,sha256=Lkzb3_Ro3-eq7bUnwjLOY7vGAhykugGzxBUTJHJRJP4,1634
26
+ metkitlib/include/metkit/fields/FieldIndex.h,sha256=mK5fHMBDZllTIrXEe9ZxnJpFICvi8Ri7Yf5Xz3fHjv0,1530
27
+ metkitlib/include/metkit/fields/FieldIndexList.h,sha256=MCL2qGWH-2RxLX8vTQk69glR3dGjljI6Ih30YTLNOZs,911
28
+ metkitlib/include/metkit/fields/SimpleFieldIndex.h,sha256=r1EKlRZUh6miVb4wWhTjaRXrjg-nLt8k4f5_cDLuciA,957
29
+ metkitlib/include/metkit/hypercube/HyperCube.h,sha256=IHBii_hihd7TUNAleGiSBXTwkDZH-LmW0lRMOGvhDJw,2789
30
+ metkitlib/include/metkit/hypercube/HyperCubePayloaded.h,sha256=EpzM7P6IqQTfVzJNGl1BjfB9WJEwVsStDAh0v_Mk-uU,1938
31
+ metkitlib/include/metkit/mars/BaseProtocol.h,sha256=FSfdkqlr-HV66aeiigVdiYao2P-WD9w64GrtHGxVBy8,2166
32
+ metkitlib/include/metkit/mars/ClientTask.h,sha256=LRbzJume5P8LFX0Oe7u8KvQW49AHDYQjeymw95H8ngg,5071
33
+ metkitlib/include/metkit/mars/DHSProtocol.h,sha256=_ff-4S4nmUjRxVQuQLv0OxlNdeqXA2u1MWg0A4aps6Y,3128
34
+ metkitlib/include/metkit/mars/MarsExpandContext.h,sha256=AeH9Qo3mpB4trvdp65blq2fN1J_G45WYf9dldg4_kBI,1252
35
+ metkitlib/include/metkit/mars/MarsExpansion.h,sha256=DXncMk4VngWuXijqx9BU1arN4pmOIbgiAfFGzuZgGUI,2301
36
+ metkitlib/include/metkit/mars/MarsExpension.h,sha256=5pMDpbUslmsMlshCAtMdu4LvRuN59jMNdm9XMrDI0h4,930
37
+ metkitlib/include/metkit/mars/MarsHandle.h,sha256=HUd2Pg8YL50B8toHzQFtGf_F0c8EGWubOO7UxZ8ZCBU,2025
38
+ metkitlib/include/metkit/mars/MarsLanguage.h,sha256=SzHHGa5Dgp2e_yXEZljW8BJVcWlrcTV_4XvRec9URNs,2963
39
+ metkitlib/include/metkit/mars/MarsLocation.h,sha256=iFSfIWXPRa-xoedwSd4kQKVZ0RnM6y-dwjNcQBUK-nA,2482
40
+ metkitlib/include/metkit/mars/MarsParsedRequest.h,sha256=4xXAoNTukp2v95cf7YpphAuOnoc6FHJhFXIUD-jHeBM,1215
41
+ metkitlib/include/metkit/mars/MarsParser.h,sha256=lf00NM9dXOVcqzASW4nm1NaP4XB9Eq46ZfAnRRkA2Ss,1777
42
+ metkitlib/include/metkit/mars/MarsRequest.h,sha256=ebF6Cq4ltoENF1zhKPuFtyCGhTlXelPw1bG7tx8FZSE,5669
43
+ metkitlib/include/metkit/mars/MarsRequestHandle.h,sha256=Trbzrg1m3PovXOCVxsBHYdauj7_PVAW1VlEz0LV7H64,2122
44
+ metkitlib/include/metkit/mars/Matcher.h,sha256=H0z_cYB-nf8Kq8IjDTZI6_Ax1t-T8kF5KPmUa3Laus0,3004
45
+ metkitlib/include/metkit/mars/Param.b,sha256=c3UEqog1SqI1q96Oqw-UtwK9GB0Izv_3-gJUYTqCpGY,1030
46
+ metkitlib/include/metkit/mars/Param.h,sha256=9cxAorWv9yqCF5Kgzi2KqAB1WvMzKm7tgH1qmEPG0og,2090
47
+ metkitlib/include/metkit/mars/ParamID.h,sha256=-UnBFmKR3yZ0CDZykl2w_ft3tUfgSp2Yt_nF84HJVl8,11622
48
+ metkitlib/include/metkit/mars/Parameter.h,sha256=oXDHRyDfk1ADJh09fpqko2q6jBZb3EmatF36LgtPPlM,2146
49
+ metkitlib/include/metkit/mars/Quantile.h,sha256=1_TpsHwavN66QwBILhETVNIHmaYq5f-oiYtrT__DIj4,1828
50
+ metkitlib/include/metkit/mars/RequestEnvironment.h,sha256=RVJNfH-ijGDbCh2XX4ehWm5j82Be8yLhDL7a4g7gjNk,1867
51
+ metkitlib/include/metkit/mars/StepRange.b,sha256=57hrjgTRoGBA1RIo6SpKqLsdEe_LiaIuTvfzzmF2-UI,1038
52
+ metkitlib/include/metkit/mars/StepRange.h,sha256=xwVLjctih3Cgr3a_w4j2qlkuJVBo5ZpVAQmEXyF60uU,3594
53
+ metkitlib/include/metkit/mars/StepRangeNormalise.h,sha256=5vdvHKyYW7Srxj9lHF6MOQ0SaE16MfpQU-xUjc1AqTc,2959
54
+ metkitlib/include/metkit/mars/Type.h,sha256=FP6P2YZCFYl31tzAZcFDQBYsymQDpBp3ExmewA7PPHA,8377
55
+ metkitlib/include/metkit/mars/TypeAny.h,sha256=O9Xah-7q1EyLn56HZQu8-RKG7h-K7QJsz9y8Kstl_as,1176
56
+ metkitlib/include/metkit/mars/TypeDate.h,sha256=uMdaf19C4alYPctrqNN4zmJE0r7FFbmpJB_0UTZOO-M,1241
57
+ metkitlib/include/metkit/mars/TypeEnum.h,sha256=bPaiRwoBBX3V8EGpf3_Y8MgiEs_k-A_G02hmbuZ3PJc,2157
58
+ metkitlib/include/metkit/mars/TypeExpver.h,sha256=qW71EGuktufF7CsEQCbyyqOuxHlT3ZJ3QOVcHZ6kv1g,1172
59
+ metkitlib/include/metkit/mars/TypeFloat.h,sha256=McG5tjsPTYPZBvIB_xWi--89_ULDziHqJiOyo7kervg,1198
60
+ metkitlib/include/metkit/mars/TypeInteger.h,sha256=QckhEwgnwhLnLDff14jKJAFnN6OKv5TRk5kto6dTQXQ,1386
61
+ metkitlib/include/metkit/mars/TypeLowercase.h,sha256=B2cga3R7pF8kg-DpDzHvkTvHjqTIXhHx0YjiM8WzrIQ,1178
62
+ metkitlib/include/metkit/mars/TypeMixed.h,sha256=-112zH1b2HHQaxTX-PazawWkkK7cwUEBVjB8f23YtXE,1302
63
+ metkitlib/include/metkit/mars/TypeParam.h,sha256=Bt4MZ2AwbJgEbt2J_CZ8KkP5v2Tx30hlqK2fEqEd4KY,1297
64
+ metkitlib/include/metkit/mars/TypeRange.h,sha256=zxaSydHWyNBWT88JR_RCGrbbjXgkNMku-hCyNXAAaho,1164
65
+ metkitlib/include/metkit/mars/TypeRegex.h,sha256=-R9x_TA-iZuHet3dIz4LjGwsrLHpOHa7A-g51QauSmw,1334
66
+ metkitlib/include/metkit/mars/TypeTime.h,sha256=sE-FjDd5VdKNeRI1ZnZM90_DVJbsWHuHXRLAaTyRv00,1241
67
+ metkitlib/include/metkit/mars/TypeToByList.h,sha256=3srgFaBf5l4cxtD7Xv5Md9EWFehl2XqGcKNHoFh0Vqg,4771
68
+ metkitlib/include/metkit/mars/TypeToByListQuantile.h,sha256=mm-zZdUsIsaQHuhHBsRD5t-Hq3_TaI9ZGpNLPN2gvTE,1258
69
+ metkitlib/include/metkit/mars/TypesFactory.h,sha256=fqYKApOrjTcuKsAGnuP3LZq-qk7P4FdXxE5kSdVBspY,2251
70
+ metkitlib/include/metkit/pointdb/DataSource.h,sha256=7x7PVwO1yms-qGmK18RmAL9zZs5z9mW9D047T7xgu7w,1971
71
+ metkitlib/include/metkit/pointdb/FieldIndexer.h,sha256=fYZTaVFeCCnH8toDWfQ65ru9oRQHc8ulat9jW8miuVE,2230
72
+ metkitlib/include/metkit/pointdb/GribDataSource.h,sha256=fHnVuOb8Rx1j1vKmDhbBIgb4ohTL_ISQB6T0UIkkV_U,1143
73
+ metkitlib/include/metkit/pointdb/GribFieldInfo.h,sha256=1znNlI9R1KEyfMQ2zjFyrw_0QkeQye24ZyjIThz-XDc,1686
74
+ metkitlib/include/metkit/pointdb/GribHandleDataSource.h,sha256=Vh_U0asyHtG2PwH7Bo9UVeHB-Xbkff280X48NdgOD-w,1611
75
+ metkitlib/include/metkit/pointdb/PointIndex.h,sha256=o50LVz4a3zfBWhS5TkuHyeDSFsMFZhHKA6Vgwn8_Loo,3011
76
+ metkitlib/include/metkit/pointdb/bits.h,sha256=QbhKzuvXtzcR1YWlZcP8qrdrPSKURz2pJ5dUdZLFfu4,219193
77
+ metkitlib/include/metkit/pointdb/masks.h,sha256=OvTUvE42oFUjpIl-NaKNLkGOrmZII5meL9v0n0UIbnI,1709
78
+ metkitlib/include/metkit/tool/MetkitTool.h,sha256=wiWyjHC-0z8EUVVoSBH7HQe38L2St2Tv7avSoZpzTB8,2024
79
+ metkitlib/lib64/libmetkit.so,sha256=SGDK22zalulgz0t2aWsSixrqxfl_OkzlAn_JIZvwEk0,22150784
80
+ metkitlib/lib64/cmake/metkit/metkit-config-version.cmake,sha256=KZDBcOi8AlnpgSTpanqnk0u1anMXnR_a8b6lDdQxO3E,1862
81
+ metkitlib/lib64/cmake/metkit/metkit-config.cmake,sha256=bjcJ2FilI0R7EnBU5g9lSPFYTsDbLJs2Gsgn_i0XzBI,3779
82
+ metkitlib/lib64/cmake/metkit/metkit-import.cmake,sha256=bj6_94y0Td7HS_Sk9wstcaj1R1Hvf6TdWg-P7rcbE6s,421
83
+ metkitlib/lib64/cmake/metkit/metkit-targets-relwithdebinfo.cmake,sha256=265CbiSGEZKS6j98S8j19YeN3CyQXGGurPbScUNeg4A,2245
84
+ metkitlib/lib64/cmake/metkit/metkit-targets.cmake,sha256=iJ0g0uSizT0DV1GW2gRVgGXCW8GwLpahwF3NzGO7v0M,4501
85
+ metkitlib/lib64/pkgconfig/metkit.pc,sha256=hPYCPVcJE_nlcVU7vn4FNhF9NWVoL8aFM9gGcI97PW0,1180
86
+ metkitlib/share/metkit/axis.yaml,sha256=1n8lNtLYHMfQXL0aRSIPFqWy-Ux2vENjO5R6dr0zMas,861
87
+ metkitlib/share/metkit/bufr-subtypes.yaml,sha256=nnRqtqxagiioghw9VLk5Gqemp7C-tw8gGkJhRBmDONo,1783
88
+ metkitlib/share/metkit/chemids.yaml,sha256=9Brd5i86VkXdG--I1WexJ8UEgYcb-03ld8mHuJZ85EE,7296
89
+ metkitlib/share/metkit/language.yaml,sha256=h8odKH9r7xcaLPcw0np8250ysHhpZjtMQ-n-SYZxsbk,39289
90
+ metkitlib/share/metkit/modifiers.yaml,sha256=SMI1YRjQN1XZH3UvqfUZurQwptNHylI1T-F_0vtpT2E,6751
91
+ metkitlib/share/metkit/obstype.yaml,sha256=UvnAtiDNbiSgC_tDneC_6--uBXxmpMwVU_sddit_kq4,7358
92
+ metkitlib/share/metkit/param-matching.yaml,sha256=OoI0gc6f6rBOUniHUH5k8CjYIzSf8fZ0GnwTkkc7k1Y,636
93
+ metkitlib/share/metkit/paramids.yaml,sha256=Lr4Tn3CCUogW9mJc3vfCicgtTzwS8avpX5ssCFGuAek,475120
94
+ metkitlib/share/metkit/params-static.yaml,sha256=Y1N-aMWnne8fRRACZ_v4qDUabhAuchvadYdTBOVlvdw,2723
95
+ metkitlib/share/metkit/params.yaml,sha256=vbFB7ZV9R0K0DZASNtBRzBn8-YL5FT029m-tuB6qgvc,117614
96
+ metkitlib/share/metkit/reportype.yaml,sha256=F2vii1WJWFPR5ycno0kjgxD0zguQmO3skiLJ2PRDwwU,13717
97
+ metkitlib/share/metkit/shortname-context.yaml,sha256=U1nbl3PtZ-XOFpu5PvrlA444mjPWJBLptY1WQk14teM,1379
98
+ metkitlib/share/metkit/odb/marsrequest.yaml,sha256=VfbX5rm3EMDaFZmWobnuhPpg1cSSspbciiSriB1f74I,127
99
+ metkitlib-1.16.0.9.dist-info/licenses/AUTHORS,sha256=FMSaLwcHveEAJXKaqs4Qo_NfA5pNFy4mhCsOQgx2SeA,256
100
+ metkitlib-1.16.0.9.dist-info/licenses/LICENSE,sha256=kyV4XdFApAYAhdlVRZppO6f1Czd7KLJYnLqFQwQ_zkc,10751
101
+ metkitlib-1.16.0.9.dist-info/METADATA,sha256=skTk1tZvJ_xDUfzaKFMVhVOlJLZTVFNCp6v-6f5Xy6g,2547
102
+ metkitlib-1.16.0.9.dist-info/WHEEL,sha256=i7vxtqfgRxFyLYArziRyEI8rJr76D_-0mffvAh-Fj0g,114
103
+ metkitlib-1.16.0.9.dist-info/top_level.txt,sha256=oN1wgDQi3yaDWPgm4sejPwg4C-eZfLgHxbjrH_UFCb4,10
104
+ metkitlib-1.16.0.9.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-manylinux_2_28_aarch64
5
+
@@ -0,0 +1,12 @@
1
+ metkit authors
2
+ =============
3
+
4
+ The main development of metkit is done at the European Centre for Medium-Range Weather Forecasts (ECMWF - http://www.ecmwf.int )
5
+
6
+ Current developers
7
+ ==================
8
+
9
+ Baudouin Raoult
10
+ Tiago Quintino
11
+ Simon Smart
12
+ Matthias Zink
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 1996- ECMWF
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
@@ -0,0 +1 @@
1
+ metkitlib