roc-film 1.13.4__tar.gz → 1.14.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {roc_film-1.13.4 → roc_film-1.14.0}/LICENSE +127 -125
- roc_film-1.14.0/PKG-INFO +60 -0
- roc_film-1.14.0/README.md +28 -0
- roc_film-1.14.0/pyproject.toml +58 -0
- roc_film-1.14.0/roc/__init__.py +2 -0
- roc_film-1.14.0/roc/film/__init__.py +5 -0
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/commands.py +372 -323
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/config/__init__.py +0 -1
- roc_film-1.14.0/roc/film/constants.py +171 -0
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/descriptor.json +126 -95
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/exceptions.py +28 -27
- roc_film-1.14.0/roc/film/tasks/__init__.py +19 -0
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tasks/cat_solo_hk.py +86 -74
- roc_film-1.14.0/roc/film/tasks/cdf_postpro.py +854 -0
- roc_film-1.14.0/roc/film/tasks/check_dds.py +111 -0
- roc_film-1.14.0/roc/film/tasks/db_to_anc_bia_sweep_table.py +381 -0
- roc_film-1.14.0/roc/film/tasks/dds_to_l0.py +602 -0
- roc_film-1.14.0/roc/film/tasks/export_solo_coord.py +147 -0
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tasks/file_handler.py +91 -75
- roc_film-1.14.0/roc/film/tasks/l0_to_hk.py +279 -0
- roc_film-1.14.0/roc/film/tasks/l0_to_l1_bia_current.py +80 -0
- roc_film-1.14.0/roc/film/tasks/l0_to_l1_bia_sweep.py +814 -0
- roc_film-1.14.0/roc/film/tasks/l0_to_l1_sbm.py +478 -0
- roc_film-1.14.0/roc/film/tasks/l0_to_l1_surv.py +365 -0
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tasks/make_daily_tm.py +40 -37
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tasks/merge_tcreport.py +77 -71
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tasks/merge_tmraw.py +102 -89
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tasks/parse_dds_xml.py +21 -20
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tasks/set_l0_utc.py +51 -49
- roc_film-1.14.0/roc/film/tests/cdf_compare.py +565 -0
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/hdf5_compare.py +84 -62
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/test_dds_to_l0.py +93 -51
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/test_dds_to_tc.py +8 -11
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/test_dds_to_tm.py +8 -10
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/test_film.py +161 -116
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/test_l0_to_hk.py +64 -36
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/test_l0_to_l1_bia.py +10 -14
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/test_l0_to_l1_sbm.py +14 -19
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/test_l0_to_l1_surv.py +68 -41
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/test_metadata.py +21 -20
- roc_film-1.14.0/roc/film/tests/tests.py +1333 -0
- roc_film-1.14.0/roc/film/tools/__init__.py +8 -0
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tools/dataset_tasks.py +34 -2
- roc_film-1.14.0/roc/film/tools/file_helpers.py +877 -0
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tools/l0.py +402 -324
- roc_film-1.14.0/roc/film/tools/metadata.py +374 -0
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tools/skeleton.py +12 -17
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tools/tools.py +109 -92
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tools/xlsx2skt.py +161 -139
- roc_film-1.13.4/PKG-INFO +0 -120
- roc_film-1.13.4/README.md +0 -86
- roc_film-1.13.4/pyproject.toml +0 -59
- roc_film-1.13.4/roc/__init__.py +0 -1
- roc_film-1.13.4/roc/film/__init__.py +0 -5
- roc_film-1.13.4/roc/film/constants.py +0 -135
- roc_film-1.13.4/roc/film/tasks/__init__.py +0 -19
- roc_film-1.13.4/roc/film/tasks/cdf_postpro.py +0 -725
- roc_film-1.13.4/roc/film/tasks/check_dds.py +0 -117
- roc_film-1.13.4/roc/film/tasks/dds_to_l0.py +0 -550
- roc_film-1.13.4/roc/film/tasks/l0_to_anc_bia_sweep_table.py +0 -348
- roc_film-1.13.4/roc/film/tasks/l0_to_hk.py +0 -265
- roc_film-1.13.4/roc/film/tasks/l0_to_l1_bia_current.py +0 -72
- roc_film-1.13.4/roc/film/tasks/l0_to_l1_bia_sweep.py +0 -726
- roc_film-1.13.4/roc/film/tasks/l0_to_l1_sbm.py +0 -436
- roc_film-1.13.4/roc/film/tasks/l0_to_l1_surv.py +0 -310
- roc_film-1.13.4/roc/film/tests/tests.py +0 -986
- roc_film-1.13.4/roc/film/tools/__init__.py +0 -8
- roc_film-1.13.4/roc/film/tools/file_helpers.py +0 -756
- roc_film-1.13.4/roc/film/tools/metadata.py +0 -354
- roc_film-1.13.4/setup.py +0 -49
- {roc_film-1.13.4 → roc_film-1.14.0}/roc/film/tests/__init__.py +0 -0
@@ -1,4 +1,7 @@
|
|
1
|
-
|
1
|
+
|
2
|
+
CeCILL FREE SOFTWARE LICENSE AGREEMENT
|
3
|
+
|
4
|
+
Version 2.1 dated 2013-06-21
|
2
5
|
|
3
6
|
|
4
7
|
Notice
|
@@ -7,27 +10,27 @@ This Agreement is a Free Software license agreement that is the result
|
|
7
10
|
of discussions between its authors in order to ensure compliance with
|
8
11
|
the two main principles guiding its drafting:
|
9
12
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
both authors and holders of the economic rights over software.
|
13
|
+
* firstly, compliance with the principles governing the distribution
|
14
|
+
of Free Software: access to source code, broad rights granted to users,
|
15
|
+
* secondly, the election of a governing law, French law, with which it
|
16
|
+
is conformant, both as regards the law of torts and intellectual
|
17
|
+
property law, and the protection that it offers to both authors and
|
18
|
+
holders of the economic rights over software.
|
17
19
|
|
18
|
-
The authors of the CeCILL
|
20
|
+
The authors of the CeCILL (for Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre])
|
19
21
|
license are:
|
20
22
|
|
21
|
-
Commissariat à l'
|
22
|
-
and industrial research establishment,
|
23
|
-
business at 25 rue Leblanc, immeuble Le
|
23
|
+
Commissariat à l'énergie atomique et aux énergies alternatives - CEA, a
|
24
|
+
public scientific, technical and industrial research establishment,
|
25
|
+
having its principal place of business at 25 rue Leblanc, immeuble Le
|
26
|
+
Ponant D, 75015 Paris, France.
|
24
27
|
|
25
28
|
Centre National de la Recherche Scientifique - CNRS, a public scientific
|
26
29
|
and technological establishment, having its principal place of business
|
27
30
|
at 3 rue Michel-Ange, 75794 Paris cedex 16, France.
|
28
31
|
|
29
32
|
Institut National de Recherche en Informatique et en Automatique -
|
30
|
-
|
33
|
+
Inria, a public scientific and technological establishment, having its
|
31
34
|
principal place of business at Domaine de Voluceau, Rocquencourt, BP
|
32
35
|
105, 78153 Le Chesnay cedex, France.
|
33
36
|
|
@@ -35,11 +38,11 @@ principal place of business at Domaine de Voluceau, Rocquencourt, BP
|
|
35
38
|
Preamble
|
36
39
|
|
37
40
|
The purpose of this Free Software license agreement is to grant users
|
38
|
-
the right to modify and
|
41
|
+
the right to modify and redistribute the software governed by this
|
42
|
+
license within the framework of an open source distribution model.
|
39
43
|
|
40
|
-
The exercising of this right is conditional upon
|
41
|
-
|
42
|
-
the software so as to contribute to its evolution.
|
44
|
+
The exercising of this right is conditional upon certain obligations for
|
45
|
+
users so as to preserve this status for all subsequent redistributions.
|
43
46
|
|
44
47
|
In consideration of access to the source code and the rights to copy,
|
45
48
|
modify and redistribute granted by the license, users are provided only
|
@@ -62,6 +65,10 @@ removed herefrom.
|
|
62
65
|
This Agreement may apply to any or all software for which the holder of
|
63
66
|
the economic rights decides to submit the use thereof to its provisions.
|
64
67
|
|
68
|
+
Frequently asked questions can be found on the official website of the
|
69
|
+
CeCILL licenses family (http://www.cecill.info/index.en.html) for any
|
70
|
+
necessary clarification.
|
71
|
+
|
65
72
|
|
66
73
|
Article 1 - DEFINITIONS
|
67
74
|
|
@@ -80,7 +87,7 @@ Object Code form and, where applicable, its documentation, "as is" when
|
|
80
87
|
it is first distributed under the terms and conditions of the Agreement.
|
81
88
|
|
82
89
|
Modified Software: means the Software modified by at least one
|
83
|
-
|
90
|
+
Contribution.
|
84
91
|
|
85
92
|
Source Code: means all the Software's instructions and program lines to
|
86
93
|
which access is required so as to modify the Software.
|
@@ -93,23 +100,34 @@ Software.
|
|
93
100
|
|
94
101
|
Licensee: means the Software user(s) having accepted the Agreement.
|
95
102
|
|
96
|
-
Contributor: means a Licensee having made at least one
|
97
|
-
Contribution.
|
103
|
+
Contributor: means a Licensee having made at least one Contribution.
|
98
104
|
|
99
105
|
Licensor: means the Holder, or any other individual or legal entity, who
|
100
106
|
distributes the Software under the Agreement.
|
101
107
|
|
102
|
-
|
103
|
-
|
104
|
-
|
108
|
+
Contribution: means any or all modifications, corrections, translations,
|
109
|
+
adaptations and/or new functions integrated into the Software by any or
|
110
|
+
all Contributors, as well as any or all Internal Modules.
|
105
111
|
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
112
|
+
Module: means a set of sources files including their documentation that
|
113
|
+
enables supplementary functions or services in addition to those offered
|
114
|
+
by the Software.
|
115
|
+
|
116
|
+
External Module: means any or all Modules, not derived from the
|
117
|
+
Software, so that this Module and the Software run in separate address
|
118
|
+
spaces, with one calling the other when they are run.
|
110
119
|
|
111
|
-
|
112
|
-
|
120
|
+
Internal Module: means any or all Module, connected to the Software so
|
121
|
+
that they both execute in the same address space.
|
122
|
+
|
123
|
+
GNU GPL: means the GNU General Public License version 2 or any
|
124
|
+
subsequent version, as published by the Free Software Foundation Inc.
|
125
|
+
|
126
|
+
GNU Affero GPL: means the GNU Affero General Public License version 3 or
|
127
|
+
any subsequent version, as published by the Free Software Foundation Inc.
|
128
|
+
|
129
|
+
EUPL: means the European Union Public License version 1.1 or any
|
130
|
+
subsequent version, as published by the European Commission.
|
113
131
|
|
114
132
|
Parties: mean both the Licensee and the Licensor.
|
115
133
|
|
@@ -120,8 +138,8 @@ These expressions may be used both in singular and plural form.
|
|
120
138
|
|
121
139
|
The purpose of the Agreement is the grant by the Licensor to the
|
122
140
|
Licensee of a non-exclusive, transferable and worldwide license for the
|
123
|
-
Software as set forth in Article 5 hereinafter for the whole
|
124
|
-
protection granted by the rights over said Software.
|
141
|
+
Software as set forth in Article 5 <#scope> hereinafter for the whole
|
142
|
+
term of the protection granted by the rights over said Software.
|
125
143
|
|
126
144
|
|
127
145
|
Article 3 - ACCEPTANCE
|
@@ -130,18 +148,17 @@ protection granted by the rights over said Software.
|
|
130
148
|
conditions of this Agreement upon the occurrence of the first of the
|
131
149
|
following events:
|
132
150
|
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
granted hereunder.
|
151
|
+
* (i) loading the Software by any or all means, notably, by
|
152
|
+
downloading from a remote server, or by loading from a physical medium;
|
153
|
+
* (ii) the first time the Licensee exercises any of the rights granted
|
154
|
+
hereunder.
|
138
155
|
|
139
156
|
3.2 One copy of the Agreement, containing a notice relating to the
|
140
157
|
characteristics of the Software, to the limited warranty, and to the
|
141
158
|
fact that its use is restricted to experienced users has been provided
|
142
159
|
to the Licensee prior to its acceptance as set forth in Article 3.1
|
143
|
-
hereinabove, and the Licensee hereby acknowledges that it
|
144
|
-
understood it.
|
160
|
+
<#accepting> hereinabove, and the Licensee hereby acknowledges that it
|
161
|
+
has read and understood it.
|
145
162
|
|
146
163
|
|
147
164
|
Article 4 - EFFECTIVE DATE AND TERM
|
@@ -150,7 +167,7 @@ understood it.
|
|
150
167
|
4.1 EFFECTIVE DATE
|
151
168
|
|
152
169
|
The Agreement shall become effective on the date when it is accepted by
|
153
|
-
the Licensee as set forth in Article 3.1
|
170
|
+
the Licensee as set forth in Article 3.1 <#accepting>.
|
154
171
|
|
155
172
|
|
156
173
|
4.2 TERM
|
@@ -180,30 +197,29 @@ The Licensee is authorized to use the Software, without any limitation
|
|
180
197
|
as to its fields of application, with it being hereinafter specified
|
181
198
|
that this comprises:
|
182
199
|
|
183
|
-
|
184
|
-
|
200
|
+
1. permanent or temporary reproduction of all or part of the Software
|
201
|
+
by any or all means and in any or all form.
|
185
202
|
|
186
|
-
|
187
|
-
|
203
|
+
2. loading, displaying, running, or storing the Software on any or all
|
204
|
+
medium.
|
188
205
|
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
206
|
+
3. entitlement to observe, study or test its operation so as to
|
207
|
+
determine the ideas and principles behind any or all constituent
|
208
|
+
elements of said Software. This shall apply when the Licensee
|
209
|
+
carries out any or all loading, displaying, running, transmission or
|
210
|
+
storage operation as regards the Software, that it is entitled to
|
211
|
+
carry out hereunder.
|
195
212
|
|
196
213
|
|
197
|
-
5.2
|
214
|
+
5.2 ENTITLEMENT TO MAKE CONTRIBUTIONS
|
198
215
|
|
199
|
-
The right
|
216
|
+
The right to make Contributions includes the right to translate, adapt,
|
200
217
|
arrange, or make any or all modifications to the Software, and the right
|
201
|
-
to reproduce the resulting software.
|
202
|
-
right to create a Derivative Software.
|
218
|
+
to reproduce the resulting software.
|
203
219
|
|
204
|
-
The Licensee is authorized to make any or all
|
220
|
+
The Licensee is authorized to make any or all Contributions to the
|
205
221
|
Software provided that it includes an explicit notice that it is the
|
206
|
-
author of said
|
222
|
+
author of said Contribution and indicates the date of the creation thereof.
|
207
223
|
|
208
224
|
|
209
225
|
5.3 RIGHT OF DISTRIBUTION
|
@@ -225,69 +241,62 @@ The Licensee is authorized to distribute true copies of the Software in
|
|
225
241
|
Source Code or Object Code form, provided that said distribution
|
226
242
|
complies with all the provisions of the Agreement and is accompanied by:
|
227
243
|
|
228
|
-
|
244
|
+
1. a copy of the Agreement,
|
229
245
|
|
230
|
-
|
231
|
-
|
246
|
+
2. a notice relating to the limitation of both the Licensor's warranty
|
247
|
+
and liability as set forth in Articles 8 and 9,
|
232
248
|
|
233
249
|
and that, in the event that only the Object Code of the Software is
|
234
250
|
redistributed, the Licensee allows effective access to the full Source
|
235
|
-
Code of the Software
|
251
|
+
Code of the Software for a period of at least three years from the
|
236
252
|
distribution of the Software, it being understood that the additional
|
237
|
-
cost of
|
238
|
-
|
253
|
+
acquisition cost of the Source Code shall not exceed the cost of the
|
254
|
+
data transfer.
|
239
255
|
|
240
256
|
|
241
257
|
5.3.2 DISTRIBUTION OF MODIFIED SOFTWARE
|
242
258
|
|
243
|
-
When the Licensee makes
|
244
|
-
|
245
|
-
|
259
|
+
When the Licensee makes a Contribution to the Software, the terms and
|
260
|
+
conditions for the distribution of the resulting Modified Software
|
261
|
+
become subject to all the provisions of this Agreement.
|
246
262
|
|
247
263
|
The Licensee is authorized to distribute the Modified Software, in
|
248
264
|
source code or object code form, provided that said distribution
|
249
265
|
complies with all the provisions of the Agreement and is accompanied by:
|
250
266
|
|
251
|
-
|
267
|
+
1. a copy of the Agreement,
|
268
|
+
|
269
|
+
2. a notice relating to the limitation of both the Licensor's warranty
|
270
|
+
and liability as set forth in Articles 8 and 9,
|
252
271
|
|
253
|
-
|
254
|
-
|
272
|
+
and, in the event that only the object code of the Modified Software is
|
273
|
+
redistributed,
|
255
274
|
|
256
|
-
|
257
|
-
Software
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
the cost of transferring the data.
|
275
|
+
3. a note stating the conditions of effective access to the full source
|
276
|
+
code of the Modified Software for a period of at least three years
|
277
|
+
from the distribution of the Modified Software, it being understood
|
278
|
+
that the additional acquisition cost of the source code shall not
|
279
|
+
exceed the cost of the data transfer.
|
262
280
|
|
263
281
|
|
264
|
-
5.3.3 DISTRIBUTION OF
|
282
|
+
5.3.3 DISTRIBUTION OF EXTERNAL MODULES
|
265
283
|
|
266
|
-
When the Licensee
|
267
|
-
|
268
|
-
|
269
|
-
concerning the rights over the Software as defined in Article 6.4.
|
270
|
-
In the event the creation of the Derivative Software required modification
|
271
|
-
of the Source Code, the Licensee undertakes that:
|
284
|
+
When the Licensee has developed an External Module, the terms and
|
285
|
+
conditions of this Agreement do not apply to said External Module, that
|
286
|
+
may be distributed under a separate license agreement.
|
272
287
|
|
273
|
-
1. the resulting Modified Software will be governed by this Agreement,
|
274
|
-
2. the Integrated Contributions in the resulting Modified Software
|
275
|
-
will be clearly identified and documented,
|
276
|
-
3. the Licensee will allow effective access to the source code of the
|
277
|
-
Modified Software, at a minimum during the entire period of
|
278
|
-
distribution of the Derivative Software, such that such
|
279
|
-
modifications may be carried over in a subsequent version of the
|
280
|
-
Software; it being understood that the additional cost of
|
281
|
-
purchasing the source code of the Modified Software shall not
|
282
|
-
exceed the cost of transferring the data.
|
283
288
|
|
289
|
+
5.3.4 COMPATIBILITY WITH OTHER LICENSES
|
284
290
|
|
285
|
-
|
291
|
+
The Licensee can include a code that is subject to the provisions of one
|
292
|
+
of the versions of the GNU GPL, GNU Affero GPL and/or EUPL in the
|
293
|
+
Modified or unmodified Software, and distribute that entire code under
|
294
|
+
the terms of the same version of the GNU GPL, GNU Affero GPL and/or EUPL.
|
286
295
|
|
287
|
-
|
288
|
-
the
|
289
|
-
|
290
|
-
|
296
|
+
The Licensee can include the Modified or unmodified Software in a code
|
297
|
+
that is subject to the provisions of one of the versions of the GNU GPL,
|
298
|
+
GNU Affero GPL and/or EUPL and distribute that entire code under the
|
299
|
+
terms of the same version of the GNU GPL, GNU Affero GPL and/or EUPL.
|
291
300
|
|
292
301
|
|
293
302
|
Article 6 - INTELLECTUAL PROPERTY
|
@@ -302,44 +311,39 @@ and no one shall be entitled to modify the terms and conditions for the
|
|
302
311
|
distribution of said Initial Software.
|
303
312
|
|
304
313
|
The Holder undertakes that the Initial Software will remain ruled at
|
305
|
-
least by this Agreement, for the duration set forth in Article 4.2
|
314
|
+
least by this Agreement, for the duration set forth in Article 4.2 <#term>.
|
306
315
|
|
307
316
|
|
308
|
-
6.2 OVER THE
|
317
|
+
6.2 OVER THE CONTRIBUTIONS
|
309
318
|
|
310
|
-
The Licensee who develops
|
319
|
+
The Licensee who develops a Contribution is the owner of the
|
311
320
|
intellectual property rights over this Contribution as defined by
|
312
321
|
applicable law.
|
313
322
|
|
314
323
|
|
315
|
-
6.3 OVER THE
|
324
|
+
6.3 OVER THE EXTERNAL MODULES
|
316
325
|
|
317
|
-
The Licensee who develops
|
318
|
-
intellectual property rights over this
|
326
|
+
The Licensee who develops an External Module is the owner of the
|
327
|
+
intellectual property rights over this External Module as defined by
|
319
328
|
applicable law and is free to choose the type of agreement that shall
|
320
|
-
govern its distribution
|
329
|
+
govern its distribution.
|
321
330
|
|
322
331
|
|
323
|
-
6.4
|
332
|
+
6.4 JOINT PROVISIONS
|
324
333
|
|
325
334
|
The Licensee expressly undertakes:
|
326
335
|
|
327
|
-
|
328
|
-
|
336
|
+
1. not to remove, or modify, in any manner, the intellectual property
|
337
|
+
notices attached to the Software;
|
329
338
|
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
3. to ensure that use of the Software, its intellectual property
|
334
|
-
notices and the fact that it is governed by the Agreement is
|
335
|
-
indicated in a text that is easily accessible, specifically from
|
336
|
-
the interface of any Derivative Software.
|
339
|
+
2. to reproduce said notices, in an identical manner, in the copies of
|
340
|
+
the Software modified or not.
|
337
341
|
|
338
342
|
The Licensee undertakes not to directly or indirectly infringe the
|
339
|
-
intellectual property rights of the Holder and/or
|
340
|
-
|
341
|
-
measures required to ensure respect of said intellectual
|
342
|
-
of the Holder and/or Contributors.
|
343
|
+
intellectual property rights on the Software of the Holder and/or
|
344
|
+
Contributors, and to take, where applicable, vis-à-vis its staff, any
|
345
|
+
and all measures required to ensure respect of said intellectual
|
346
|
+
property rights of the Holder and/or Contributors.
|
343
347
|
|
344
348
|
|
345
349
|
Article 7 - RELATED SERVICES
|
@@ -400,13 +404,13 @@ or properties.
|
|
400
404
|
|
401
405
|
9.2 The Licensor hereby represents, in good faith, that it is entitled
|
402
406
|
to grant all the rights over the Software (including in particular the
|
403
|
-
rights set forth in Article 5).
|
407
|
+
rights set forth in Article 5 <#scope>).
|
404
408
|
|
405
409
|
9.3 The Licensee acknowledges that the Software is supplied "as is" by
|
406
410
|
the Licensor without any other express or tacit warranty, other than
|
407
|
-
that provided for in Article 9.2 and, in particular,
|
408
|
-
as to its commercial value, its secured, safe,
|
409
|
-
nature.
|
411
|
+
that provided for in Article 9.2 <#good-faith> and, in particular,
|
412
|
+
without any warranty as to its commercial value, its secured, safe,
|
413
|
+
innovative or relevant nature.
|
410
414
|
|
411
415
|
Specifically, the Licensor does not warrant that the Software is free
|
412
416
|
from any error, that it will operate without interruption, that it will
|
@@ -421,7 +425,7 @@ arising out of any or all proceedings for infringement that may be
|
|
421
425
|
instituted in respect of the use, modification and redistribution of the
|
422
426
|
Software. Nevertheless, should such proceedings be instituted against
|
423
427
|
the Licensee, the Licensor shall provide it with technical and legal
|
424
|
-
|
428
|
+
expertise for its defense. Such technical and legal expertise shall be
|
425
429
|
decided on a case-by-case basis between the relevant Licensor and the
|
426
430
|
Licensee pursuant to a memorandum of understanding. The Licensor
|
427
431
|
disclaims any and all liability as regards the Licensee's use of the
|
@@ -498,7 +502,8 @@ address new issues encountered by Free Software.
|
|
498
502
|
|
499
503
|
12.3 Any Software distributed under a given version of the Agreement may
|
500
504
|
only be subsequently distributed under the same version of the Agreement
|
501
|
-
or a subsequent version.
|
505
|
+
or a subsequent version, subject to the provisions of Article 5.3.4
|
506
|
+
<#compatibility>.
|
502
507
|
|
503
508
|
|
504
509
|
Article 13 - GOVERNING LAW AND JURISDICTION
|
@@ -511,6 +516,3 @@ that may arise during the performance of the Agreement.
|
|
511
516
|
occurrence, and unless emergency proceedings are necessary, the
|
512
517
|
disagreements or disputes shall be referred to the Paris Courts having
|
513
518
|
jurisdiction, by the more diligent Party.
|
514
|
-
|
515
|
-
|
516
|
-
Version 1.0 dated 2006-09-05.
|
roc_film-1.14.0/PKG-INFO
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
Metadata-Version: 2.3
|
2
|
+
Name: roc-film
|
3
|
+
Version: 1.14.0
|
4
|
+
Summary: RPW FILe Maker (FILM): Plugin to make RPW L0, L1 and HK data files
|
5
|
+
License: CeCILL
|
6
|
+
Author: Xavier Bonnin
|
7
|
+
Author-email: xavier.bonnin@obspm.fr
|
8
|
+
Requires-Python: >=3.9,<4
|
9
|
+
Classifier: License :: Other/Proprietary License
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
11
|
+
Classifier: Programming Language :: Python :: 3.9
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
16
|
+
Requires-Dist: edds_process
|
17
|
+
Requires-Dist: h5py (>=3.7,<4.0)
|
18
|
+
Requires-Dist: jinja2 (>=3,<4)
|
19
|
+
Requires-Dist: numpy (>=1.20,<3)
|
20
|
+
Requires-Dist: openpyxl (>=3,<4)
|
21
|
+
Requires-Dist: pandas (>1,<3)
|
22
|
+
Requires-Dist: poppy-core (>0.12.0)
|
23
|
+
Requires-Dist: poppy-pop (>0.12.0)
|
24
|
+
Requires-Dist: roc-dingo (>=1.0,<2.0)
|
25
|
+
Requires-Dist: roc-idb (>=1.0,<2.0)
|
26
|
+
Requires-Dist: roc-rap (>=1.0,<2.0)
|
27
|
+
Requires-Dist: roc-rpl (>=1.0,<2.0)
|
28
|
+
Requires-Dist: spacepy (>=0.7,<1)
|
29
|
+
Requires-Dist: xmltodict (>=0.12,<1.0)
|
30
|
+
Project-URL: Repository, https://gitlab.obspm.fr/ROC/Pipelines/Plugins/FILM
|
31
|
+
Description-Content-Type: text/markdown
|
32
|
+
|
33
|
+
roc-film
|
34
|
+
============
|
35
|
+
|
36
|
+
Python Package to produce RPW L0, L1 and HK data files from raw telemetry.
|
37
|
+
|
38
|
+
This package has been initially designed to be run in the RPW Operations and Data Pipeline (RODP).
|
39
|
+
Contact the developer team for more details.
|
40
|
+
|
41
|
+
## Quickstart
|
42
|
+
|
43
|
+
To install package using [pip](https://pypi.org/project/pip-tools/):
|
44
|
+
|
45
|
+
```
|
46
|
+
pip install roc-film
|
47
|
+
```
|
48
|
+
|
49
|
+
## Authors
|
50
|
+
|
51
|
+
- xavier dot bonnin at obspm dot fr
|
52
|
+
- florence dot henry at obspm dot fr
|
53
|
+
|
54
|
+
## License
|
55
|
+
|
56
|
+
This project is licensed under CeCILL 2.1.
|
57
|
+
|
58
|
+
## Acknowledgments
|
59
|
+
|
60
|
+
* Solar Orbiter / RPW Operation Centre (ROC) team
|
@@ -0,0 +1,28 @@
|
|
1
|
+
roc-film
|
2
|
+
============
|
3
|
+
|
4
|
+
Python Package to produce RPW L0, L1 and HK data files from raw telemetry.
|
5
|
+
|
6
|
+
This package has been initially designed to be run in the RPW Operations and Data Pipeline (RODP).
|
7
|
+
Contact the developer team for more details.
|
8
|
+
|
9
|
+
## Quickstart
|
10
|
+
|
11
|
+
To install package using [pip](https://pypi.org/project/pip-tools/):
|
12
|
+
|
13
|
+
```
|
14
|
+
pip install roc-film
|
15
|
+
```
|
16
|
+
|
17
|
+
## Authors
|
18
|
+
|
19
|
+
- xavier dot bonnin at obspm dot fr
|
20
|
+
- florence dot henry at obspm dot fr
|
21
|
+
|
22
|
+
## License
|
23
|
+
|
24
|
+
This project is licensed under CeCILL 2.1.
|
25
|
+
|
26
|
+
## Acknowledgments
|
27
|
+
|
28
|
+
* Solar Orbiter / RPW Operation Centre (ROC) team
|
@@ -0,0 +1,58 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = [ "setuptools", "wheel", "poetry", "poetry-core", "numpy",]
|
3
|
+
build-backend = "poetry.core.masonry.api"
|
4
|
+
|
5
|
+
[tool.poetry]
|
6
|
+
name = "roc-film"
|
7
|
+
version = "1.14.0"
|
8
|
+
readme = "README.md"
|
9
|
+
license = "CeCILL"
|
10
|
+
repository = "https://gitlab.obspm.fr/ROC/Pipelines/Plugins/FILM"
|
11
|
+
description = "RPW FILe Maker (FILM): Plugin to make RPW L0, L1 and HK data files"
|
12
|
+
authors = [ "Xavier Bonnin <xavier.bonnin@obspm.fr>", "ROC Team <roc.support@sympa.obspm.fr>",]
|
13
|
+
exclude = [ "bump_descriptor.py",]
|
14
|
+
[[tool.poetry.packages]]
|
15
|
+
include = "roc"
|
16
|
+
|
17
|
+
[tool.poetry.dependencies]
|
18
|
+
python = ">=3.9,<4"
|
19
|
+
numpy = ">=1.20,<3"
|
20
|
+
jinja2 = "^3"
|
21
|
+
pandas = ">1, <3"
|
22
|
+
h5py = "^3.7"
|
23
|
+
spacepy = ">=0.7,<1"
|
24
|
+
openpyxl = "^3"
|
25
|
+
xmltodict = ">=0.12,<1.0"
|
26
|
+
poppy-core = ">0.12.0"
|
27
|
+
poppy-pop = ">0.12.0"
|
28
|
+
|
29
|
+
[tool.poetry.dev-dependencies]
|
30
|
+
pytest = "<9"
|
31
|
+
pytest-cov = "<6"
|
32
|
+
pytest-timeout = "<3"
|
33
|
+
pre-commit = "^3"
|
34
|
+
ruff = "*"
|
35
|
+
toml = "*"
|
36
|
+
pyyaml = "*"
|
37
|
+
|
38
|
+
[tool.coverage.run]
|
39
|
+
omit = [ "*/tests/*",]
|
40
|
+
|
41
|
+
[tool.coverage.report]
|
42
|
+
skip_empty = true
|
43
|
+
exclude_lines = [ "pragma: no cover", "from * import *", "import *", "__all__",]
|
44
|
+
|
45
|
+
[tool.poetry.dependencies.edds_process]
|
46
|
+
version = "*"
|
47
|
+
|
48
|
+
[tool.poetry.dependencies.roc-rap]
|
49
|
+
version = "^1.0"
|
50
|
+
|
51
|
+
[tool.poetry.dependencies.roc-idb]
|
52
|
+
version = "^1.0"
|
53
|
+
|
54
|
+
[tool.poetry.dependencies.roc-rpl]
|
55
|
+
version = "^1.0"
|
56
|
+
|
57
|
+
[tool.poetry.dependencies.roc-dingo]
|
58
|
+
version = "^1.0"
|