gedih3 0.14.3__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 (127) hide show
  1. gedih3-0.14.3/LICENSE +290 -0
  2. gedih3-0.14.3/NOTICE +43 -0
  3. gedih3-0.14.3/PKG-INFO +417 -0
  4. gedih3-0.14.3/README.md +346 -0
  5. gedih3-0.14.3/pyproject.toml +166 -0
  6. gedih3-0.14.3/setup.cfg +4 -0
  7. gedih3-0.14.3/src/gedih3/__init__.py +198 -0
  8. gedih3-0.14.3/src/gedih3/cli/__init__.py +5 -0
  9. gedih3-0.14.3/src/gedih3/cli/gh3_aggregate.py +510 -0
  10. gedih3-0.14.3/src/gedih3/cli/gh3_build.py +879 -0
  11. gedih3-0.14.3/src/gedih3/cli/gh3_build_ducklake.py +137 -0
  12. gedih3-0.14.3/src/gedih3/cli/gh3_doctor.py +334 -0
  13. gedih3-0.14.3/src/gedih3/cli/gh3_download.py +177 -0
  14. gedih3-0.14.3/src/gedih3/cli/gh3_extract.py +233 -0
  15. gedih3-0.14.3/src/gedih3/cli/gh3_from_img.py +416 -0
  16. gedih3-0.14.3/src/gedih3/cli/gh3_from_polygon.py +362 -0
  17. gedih3-0.14.3/src/gedih3/cli/gh3_list_resolutions.py +269 -0
  18. gedih3-0.14.3/src/gedih3/cli/gh3_rasterize.py +233 -0
  19. gedih3-0.14.3/src/gedih3/cli/gh3_read_schema.py +216 -0
  20. gedih3-0.14.3/src/gedih3/cli/gh3_update.py +649 -0
  21. gedih3-0.14.3/src/gedih3/cliutils.py +1549 -0
  22. gedih3-0.14.3/src/gedih3/config.py +290 -0
  23. gedih3-0.14.3/src/gedih3/daac.py +1158 -0
  24. gedih3-0.14.3/src/gedih3/data/GEDI01_B_DATASETS_002.txt +29 -0
  25. gedih3-0.14.3/src/gedih3/data/GEDI01_B_DATASETS_003.txt +33 -0
  26. gedih3-0.14.3/src/gedih3/data/GEDI02_A_DATASETS_002.txt +106 -0
  27. gedih3-0.14.3/src/gedih3/data/GEDI02_A_DATASETS_003.txt +110 -0
  28. gedih3-0.14.3/src/gedih3/data/GEDI02_B_DATASETS_002.txt +58 -0
  29. gedih3-0.14.3/src/gedih3/data/GEDI02_B_DATASETS_003.txt +67 -0
  30. gedih3-0.14.3/src/gedih3/data/GEDI04_A_DATASETS_002.txt +86 -0
  31. gedih3-0.14.3/src/gedih3/data/GEDI04_A_DATASETS_003.txt +90 -0
  32. gedih3-0.14.3/src/gedih3/data/GEDI04_C_DATASETS_002.txt +69 -0
  33. gedih3-0.14.3/src/gedih3/data/GEDI04_C_DATASETS_003.txt +73 -0
  34. gedih3-0.14.3/src/gedih3/data/dask-config-massive-build.yaml +93 -0
  35. gedih3-0.14.3/src/gedih3/data/dask-worker-trim.py +94 -0
  36. gedih3-0.14.3/src/gedih3/doctor/__init__.py +28 -0
  37. gedih3-0.14.3/src/gedih3/doctor/diagnoses/__init__.py +19 -0
  38. gedih3-0.14.3/src/gedih3/doctor/diagnoses/backfill.py +622 -0
  39. gedih3-0.14.3/src/gedih3/doctor/diagnoses/geoparquet_bbox.py +266 -0
  40. gedih3-0.14.3/src/gedih3/doctor/diagnoses/log_state.py +235 -0
  41. gedih3-0.14.3/src/gedih3/doctor/diagnoses/metadata.py +187 -0
  42. gedih3-0.14.3/src/gedih3/doctor/diagnoses/orphans.py +268 -0
  43. gedih3-0.14.3/src/gedih3/doctor/diagnoses/parquet_health.py +324 -0
  44. gedih3-0.14.3/src/gedih3/doctor/diagnoses/soc_health.py +174 -0
  45. gedih3-0.14.3/src/gedih3/doctor/diagnoses/tmp_partitions_health.py +290 -0
  46. gedih3-0.14.3/src/gedih3/doctor/fused.py +169 -0
  47. gedih3-0.14.3/src/gedih3/doctor/inspect.py +188 -0
  48. gedih3-0.14.3/src/gedih3/doctor/parallel.py +72 -0
  49. gedih3-0.14.3/src/gedih3/doctor/parquet_ops.py +280 -0
  50. gedih3-0.14.3/src/gedih3/doctor/report.py +94 -0
  51. gedih3-0.14.3/src/gedih3/doctor/runner.py +281 -0
  52. gedih3-0.14.3/src/gedih3/doctor/upstream.py +255 -0
  53. gedih3-0.14.3/src/gedih3/egi/__init__.py +146 -0
  54. gedih3-0.14.3/src/gedih3/egi/config.py +154 -0
  55. gedih3-0.14.3/src/gedih3/egi/core.py +434 -0
  56. gedih3-0.14.3/src/gedih3/egi/dataframe.py +447 -0
  57. gedih3-0.14.3/src/gedih3/egi/raster.py +433 -0
  58. gedih3-0.14.3/src/gedih3/egi/spatial.py +419 -0
  59. gedih3-0.14.3/src/gedih3/exceptions.py +270 -0
  60. gedih3-0.14.3/src/gedih3/gedidriver.py +1051 -0
  61. gedih3-0.14.3/src/gedih3/gh3builder.py +3992 -0
  62. gedih3-0.14.3/src/gedih3/gh3driver.py +3327 -0
  63. gedih3-0.14.3/src/gedih3/h3utils.py +199 -0
  64. gedih3-0.14.3/src/gedih3/imgutils.py +927 -0
  65. gedih3-0.14.3/src/gedih3/logger.py +992 -0
  66. gedih3-0.14.3/src/gedih3/logging_config.py +189 -0
  67. gedih3-0.14.3/src/gedih3/parallel.py +453 -0
  68. gedih3-0.14.3/src/gedih3/raster/__init__.py +113 -0
  69. gedih3-0.14.3/src/gedih3/raster/config.py +74 -0
  70. gedih3-0.14.3/src/gedih3/raster/export.py +580 -0
  71. gedih3-0.14.3/src/gedih3/raster/h3_raster.py +480 -0
  72. gedih3-0.14.3/src/gedih3/raster/timeseries.py +396 -0
  73. gedih3-0.14.3/src/gedih3/sqlutils.py +162 -0
  74. gedih3-0.14.3/src/gedih3/utils.py +2013 -0
  75. gedih3-0.14.3/src/gedih3/validation.py +479 -0
  76. gedih3-0.14.3/src/gedih3/vecutils.py +510 -0
  77. gedih3-0.14.3/src/gedih3.egg-info/PKG-INFO +417 -0
  78. gedih3-0.14.3/src/gedih3.egg-info/SOURCES.txt +125 -0
  79. gedih3-0.14.3/src/gedih3.egg-info/dependency_links.txt +1 -0
  80. gedih3-0.14.3/src/gedih3.egg-info/entry_points.txt +13 -0
  81. gedih3-0.14.3/src/gedih3.egg-info/requires.txt +49 -0
  82. gedih3-0.14.3/src/gedih3.egg-info/top_level.txt +1 -0
  83. gedih3-0.14.3/tests/test_build_safety.py +985 -0
  84. gedih3-0.14.3/tests/test_build_vrt.py +297 -0
  85. gedih3-0.14.3/tests/test_cli_pipeline.py +899 -0
  86. gedih3-0.14.3/tests/test_cliutils.py +907 -0
  87. gedih3-0.14.3/tests/test_daac_callback.py +326 -0
  88. gedih3-0.14.3/tests/test_daac_timeouts.py +305 -0
  89. gedih3-0.14.3/tests/test_data_integrity.py +818 -0
  90. gedih3-0.14.3/tests/test_dependencies.py +212 -0
  91. gedih3-0.14.3/tests/test_doctor_diagnoses.py +551 -0
  92. gedih3-0.14.3/tests/test_doctor_fused.py +233 -0
  93. gedih3-0.14.3/tests/test_doctor_parallel.py +346 -0
  94. gedih3-0.14.3/tests/test_doctor_parquet_ops.py +126 -0
  95. gedih3-0.14.3/tests/test_doctor_runner.py +110 -0
  96. gedih3-0.14.3/tests/test_doctor_tmp_partitions_health.py +353 -0
  97. gedih3-0.14.3/tests/test_egi_comprehensive.py +471 -0
  98. gedih3-0.14.3/tests/test_egi_core.py +389 -0
  99. gedih3-0.14.3/tests/test_egi_load_meta.py +127 -0
  100. gedih3-0.14.3/tests/test_egi_raster_pixel_size.py +164 -0
  101. gedih3-0.14.3/tests/test_egi_raster_tile_guard.py +135 -0
  102. gedih3-0.14.3/tests/test_exceptions.py +225 -0
  103. gedih3-0.14.3/tests/test_failure_telemetry.py +896 -0
  104. gedih3-0.14.3/tests/test_gh3_build_vars_check.py +118 -0
  105. gedih3-0.14.3/tests/test_gh3_select_partitions.py +66 -0
  106. gedih3-0.14.3/tests/test_gh3_update_egi_keys.py +114 -0
  107. gedih3-0.14.3/tests/test_gh3_update_filter_fallback.py +151 -0
  108. gedih3-0.14.3/tests/test_h3_load_meta.py +154 -0
  109. gedih3-0.14.3/tests/test_h3_roi_ring_expansion.py +174 -0
  110. gedih3-0.14.3/tests/test_imgutils.py +623 -0
  111. gedih3-0.14.3/tests/test_logger_compat.py +157 -0
  112. gedih3-0.14.3/tests/test_logger_h3_levels_guard.py +175 -0
  113. gedih3-0.14.3/tests/test_logger_resume_skip.py +136 -0
  114. gedih3-0.14.3/tests/test_merge_build_logs.py +231 -0
  115. gedih3-0.14.3/tests/test_merge_resume.py +210 -0
  116. gedih3-0.14.3/tests/test_parallel.py +350 -0
  117. gedih3-0.14.3/tests/test_pipeline_integration.py +1154 -0
  118. gedih3-0.14.3/tests/test_python_api_pipeline.py +900 -0
  119. gedih3-0.14.3/tests/test_rasterize_partition_series.py +173 -0
  120. gedih3-0.14.3/tests/test_resume_reconcile.py +447 -0
  121. gedih3-0.14.3/tests/test_s3_benchmark.py +148 -0
  122. gedih3-0.14.3/tests/test_soc_discovery.py +537 -0
  123. gedih3-0.14.3/tests/test_sqlutils_roundtrip.py +77 -0
  124. gedih3-0.14.3/tests/test_to_parquet_fusion.py +147 -0
  125. gedih3-0.14.3/tests/test_validation.py +491 -0
  126. gedih3-0.14.3/tests/test_vecutils.py +424 -0
  127. gedih3-0.14.3/tests/test_write_streaming.py +758 -0
gedih3-0.14.3/LICENSE ADDED
@@ -0,0 +1,290 @@
1
+ UMD SOURCE AVAILABLE NON-COMMERCIAL END USER LICENSE AGREEMENT
2
+
3
+ THESE LICENSE TERMS ARE A LEGAL AGREEMENT BETWEEN YOU ("You") AND THE
4
+ UNIVERSITY OF MARYLAND, a public agency and instrumentality of the State of
5
+ Maryland, on behalf of UM Ventures, College Park (“US,” “WE,” “UMD,” or
6
+ “University”).
7
+
8
+ BY INSTALLING, DOWNLOADING, ACCESSING, USING, OR DISTRIBUTING ANY OF THE DATA
9
+ OR MATERIALS, YOU SIGNIFY THAT YOU HAVE READ, UNDERSTAND, ACCEPT, AND AGREE TO
10
+ ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THAT THE OBLIGATIONS SET
11
+ FORTH HEREIN SHALL BE BINDING AND ENFORCEABLE AS A MATTER OF CONTRACT,
12
+ REGARDLESS OF WHETHER EACH COMPONENT OF THE DATA OR MATERIALS IS SUBJECT TO
13
+ COPYRIGHT, PATENT, OR ANY OTHER INTELLECTUAL PROPERTY PROTECTION.
14
+
15
+ TERMS AND CONDITIONS
16
+
17
+ 1. DEFINITIONS
18
+
19
+ a. “Agreement” means this License, comprising this document.
20
+
21
+ b. “Data,” includes any and all data, graphs, Models (hereinafter defined)
22
+ and/or documentation, if any (in code or any other form), that may
23
+ accompany any code made available to You as part of the Materials.
24
+
25
+ c. “Materials” means the software or work of authorship, whether in source
26
+ or object form, made available under this Agreement.
27
+
28
+ d. “Models” means any of the Materials provided under this Agreement that
29
+ may be embodied in an artificial intelligence or machine learning model,
30
+ which may include, without limitation, a collective or singular work of
31
+ authorship spanning model architecture, code (in source or object form),
32
+ parameters (which may include model weights), data descriptions or
33
+ corresponding labels or metadata, and all related artifacts.
34
+
35
+ e. “Use” or “Using” for the purposes of this Agreement means and includes
36
+ any action taken by You to leverage the Materials in any fashion, but for
37
+ the presence of a license would constitute infringement on the rights of
38
+ Us.
39
+
40
+ f. “Commercial Purposes” means use of the Materials or Data by any party in
41
+ the production of products or the rendering of services, including but
42
+ not limited to any sale or transfer that involves payment of any kind.
43
+
44
+ 2. LICENSE GRANT
45
+
46
+ a. University hereby grants You a non-exclusive, non-transferable right and
47
+ license to download, access, use the Data and the Materials for
48
+ non-commercial, non-revenue generating, internal purposes (including
49
+ research). University also grants You the right to modify the Materials
50
+ for non-commercial and non-revenue-generating purposes, and to share such
51
+ modifications only for the purpose of contributing them back — including
52
+ by forking the repository and submitting a pull request, which are then
53
+ governed by Section 6(b). Distributing modified copies as a separate
54
+ release is not permitted. Modification of the Data is prohibited, with
55
+ the exception of routine extraction, filtering, or analyses for the
56
+ granted license above. Use of the Materials and Data for Commercial
57
+ Purposes is strictly prohibited. You may reproduce and distribute
58
+ unmodified copies of the Materials, including through public software
59
+ package repositories and their mirrors (and the packaging/build recipes
60
+ used to do so), provided that each copy is accompanied by this Agreement
61
+ and all notices required by Section 4(a) are preserved.
62
+
63
+ b. For the avoidance of doubt, University may also offer the licensed
64
+ Materials under separate terms or conditions, or stop distributing the
65
+ Material at any time; however, doing so will not alter or terminate this
66
+ Agreement to You. For alternative license terms, including Commercial
67
+ Purposes, please contact the UM Ventures office at
68
+ umdtechtransfer@umd.edu .
69
+
70
+ 3. LICENSE FEE. There is no fee associated with this license.
71
+
72
+ 4. RESTRICTIONS. The license granted under Section 2 is subject to the
73
+ following restrictions and conditions:
74
+
75
+ a. You will not:
76
+
77
+ i. modify, hide, delete, or interfere with any proprietary and/or
78
+ restrictive legends and notices that are included on the Materials
79
+ or any output from the Materials. In the event University adopts and
80
+ provides you with modified legends or notices, You will promptly
81
+ incorporate them into the Materials upon receipt;
82
+
83
+ ii. sell, license, sublicense or otherwise distribute the Licensed
84
+ Materials, in whole or in part, to third parties, except as
85
+ explicitly allowed for in Section 2;
86
+
87
+ iii. publicly post or display the Licensed Materials, in whole or in
88
+ part, other than as explicitly allowed for in Section 2;
89
+
90
+ iv. use or cause the Licensed Materials to be used to provide services
91
+ to third parties or for the production or manufacture of products
92
+ for sale to third parties or any other Commercial Purpose;
93
+
94
+ v. reverse engineer, decompile, or dissemble the Materials;
95
+
96
+ vi. work around any technical limitations in the Materials or any
97
+ accompanying instructions that currently restrict functionality,
98
+ purpose, or character of Use;
99
+
100
+ b. The license does not include the right to sublicense or to make copies of
101
+ the Licensed Materials;
102
+
103
+ c. All rights not expressly granted to You in this Agreement shall remain
104
+ with University.
105
+
106
+ 5. SUPPORT AND OPERATION OF THE MATERIALS
107
+
108
+ a. You are solely responsible for Your application and implementation of the
109
+ Materials.
110
+
111
+ b. University is not obligated to provide any upgrades or fixes to or
112
+ otherwise maintain the Materials.
113
+
114
+ c. University is not obligated to provide any technical support.
115
+
116
+ d. You may, at your sole option, provide feedback about errors or
117
+ deficiencies found in the Materials through the contact information on
118
+ the repository where the Materials are made available. University may, at
119
+ its discretion, choose to address or fix such errors or deficiencies, but
120
+ has no obligation to do so.
121
+
122
+ 6. INTELLECTUAL PROPERTY
123
+
124
+ a. University owns all right, title, and interest in and to the Materials,
125
+ including any modifications thereof.
126
+
127
+ b. Contributions, commits, deposits, modifications, and forks of the
128
+ Materials provided by You to the repository will become part of the
129
+ Materials, and may be offered as part of the Materials to future
130
+ Licensees who accept this Agreement, or other terms applied to the
131
+ Materials in the future. You acknowledge and agree that contributions,
132
+ commits, deposits, modifications, and forks of the Materials are
133
+ derivative work owned by the University, and that You have no right to
134
+ compensation, any kind of ownership or intellectual property rights, or
135
+ any recompense for any such modifications, derivatives, or contributions,
136
+ and in the event that you make such Modifications, you are adding them to
137
+ the body of the Materials without coercion and with full knowledge of
138
+ this commitment.
139
+
140
+ c. You shall own data files, analyses, and similar outputs that result from
141
+ your use of the Materials, unless You deposit any such files, analyses,
142
+ or similar outputs in accordance with Section 6.b., whereby they will
143
+ become part of the Materials.
144
+
145
+ d. Neither party shall use the name or trademarks of the other party or
146
+ names of employees of the other party for commercial purposes without the
147
+ prior written approval of the other party.
148
+
149
+ 7. PROPRIETARY AND CONFIDENTIAL UNIVERSITY INFORMATION
150
+
151
+ a. You acknowledge that the Materials are proprietary information and
152
+ property of the University.
153
+
154
+ b. You shall take reasonable steps to protect against unauthorized access
155
+ to, disclosure, and use of the Materials, using at least the same degree
156
+ of care to protect the Materials that You use to protect your own
157
+ proprietary information. Specifically, You shall:
158
+
159
+ i. Not make any Materials available for a download, except in
160
+ accordance with 2(a); and
161
+
162
+ ii. Not interfere with any copyright notices or any warnings to not
163
+ download or other restrictions on the Materials that are included in
164
+ the Materials.
165
+
166
+ c. The obligations set forth in this Section 7 shall last until such time
167
+ that all proprietary rights in and to the Materials have expired.
168
+
169
+ d. You acknowledge that any breach, threatened or actual, of this Section 7
170
+ will cause irreparable injury to University that cannot be adequately
171
+ compensated by monetary damages. As a result, You agree University is
172
+ entitled, in addition to any other available remedies, to seek and be
173
+ awarded injunctive relief, without posting a bond.
174
+
175
+ 8. EXPORT CONTROL LAWS
176
+
177
+ a. The Materials are subject to United States export control laws and
178
+ regulations including the Arms Export Control Act and its implementing
179
+ regulations; the International Traffic in Arms Regulations; and the
180
+ Export Administration Act and its implementing regulations; the Export
181
+ Administration Regulations, that govern the export of specific technical
182
+ data and technologies, including software, to foreign countries and to
183
+ foreign nationals (“Export Control Laws”). You agree to comply with
184
+ Export Control Laws and hereby indemnify University with respect to any
185
+ and all claims arising out of or related to Your violation of Export
186
+ Control Laws.
187
+
188
+ 9. DISCLAIMER AND LIMITATION ON LIABILITY
189
+
190
+ a. MATERIALS ARE MADE AVAILABLE ON AN "AS IS" BASIS. UNIVERSITY DISCLAIMS
191
+ ANY AND ALL PROMISES, REPRESENTATIONS AND WARRANTIES – WHETHER EXPRESS OR
192
+ IMPLIED, ORAL OR IN WRITING, IN FACT OR ARISING BY OPERATION OF LAW –
193
+ WITH RESPECT TO THE MATERIALS, INCLUDING, BUT NOT LIMITED TO, THE
194
+ WARRANTIES OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
195
+ PARTICULAR PURPOSE, NONINFRINGEMENT OF THE INTELLECTUAL PROPERTY OR
196
+ PROPRIETARY RIGHTS OF ANY THIRD PARTY, OR THOSE ARISING BY LAW, STATUTE,
197
+ USAGE OF TRADE, OR COURSE OF DEALING. UNIVERSITY ALSO MAKES NO
198
+ REPRESENTATION OR WARRANTY THAT THE MATERIALS WILL OPERATE ERROR FREE OR
199
+ IN AN UNINTERRUPTED FASHION OR THAT ANY DOWNLOADABLE FILES OR INFORMATION
200
+ WILL BE FREE OF VIRUSES OR CONTAMINATION OR DESTRUCTIVE FEATURES.
201
+
202
+ b. WITHOUT LIMITING THE FOREGOING, IN NO EVENT SHALL UNIVERSITY BE LIABLE TO
203
+ YOU FOR ANY BUSINESS EXPENSE OR INTERRUPTION; LOSS OF PROFITS, AND/OR ANY
204
+ INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND, EVEN
205
+ IF ADVISED OF THE POSSIBILITY OF SUCH CLAIMS OR DEMANDS, HOWEVER CAUSED,
206
+ ARISING IN CONNECTION WITH OR OUT OF THE FURNISHING, USE OR PERFORMANCE
207
+ OF THE MATERIALS PROVIDED HEREUNDER. THIS LIMITATION UPON DAMAGES AND
208
+ CLAIMS IS INTENDED TO APPLY WITHOUT REGARD TO WHETHER OTHER PROVISIONS OF
209
+ THIS AGREEMENT HAVE BEEN BREACHED OR HAVE PROVEN INEFFECTIVE.
210
+
211
+ c. IN NO EVENT WILL UNIVERSITY’S TOTAL LIABILITY FOR THE BREACH OR
212
+ NONPERFORMANCE OF THIS AGREEMENT EXCEED THE LICENSE FEE PAID TO
213
+ UNIVERSITY UNDER THIS AGREEMENT.
214
+
215
+ 10. INDEMNITY
216
+
217
+ a. You hereby agree to defend, indemnify, and hold harmless University and
218
+ its employees, agents, directors, and officers from and against any and
219
+ all claims, proceedings, damages, injuries, liabilities, losses, costs,
220
+ and expenses (including reasonable attorneys’ fees and litigation
221
+ expenses) relating to or arising out of Your use of the Materials or Your
222
+ breach of any term in this Agreement.
223
+
224
+ 11. TERM AND TERMINATION
225
+
226
+ a. This Agreement and Your right to use the Materials will take effect when
227
+ You accept the terms of this Agreement by accessing and using the
228
+ Materials. The Agreement is effective until copyright in the Materials
229
+ expires unless earlier terminated as set forth below.
230
+
231
+ b. The University reserves the right at any time to terminate this Agreement
232
+ when it has any reasonable belief of fraudulent or unlawful activity by
233
+ You or Your employees or of a violation of any term or condition of this
234
+ Agreement. Termination will become effective upon Your receipt of written
235
+ notice of such a default.
236
+
237
+ c. You may terminate this Agreement at any time by ceasing to use the
238
+ Materials and providing written notice of the same to the University.
239
+
240
+ d. University may terminate this Agreement at any time upon fifteen (15)
241
+ days written notice to You.
242
+
243
+ e. Within thirty (30) days of any termination of this Agreement, You must
244
+ certify to the University that You have destroyed all copies of any
245
+ aspect of the Materials in Your possession.
246
+
247
+ f. Sections 1, 5-10, 11e and 12 will survive the termination of this
248
+ Agreement.
249
+
250
+ 12. MISCELLANEOUS
251
+
252
+ a. This Agreement may be amended from time to time only by a written
253
+ instrument signed by the Parties.
254
+
255
+ b. No term or provision in this Agreement will be waived and no breach
256
+ excused unless such waiver or consent is in writing and signed by the
257
+ Party claimed to have waived or consented. Failure by either Party to
258
+ insist on strict performance of any of the terms and conditions of this
259
+ Agreement will not operate as a waiver by either Party of that or any
260
+ subsequent default or failure of performance.
261
+
262
+ c. If any provision of this Agreement is determined by a court of competent
263
+ jurisdiction to be void, invalid, or otherwise unenforceable, such
264
+ determination shall not affect the remaining provisions of this Agreement
265
+ and the illegal, invalid, or unenforceable clause shall be modified in
266
+ compliance with applicable law in a manner that most closely matches the
267
+ intent of the original language.
268
+
269
+ d. This Agreement does not create a joint venture, partnership, employment,
270
+ or agency relationship between the Parties.
271
+
272
+ e. No provision herein, express or implied, confers upon any person other
273
+ than the Parties to this Agreement any rights, remedies, obligations, or
274
+ liabilities hereunder.
275
+
276
+ f. This Agreement shall be binding upon and inure to the benefit of the
277
+ Parties hereto. You may not assign this Agreement without the
278
+ University’s prior written approval.
279
+
280
+ g. This Agreement shall be governed by and interpreted in accordance with
281
+ United States copyright law and the laws of the State of Maryland without
282
+ reference to its conflicts of laws rules. Nothing in this Agreement is or
283
+ shall be deemed to be a waiver by University of any of its rights or
284
+ status as an agency and instrumentality of the State of Maryland.
285
+
286
+ h. This Agreement represents the entire understanding between You and the
287
+ University with respect to the Materials and supersedes all prior or
288
+ contemporaneous communications and proposals, whether electronic, oral,
289
+ or written between You and University regarding the Materials.
290
+
gedih3-0.14.3/NOTICE ADDED
@@ -0,0 +1,43 @@
1
+ NOTICE
2
+ ======
3
+
4
+ gedih3
5
+ Copyright (C) 2026, University of Maryland. All Rights Reserved.
6
+ Authors: Tiago de Conto, Amelia Grace Holcomb (University of Maryland).
7
+
8
+ Licensed under the UMD Source Available Non-Commercial End User License
9
+ Agreement. See the accompanying LICENSE file for the full terms.
10
+
11
+ SPDX-License-Identifier: LicenseRef-UMD-Source-Available-NonCommercial-1.0
12
+
13
+ This software is SOURCE AVAILABLE, not open source. It is free to use for
14
+ research, education, and other non-commercial purposes. Commercial use requires
15
+ a separate license from the University of Maryland. For commercial licensing,
16
+ contact UM Ventures at umdtechtransfer@umd.edu.
17
+
18
+
19
+ Licensing history
20
+ -----------------
21
+
22
+ gedih3 was developed at the University of Maryland and was held in a private
23
+ repository from its inception on 2025-09-13 until the release of version
24
+ 0.13.0.
25
+
26
+ No version of this software was published, distributed, licensed, sold, or
27
+ otherwise made available to any party prior to version 0.13.0, and no license
28
+ to this software was granted to any person before that release.
29
+
30
+ Accordingly, all use of this software, in any version, is governed solely by
31
+ the terms of the accompanying LICENSE file. Any license text that may appear in
32
+ this repository's commit history was never operative, was never communicated to
33
+ any recipient, and conferred no rights on any person.
34
+
35
+
36
+ Third-party components
37
+ ----------------------
38
+
39
+ Third-party components distributed with this project and its documentation
40
+ remain subject to their own licenses and notices, which are preserved with
41
+ those components. This includes, without limitation, components bundled with
42
+ the generated documentation (Bootstrap, Font Awesome, and the PyData Sphinx
43
+ Theme), each of which carries its own license notice alongside the component.