physmap 0.2.0__tar.gz

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 (106) hide show
  1. physmap-0.2.0/LICENSE +21 -0
  2. physmap-0.2.0/LICENSE-CORPUS +469 -0
  3. physmap-0.2.0/NOTICE +77 -0
  4. physmap-0.2.0/PKG-INFO +270 -0
  5. physmap-0.2.0/README.md +238 -0
  6. physmap-0.2.0/pyproject.toml +71 -0
  7. physmap-0.2.0/setup.cfg +4 -0
  8. physmap-0.2.0/src/physmap/__init__.py +61 -0
  9. physmap-0.2.0/src/physmap/_paths.py +69 -0
  10. physmap-0.2.0/src/physmap/applicability/__init__.py +0 -0
  11. physmap-0.2.0/src/physmap/applicability/fixtures.py +83 -0
  12. physmap-0.2.0/src/physmap/applicability/screen.py +99 -0
  13. physmap-0.2.0/src/physmap/baselines/__init__.py +0 -0
  14. physmap-0.2.0/src/physmap/benchmarks/__init__.py +0 -0
  15. physmap-0.2.0/src/physmap/benchmarks/benchmark_report.py +405 -0
  16. physmap-0.2.0/src/physmap/benchmarks/benchmark_v0_4.py +424 -0
  17. physmap-0.2.0/src/physmap/benchmarks/compare.py +149 -0
  18. physmap-0.2.0/src/physmap/benchmarks/registry.py +217 -0
  19. physmap-0.2.0/src/physmap/benchmarks/report.py +224 -0
  20. physmap-0.2.0/src/physmap/cli.py +301 -0
  21. physmap-0.2.0/src/physmap/closures/__init__.py +48 -0
  22. physmap-0.2.0/src/physmap/closures/data/__init__.py +7 -0
  23. physmap-0.2.0/src/physmap/closures/data/closure_index.json +2997 -0
  24. physmap-0.2.0/src/physmap/closures/formulas.py +213 -0
  25. physmap-0.2.0/src/physmap/closures/geometry_classes.py +109 -0
  26. physmap-0.2.0/src/physmap/closures/index.py +393 -0
  27. physmap-0.2.0/src/physmap/closures/registry.py +313 -0
  28. physmap-0.2.0/src/physmap/compat/__init__.py +0 -0
  29. physmap-0.2.0/src/physmap/core/__init__.py +0 -0
  30. physmap-0.2.0/src/physmap/core/mechanism.py +69 -0
  31. physmap-0.2.0/src/physmap/core/signals.py +50 -0
  32. physmap-0.2.0/src/physmap/corpus/__init__.py +12 -0
  33. physmap-0.2.0/src/physmap/corpus/calibration.py +543 -0
  34. physmap-0.2.0/src/physmap/corpus/data/__init__.py +12 -0
  35. physmap-0.2.0/src/physmap/corpus/data/corpus_seed.jsonl +15 -0
  36. physmap-0.2.0/src/physmap/corpus/data/evidence_claims_seed.jsonl +21 -0
  37. physmap-0.2.0/src/physmap/corpus/data/evidence_sources_seed.jsonl +8 -0
  38. physmap-0.2.0/src/physmap/corpus/data/premium_coverage.json +60 -0
  39. physmap-0.2.0/src/physmap/corpus/evidence.py +871 -0
  40. physmap-0.2.0/src/physmap/explain/__init__.py +0 -0
  41. physmap-0.2.0/src/physmap/explain/benchmark.py +101 -0
  42. physmap-0.2.0/src/physmap/explain/causal.py +82 -0
  43. physmap-0.2.0/src/physmap/guardrail/__init__.py +38 -0
  44. physmap-0.2.0/src/physmap/guardrail/aggregator_observability.py +187 -0
  45. physmap-0.2.0/src/physmap/guardrail/classify.py +147 -0
  46. physmap-0.2.0/src/physmap/guardrail/configs.py +120 -0
  47. physmap-0.2.0/src/physmap/guardrail/corpus_regimes.py +208 -0
  48. physmap-0.2.0/src/physmap/guardrail/detector_conformal.py +129 -0
  49. physmap-0.2.0/src/physmap/guardrail/detector_density.py +74 -0
  50. physmap-0.2.0/src/physmap/guardrail/enums.py +69 -0
  51. physmap-0.2.0/src/physmap/guardrail/graph.py +73 -0
  52. physmap-0.2.0/src/physmap/guardrail/guardrail.py +606 -0
  53. physmap-0.2.0/src/physmap/guardrail/io.py +201 -0
  54. physmap-0.2.0/src/physmap/guardrail/regime_observability.py +519 -0
  55. physmap-0.2.0/src/physmap/guardrail/render.py +159 -0
  56. physmap-0.2.0/src/physmap/guardrail/weighting_heuristic.py +216 -0
  57. physmap-0.2.0/src/physmap/infra/__init__.py +23 -0
  58. physmap-0.2.0/src/physmap/infra/blindspot_oracle.py +356 -0
  59. physmap-0.2.0/src/physmap/infra/corpus_runtime.py +275 -0
  60. physmap-0.2.0/src/physmap/integrations/__init__.py +0 -0
  61. physmap-0.2.0/src/physmap/materiality/__init__.py +0 -0
  62. physmap-0.2.0/src/physmap/materiality/estimator.py +239 -0
  63. physmap-0.2.0/src/physmap/materiality/independence.py +92 -0
  64. physmap-0.2.0/src/physmap/materiality/surrogate_fit.py +293 -0
  65. physmap-0.2.0/src/physmap/observability/__init__.py +0 -0
  66. physmap-0.2.0/src/physmap/pipeline/__init__.py +58 -0
  67. physmap-0.2.0/src/physmap/pipeline/aggregators.py +199 -0
  68. physmap-0.2.0/src/physmap/pipeline/assessment_v06.py +509 -0
  69. physmap-0.2.0/src/physmap/pipeline/core.py +442 -0
  70. physmap-0.2.0/src/physmap/pipeline/defeasible_aggregator.py +324 -0
  71. physmap-0.2.0/src/physmap/pipeline/detectors.py +309 -0
  72. physmap-0.2.0/src/physmap/pipeline/observability.py +430 -0
  73. physmap-0.2.0/src/physmap/pipeline/surrogate.py +251 -0
  74. physmap-0.2.0/src/physmap/pipeline/validity_signal.py +273 -0
  75. physmap-0.2.0/src/physmap/pipeline/vehicle_spec.py +287 -0
  76. physmap-0.2.0/src/physmap/release.py +81 -0
  77. physmap-0.2.0/src/physmap/stress_tests/__init__.py +9 -0
  78. physmap-0.2.0/src/physmap/stress_tests/lewis_reuse.py +517 -0
  79. physmap-0.2.0/src/physmap/substrate/__init__.py +28 -0
  80. physmap-0.2.0/src/physmap/substrate/corpus_real.py +206 -0
  81. physmap-0.2.0/src/physmap/substrate/engine.py +209 -0
  82. physmap-0.2.0/src/physmap/substrate/forrest.py +249 -0
  83. physmap-0.2.0/src/physmap/substrate/loaders.py +2176 -0
  84. physmap-0.2.0/src/physmap/substrate/naca_tn1451.py +379 -0
  85. physmap-0.2.0/src/physmap/substrate/naca_wpd_loader.py +187 -0
  86. physmap-0.2.0/src/physmap/substrate/stage1_ingest.py +187 -0
  87. physmap-0.2.0/src/physmap/substrate/vehicle_config.py +407 -0
  88. physmap-0.2.0/src/physmap.egg-info/PKG-INFO +270 -0
  89. physmap-0.2.0/src/physmap.egg-info/SOURCES.txt +104 -0
  90. physmap-0.2.0/src/physmap.egg-info/dependency_links.txt +1 -0
  91. physmap-0.2.0/src/physmap.egg-info/entry_points.txt +2 -0
  92. physmap-0.2.0/src/physmap.egg-info/requires.txt +15 -0
  93. physmap-0.2.0/src/physmap.egg-info/top_level.txt +1 -0
  94. physmap-0.2.0/tests/test_applicability_screen.py +88 -0
  95. physmap-0.2.0/tests/test_benchmark_boundaries.py +174 -0
  96. physmap-0.2.0/tests/test_benchmark_reproduces.py +110 -0
  97. physmap-0.2.0/tests/test_causal_materiality.py +208 -0
  98. physmap-0.2.0/tests/test_cli_without_checkout.py +37 -0
  99. physmap-0.2.0/tests/test_guardrail_public_api.py +362 -0
  100. physmap-0.2.0/tests/test_no_conflation.py +99 -0
  101. physmap-0.2.0/tests/test_no_heavy_imports.py +87 -0
  102. physmap-0.2.0/tests/test_render_ood_wording.py +49 -0
  103. physmap-0.2.0/tests/test_stress_test_lewis_reuse.py +220 -0
  104. physmap-0.2.0/tests/test_surrogate_fit.py +187 -0
  105. physmap-0.2.0/tests/test_talk_package.py +83 -0
  106. physmap-0.2.0/tests/test_version.py +21 -0
physmap-0.2.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Vishnu Vettrivel
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,469 @@
1
+ PhysMAP corpus and data files
2
+ =============================
3
+
4
+ SPDX-License-Identifier: CC-BY-4.0
5
+
6
+ Copyright (c) 2026 Vishnu Vettrivel
7
+
8
+ The data in this repository is licensed under the Creative Commons Attribution
9
+ 4.0 International licence (CC BY 4.0). The full legal text follows below.
10
+
11
+ If you use this data, you must give appropriate credit. A suggested citation is
12
+ in CITATION.cff at the repository root.
13
+
14
+
15
+ WHAT THIS LICENCE COVERS
16
+ ------------------------
17
+
18
+ The curated corpus as a compiled work, and the parts of it that are original
19
+ authorship:
20
+
21
+ * src/physmap/corpus/data/corpus_seed.jsonl -- the seed closure corpus
22
+ * src/physmap/corpus/data/premium_coverage.json
23
+ * src/physmap/closures/data/closure_index.json -- the closure index
24
+ * data/benchmarks/**/manifest.json -- provenance manifests
25
+ * the selection, structuring, regime mapping, validity-bound assignment,
26
+ and provenance annotation throughout
27
+
28
+ These are the parts that represent editorial and scientific judgement by the
29
+ copyright holder. The CC BY grant applies to them.
30
+
31
+
32
+ WHAT THIS LICENCE DOES NOT COVER
33
+ --------------------------------
34
+
35
+ Numerical values digitised or derived from third-party publications.
36
+
37
+ This repository contains measurement data read off figures and tables in
38
+ published papers, theses and reports. The copyright holder of this repository
39
+ did not generate those measurements and does not claim copyright in them.
40
+ Applying CC BY to them would assert a right that is not ours to assert.
41
+
42
+ Those values are governed by whichever of the following applies:
43
+
44
+ 1. They are uncopyrightable facts, and no licence is needed; or
45
+ 2. They are subject to the terms of the original publisher, in which case
46
+ those terms govern and this licence has no effect on them; or
47
+ 3. They are a US Government work in the public domain (for example
48
+ NACA TN-1451), and no licence is needed.
49
+
50
+ Every such file carries its own redistribution determination, recorded in the
51
+ manifest alongside it: the source, the upstream terms, whether those terms
52
+ permit redistribution of derived numerical data, and the resulting decision.
53
+
54
+ A citation is attribution. It is not permission. No file enters this repository
55
+ on the assumption that digitised numbers are automatically redistributable. Any
56
+ file without a cleared determination is not published here, and the benchmark
57
+ vehicle that depends on it is excluded from the public matrix with a stated
58
+ reason.
59
+
60
+ If you believe a file here infringes your rights, open an issue at
61
+ https://github.com/cloudronin/physmap/issues and it will be removed pending
62
+ review.
63
+
64
+
65
+ SOURCE PUBLICATIONS ARE NOT REDISTRIBUTED
66
+ -----------------------------------------
67
+
68
+ No source PDF is included in this repository. Theses, journal articles and
69
+ reports referenced by the corpus are cited, not copied. Obtain them from their
70
+ publishers.
71
+
72
+
73
+ =======================================================================
74
+ Attribution 4.0 International
75
+
76
+ =======================================================================
77
+
78
+ Creative Commons Corporation ("Creative Commons") is not a law firm and
79
+ does not provide legal services or legal advice. Distribution of
80
+ Creative Commons public licenses does not create a lawyer-client or
81
+ other relationship. Creative Commons makes its licenses and related
82
+ information available on an "as-is" basis. Creative Commons gives no
83
+ warranties regarding its licenses, any material licensed under their
84
+ terms and conditions, or any related information. Creative Commons
85
+ disclaims all liability for damages resulting from their use to the
86
+ fullest extent possible.
87
+
88
+ Using Creative Commons Public Licenses
89
+
90
+ Creative Commons public licenses provide a standard set of terms and
91
+ conditions that creators and other rights holders may use to share
92
+ original works of authorship and other material subject to copyright
93
+ and certain other rights specified in the public license below. The
94
+ following considerations are for informational purposes only, are not
95
+ exhaustive, and do not form part of our licenses.
96
+
97
+ Considerations for licensors: Our public licenses are
98
+ intended for use by those authorized to give the public
99
+ permission to use material in ways otherwise restricted by
100
+ copyright and certain other rights. Our licenses are
101
+ irrevocable. Licensors should read and understand the terms
102
+ and conditions of the license they choose before applying it.
103
+ Licensors should also secure all rights necessary before
104
+ applying our licenses so that the public can reuse the
105
+ material as expected. Licensors should clearly mark any
106
+ material not subject to the license. This includes other CC-
107
+ licensed material, or material used under an exception or
108
+ limitation to copyright. More considerations for licensors:
109
+ wiki.creativecommons.org/Considerations_for_licensors
110
+
111
+ Considerations for the public: By using one of our public
112
+ licenses, a licensor grants the public permission to use the
113
+ licensed material under specified terms and conditions. If
114
+ the licensor's permission is not necessary for any reason--for
115
+ example, because of any applicable exception or limitation to
116
+ copyright--then that use is not regulated by the license. Our
117
+ licenses grant only permissions under copyright and certain
118
+ other rights that a licensor has authority to grant. Use of
119
+ the licensed material may still be restricted for other
120
+ reasons, including because others have copyright or other
121
+ rights in the material. A licensor may make special requests,
122
+ such as asking that all changes be marked or described.
123
+ Although not required by our licenses, you are encouraged to
124
+ respect those requests where reasonable. More considerations
125
+ for the public:
126
+ wiki.creativecommons.org/Considerations_for_licensees
127
+
128
+ =======================================================================
129
+
130
+ Creative Commons Attribution 4.0 International Public License
131
+
132
+ By exercising the Licensed Rights (defined below), You accept and agree
133
+ to be bound by the terms and conditions of this Creative Commons
134
+ Attribution 4.0 International Public License ("Public License"). To the
135
+ extent this Public License may be interpreted as a contract, You are
136
+ granted the Licensed Rights in consideration of Your acceptance of
137
+ these terms and conditions, and the Licensor grants You such rights in
138
+ consideration of benefits the Licensor receives from making the
139
+ Licensed Material available under these terms and conditions.
140
+
141
+
142
+ Section 1 -- Definitions.
143
+
144
+ a. Adapted Material means material subject to Copyright and Similar
145
+ Rights that is derived from or based upon the Licensed Material
146
+ and in which the Licensed Material is translated, altered,
147
+ arranged, transformed, or otherwise modified in a manner requiring
148
+ permission under the Copyright and Similar Rights held by the
149
+ Licensor. For purposes of this Public License, where the Licensed
150
+ Material is a musical work, performance, or sound recording,
151
+ Adapted Material is always produced where the Licensed Material is
152
+ synched in timed relation with a moving image.
153
+
154
+ b. Adapter's License means the license You apply to Your Copyright
155
+ and Similar Rights in Your contributions to Adapted Material in
156
+ accordance with the terms and conditions of this Public License.
157
+
158
+ c. Copyright and Similar Rights means copyright and/or similar rights
159
+ closely related to copyright including, without limitation,
160
+ performance, broadcast, sound recording, and Sui Generis Database
161
+ Rights, without regard to how the rights are labeled or
162
+ categorized. For purposes of this Public License, the rights
163
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
164
+ Rights.
165
+
166
+ d. Effective Technological Measures means those measures that, in the
167
+ absence of proper authority, may not be circumvented under laws
168
+ fulfilling obligations under Article 11 of the WIPO Copyright
169
+ Treaty adopted on December 20, 1996, and/or similar international
170
+ agreements.
171
+
172
+ e. Exceptions and Limitations means fair use, fair dealing, and/or
173
+ any other exception or limitation to Copyright and Similar Rights
174
+ that applies to Your use of the Licensed Material.
175
+
176
+ f. Licensed Material means the artistic or literary work, database,
177
+ or other material to which the Licensor applied this Public
178
+ License.
179
+
180
+ g. Licensed Rights means the rights granted to You subject to the
181
+ terms and conditions of this Public License, which are limited to
182
+ all Copyright and Similar Rights that apply to Your use of the
183
+ Licensed Material and that the Licensor has authority to license.
184
+
185
+ h. Licensor means the individual(s) or entity(ies) granting rights
186
+ under this Public License.
187
+
188
+ i. Share means to provide material to the public by any means or
189
+ process that requires permission under the Licensed Rights, such
190
+ as reproduction, public display, public performance, distribution,
191
+ dissemination, communication, or importation, and to make material
192
+ available to the public including in ways that members of the
193
+ public may access the material from a place and at a time
194
+ individually chosen by them.
195
+
196
+ j. Sui Generis Database Rights means rights other than copyright
197
+ resulting from Directive 96/9/EC of the European Parliament and of
198
+ the Council of 11 March 1996 on the legal protection of databases,
199
+ as amended and/or succeeded, as well as other essentially
200
+ equivalent rights anywhere in the world.
201
+
202
+ k. You means the individual or entity exercising the Licensed Rights
203
+ under this Public License. Your has a corresponding meaning.
204
+
205
+
206
+ Section 2 -- Scope.
207
+
208
+ a. License grant.
209
+
210
+ 1. Subject to the terms and conditions of this Public License,
211
+ the Licensor hereby grants You a worldwide, royalty-free,
212
+ non-sublicensable, non-exclusive, irrevocable license to
213
+ exercise the Licensed Rights in the Licensed Material to:
214
+
215
+ a. reproduce and Share the Licensed Material, in whole or
216
+ in part; and
217
+
218
+ b. produce, reproduce, and Share Adapted Material.
219
+
220
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
221
+ Exceptions and Limitations apply to Your use, this Public
222
+ License does not apply, and You do not need to comply with
223
+ its terms and conditions.
224
+
225
+ 3. Term. The term of this Public License is specified in Section
226
+ 6(a).
227
+
228
+ 4. Media and formats; technical modifications allowed. The
229
+ Licensor authorizes You to exercise the Licensed Rights in
230
+ all media and formats whether now known or hereafter created,
231
+ and to make technical modifications necessary to do so. The
232
+ Licensor waives and/or agrees not to assert any right or
233
+ authority to forbid You from making technical modifications
234
+ necessary to exercise the Licensed Rights, including
235
+ technical modifications necessary to circumvent Effective
236
+ Technological Measures. For purposes of this Public License,
237
+ simply making modifications authorized by this Section 2(a)
238
+ (4) never produces Adapted Material.
239
+
240
+ 5. Downstream recipients.
241
+
242
+ a. Offer from the Licensor -- Licensed Material. Every
243
+ recipient of the Licensed Material automatically
244
+ receives an offer from the Licensor to exercise the
245
+ Licensed Rights under the terms and conditions of this
246
+ Public License.
247
+
248
+ b. No downstream restrictions. You may not offer or impose
249
+ any additional or different terms or conditions on, or
250
+ apply any Effective Technological Measures to, the
251
+ Licensed Material if doing so restricts exercise of the
252
+ Licensed Rights by any recipient of the Licensed
253
+ Material.
254
+
255
+ 6. No endorsement. Nothing in this Public License constitutes or
256
+ may be construed as permission to assert or imply that You
257
+ are, or that Your use of the Licensed Material is, connected
258
+ with, or sponsored, endorsed, or granted official status by,
259
+ the Licensor or others designated to receive attribution as
260
+ provided in Section 3(a)(1)(A)(i).
261
+
262
+ b. Other rights.
263
+
264
+ 1. Moral rights, such as the right of integrity, are not
265
+ licensed under this Public License, nor are publicity,
266
+ privacy, and/or other similar personality rights; however, to
267
+ the extent possible, the Licensor waives and/or agrees not to
268
+ assert any such rights held by the Licensor to the limited
269
+ extent necessary to allow You to exercise the Licensed
270
+ Rights, but not otherwise.
271
+
272
+ 2. Patent and trademark rights are not licensed under this
273
+ Public License.
274
+
275
+ 3. To the extent possible, the Licensor waives any right to
276
+ collect royalties from You for the exercise of the Licensed
277
+ Rights, whether directly or through a collecting society
278
+ under any voluntary or waivable statutory or compulsory
279
+ licensing scheme. In all other cases the Licensor expressly
280
+ reserves any right to collect such royalties.
281
+
282
+
283
+ Section 3 -- License Conditions.
284
+
285
+ Your exercise of the Licensed Rights is expressly made subject to the
286
+ following conditions.
287
+
288
+ a. Attribution.
289
+
290
+ 1. If You Share the Licensed Material (including in modified
291
+ form), You must:
292
+
293
+ a. retain the following if it is supplied by the Licensor
294
+ with the Licensed Material:
295
+
296
+ i. identification of the creator(s) of the Licensed
297
+ Material and any others designated to receive
298
+ attribution, in any reasonable manner requested by
299
+ the Licensor (including by pseudonym if
300
+ designated);
301
+
302
+ ii. a copyright notice;
303
+
304
+ iii. a notice that refers to this Public License;
305
+
306
+ iv. a notice that refers to the disclaimer of
307
+ warranties;
308
+
309
+ v. a URI or hyperlink to the Licensed Material to the
310
+ extent reasonably practicable;
311
+
312
+ b. indicate if You modified the Licensed Material and
313
+ retain an indication of any previous modifications; and
314
+
315
+ c. indicate the Licensed Material is licensed under this
316
+ Public License, and include the text of, or the URI or
317
+ hyperlink to, this Public License.
318
+
319
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
320
+ reasonable manner based on the medium, means, and context in
321
+ which You Share the Licensed Material. For example, it may be
322
+ reasonable to satisfy the conditions by providing a URI or
323
+ hyperlink to a resource that includes the required
324
+ information.
325
+
326
+ 3. If requested by the Licensor, You must remove any of the
327
+ information required by Section 3(a)(1)(A) to the extent
328
+ reasonably practicable.
329
+
330
+ 4. If You Share Adapted Material You produce, the Adapter's
331
+ License You apply must not prevent recipients of the Adapted
332
+ Material from complying with this Public License.
333
+
334
+
335
+ Section 4 -- Sui Generis Database Rights.
336
+
337
+ Where the Licensed Rights include Sui Generis Database Rights that
338
+ apply to Your use of the Licensed Material:
339
+
340
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
341
+ to extract, reuse, reproduce, and Share all or a substantial
342
+ portion of the contents of the database;
343
+
344
+ b. if You include all or a substantial portion of the database
345
+ contents in a database in which You have Sui Generis Database
346
+ Rights, then the database in which You have Sui Generis Database
347
+ Rights (but not its individual contents) is Adapted Material; and
348
+
349
+ c. You must comply with the conditions in Section 3(a) if You Share
350
+ all or a substantial portion of the contents of the database.
351
+
352
+ For the avoidance of doubt, this Section 4 supplements and does not
353
+ replace Your obligations under this Public License where the Licensed
354
+ Rights include other Copyright and Similar Rights.
355
+
356
+
357
+ Section 5 -- Disclaimer of Warranties and Limitation of Liability.
358
+
359
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
360
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
361
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
362
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
363
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
364
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
365
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
366
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
367
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
368
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
369
+
370
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
371
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
372
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
373
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
374
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
375
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
376
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
377
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
378
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
379
+
380
+ c. The disclaimer of warranties and limitation of liability provided
381
+ above shall be interpreted in a manner that, to the extent
382
+ possible, most closely approximates an absolute disclaimer and
383
+ waiver of all liability.
384
+
385
+
386
+ Section 6 -- Term and Termination.
387
+
388
+ a. This Public License applies for the term of the Copyright and
389
+ Similar Rights licensed here. However, if You fail to comply with
390
+ this Public License, then Your rights under this Public License
391
+ terminate automatically.
392
+
393
+ b. Where Your right to use the Licensed Material has terminated under
394
+ Section 6(a), it reinstates:
395
+
396
+ 1. automatically as of the date the violation is cured, provided
397
+ it is cured within 30 days of Your discovery of the
398
+ violation; or
399
+
400
+ 2. upon express reinstatement by the Licensor.
401
+
402
+ For the avoidance of doubt, this Section 6(b) does not affect any
403
+ right the Licensor may have to seek remedies for Your violations
404
+ of this Public License.
405
+
406
+ c. For the avoidance of doubt, the Licensor may also offer the
407
+ Licensed Material under separate terms or conditions or stop
408
+ distributing the Licensed Material at any time; however, doing so
409
+ will not terminate this Public License.
410
+
411
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
412
+ License.
413
+
414
+
415
+ Section 7 -- Other Terms and Conditions.
416
+
417
+ a. The Licensor shall not be bound by any additional or different
418
+ terms or conditions communicated by You unless expressly agreed.
419
+
420
+ b. Any arrangements, understandings, or agreements regarding the
421
+ Licensed Material not stated herein are separate from and
422
+ independent of the terms and conditions of this Public License.
423
+
424
+
425
+ Section 8 -- Interpretation.
426
+
427
+ a. For the avoidance of doubt, this Public License does not, and
428
+ shall not be interpreted to, reduce, limit, restrict, or impose
429
+ conditions on any use of the Licensed Material that could lawfully
430
+ be made without permission under this Public License.
431
+
432
+ b. To the extent possible, if any provision of this Public License is
433
+ deemed unenforceable, it shall be automatically reformed to the
434
+ minimum extent necessary to make it enforceable. If the provision
435
+ cannot be reformed, it shall be severed from this Public License
436
+ without affecting the enforceability of the remaining terms and
437
+ conditions.
438
+
439
+ c. No term or condition of this Public License will be waived and no
440
+ failure to comply consented to unless expressly agreed to by the
441
+ Licensor.
442
+
443
+ d. Nothing in this Public License constitutes or may be interpreted
444
+ as a limitation upon, or waiver of, any privileges and immunities
445
+ that apply to the Licensor or You, including from the legal
446
+ processes of any jurisdiction or authority.
447
+
448
+
449
+ =======================================================================
450
+
451
+ Creative Commons is not a party to its public
452
+ licenses. Notwithstanding, Creative Commons may elect to apply one of
453
+ its public licenses to material it publishes and in those instances
454
+ will be considered the “Licensor.” The text of the Creative Commons
455
+ public licenses is dedicated to the public domain under the CC0 Public
456
+ Domain Dedication. Except for the limited purpose of indicating that
457
+ material is shared under a Creative Commons public license or as
458
+ otherwise permitted by the Creative Commons policies published at
459
+ creativecommons.org/policies, Creative Commons does not authorize the
460
+ use of the trademark "Creative Commons" or any other trademark or logo
461
+ of Creative Commons without its prior written consent including,
462
+ without limitation, in connection with any unauthorized modifications
463
+ to any of its public licenses or any other arrangements,
464
+ understandings, or agreements concerning use of licensed material. For
465
+ the avoidance of doubt, this paragraph does not form part of the
466
+ public licenses.
467
+
468
+ Creative Commons may be contacted at creativecommons.org.
469
+
physmap-0.2.0/NOTICE ADDED
@@ -0,0 +1,77 @@
1
+ PhysMAP — what each licence covers
2
+ ==================================
3
+
4
+ This repository carries two licences, because the code and the data are
5
+ different things.
6
+
7
+ CODE — MIT. See LICENSE.
8
+ Everything under src/, tests/, dev/, examples/, docs/ and protocols/.
9
+
10
+ DATA — Creative Commons Attribution 4.0 International. See LICENSE-CORPUS.
11
+ The curated corpus as authorship: the seed closure corpus, the closure
12
+ index, the provenance manifests, and the selection, structuring, regime
13
+ mapping and validity-bound assignment throughout.
14
+
15
+ NOT COVERED BY EITHER — numerical values digitised from third-party
16
+ publications.
17
+
18
+ This repository contains measurements read off figures and tables in
19
+ published papers, theses and reports. Those measurements were not made
20
+ here, so no copyright in them is claimed; applying a licence to them would
21
+ assert a right that is not ours to assert.
22
+
23
+ They are governed by their publishers' terms, by public-domain status (for
24
+ example NACA TN-1451, a US Government work), or they are uncopyrightable
25
+ facts. Every such file carries its own redistribution determination in the
26
+ manifest beside it: the source, the upstream terms, whether those terms
27
+ permit redistribution of derived numerical data, and the decision.
28
+
29
+ A citation is attribution. It is not permission.
30
+
31
+ No source PDF is redistributed. Papers are cited, not copied.
32
+
33
+ FIVE OF THE SEVEN DATASETS SHIP WITHOUT A LICENCE
34
+
35
+ Shipping is not licensing. Two of the seven published datasets carry
36
+ affirmative permission -- naca_tn1451 (public domain) and velazquez_sco2
37
+ (CC BY 4.0). The other five do not:
38
+
39
+ marineau_hypersonic_transition no licence, and no prohibition
40
+ casper_hypersonic_transition against AIAA terms
41
+ forrest against ASME terms
42
+ dirker_water against Elsevier terms
43
+ jin_sco2_buoyancy against Elsevier terms
44
+
45
+ All five redistribute NUMBERS ONLY -- no paper, figure or PDF. That is
46
+ enforced by two automated audits and is the foundation the whole position
47
+ rests on.
48
+
49
+ Marineau is the only one with no prohibition attached: values transcribed
50
+ from a published table of measurements, in a publicly funded, publicly
51
+ released, government-hosted document.
52
+
53
+ The other four are published DESPITE express publisher terms. AIAA
54
+ prohibits using its content to develop machine-learning models. ASME and
55
+ Elsevier require permission to reproduce, and Elsevier's licence forbids
56
+ systematic redistribution of the dataset. Those are risks this project
57
+ accepted knowingly; none of them is a finding that the term does not apply.
58
+
59
+ A SEPARATE WARNING ABOUT DATA QUALITY
60
+
61
+ forrest is published but is NOT benchmark-grade. Its own header says the
62
+ values are visual estimates to be used only as a resolvability triage
63
+ check, and its benchmark cell is degenerate -- one training row, no
64
+ detector fit -- so its DO_NO_HARM outcome is short-circuited rather than
65
+ earned. It ships so the weakness is inspectable, not so it can be cited.
66
+
67
+ Being legal to publish and being fit to benchmark on are different
68
+ questions. This file answers only the first.
69
+
70
+ data/REDISTRIBUTION.md states the basis for each in full, including the
71
+ arguments against.
72
+
73
+ REMOVAL ON OBJECTION
74
+
75
+ Any rights holder who objects gets the data removed. Open an issue at
76
+ https://github.com/cloudronin/physmap/issues, or contact the maintainer.
77
+ No argument will be made; the files come out.