cryoswath 0.2.0.post1__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 (69) hide show
  1. cryoswath-0.2.0.post1/.gitattributes +3 -0
  2. cryoswath-0.2.0.post1/.github/ISSUE_TEMPLATE/bug_report.md +28 -0
  3. cryoswath-0.2.0.post1/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  4. cryoswath-0.2.0.post1/.github/ISSUE_TEMPLATE/question.md +14 -0
  5. cryoswath-0.2.0.post1/.gitignore +629 -0
  6. cryoswath-0.2.0.post1/LICENSE.txt +20 -0
  7. cryoswath-0.2.0.post1/PKG-INFO +134 -0
  8. cryoswath-0.2.0.post1/README.md +92 -0
  9. cryoswath-0.2.0.post1/cryoswath/__init__.py +6 -0
  10. cryoswath-0.2.0.post1/cryoswath/gis.py +167 -0
  11. cryoswath-0.2.0.post1/cryoswath/l1b.py +905 -0
  12. cryoswath-0.2.0.post1/cryoswath/l2.py +409 -0
  13. cryoswath-0.2.0.post1/cryoswath/l3.py +641 -0
  14. cryoswath-0.2.0.post1/cryoswath/l4.py +197 -0
  15. cryoswath-0.2.0.post1/cryoswath/misc.py +1751 -0
  16. cryoswath-0.2.0.post1/cryoswath/test_plots/__init__.py +2 -0
  17. cryoswath-0.2.0.post1/cryoswath/test_plots/maps.py +41 -0
  18. cryoswath-0.2.0.post1/cryoswath/test_plots/timeseries.py +55 -0
  19. cryoswath-0.2.0.post1/cryoswath/test_plots/waveform.py +252 -0
  20. cryoswath-0.2.0.post1/data/.gitignore +4 -0
  21. cryoswath-0.2.0.post1/data/L1b/.gitignore +4 -0
  22. cryoswath-0.2.0.post1/data/L1b/README.md +4 -0
  23. cryoswath-0.2.0.post1/data/L1b/Terms-and-Conditions-for-the-use-of-ESA-Data.pdf +0 -0
  24. cryoswath-0.2.0.post1/data/L2_poca/.gitignore +3 -0
  25. cryoswath-0.2.0.post1/data/L2_poca/README.md +8 -0
  26. cryoswath-0.2.0.post1/data/L2_swath/.gitignore +3 -0
  27. cryoswath-0.2.0.post1/data/L2_swath/README.md +6 -0
  28. cryoswath-0.2.0.post1/data/L3/.gitignore +3 -0
  29. cryoswath-0.2.0.post1/data/L3/README.md +4 -0
  30. cryoswath-0.2.0.post1/data/L4/.gitignore +3 -0
  31. cryoswath-0.2.0.post1/data/L4/README.md +5 -0
  32. cryoswath-0.2.0.post1/data/auxiliary/.gitignore +5 -0
  33. cryoswath-0.2.0.post1/data/auxiliary/CryoSat-2_SARIn_file_names.pkl +0 -0
  34. cryoswath-0.2.0.post1/data/auxiliary/CryoSat-2_SARIn_ground_tracks.feather +0 -0
  35. cryoswath-0.2.0.post1/data/auxiliary/DEM/.gitignore +3 -0
  36. cryoswath-0.2.0.post1/data/auxiliary/DEM/README.md +10 -0
  37. cryoswath-0.2.0.post1/data/auxiliary/RGI/.gitignore +5 -0
  38. cryoswath-0.2.0.post1/data/auxiliary/RGI/05-11.feather +0 -0
  39. cryoswath-0.2.0.post1/data/auxiliary/RGI/05-12.feather +0 -0
  40. cryoswath-0.2.0.post1/data/auxiliary/RGI/05-13.feather +0 -0
  41. cryoswath-0.2.0.post1/data/auxiliary/RGI/05-14.feather +0 -0
  42. cryoswath-0.2.0.post1/data/auxiliary/RGI/05-15.feather +0 -0
  43. cryoswath-0.2.0.post1/data/auxiliary/RGI/LICENSE.txt +395 -0
  44. cryoswath-0.2.0.post1/data/auxiliary/RGI/README.md +13 -0
  45. cryoswath-0.2.0.post1/data/auxiliary/RGI/RGI2000-v7.0-o1regions.feather +0 -0
  46. cryoswath-0.2.0.post1/data/auxiliary/RGI/RGI2000-v7.0-o2regions.feather +0 -0
  47. cryoswath-0.2.0.post1/data/tmp/.gitignore +3 -0
  48. cryoswath-0.2.0.post1/data/tmp/README.md +6 -0
  49. cryoswath-0.2.0.post1/data/tutorials/arcticdem_mosaic_100m_v4.1_dem__excerpt_barnes-ice-cap.tif +0 -0
  50. cryoswath-0.2.0.post1/data/tutorials/barnes_ice_cap.feather +0 -0
  51. cryoswath-0.2.0.post1/docker/Dockerfile +13 -0
  52. cryoswath-0.2.0.post1/docker/conda_requirements.txt +17 -0
  53. cryoswath-0.2.0.post1/docker/custom_xarray.patch +4 -0
  54. cryoswath-0.2.0.post1/docs/Makefile +25 -0
  55. cryoswath-0.2.0.post1/docs/conf.py +72 -0
  56. cryoswath-0.2.0.post1/docs/cryoswath.gis.rst +7 -0
  57. cryoswath-0.2.0.post1/docs/cryoswath.l1b.rst +7 -0
  58. cryoswath-0.2.0.post1/docs/cryoswath.l2.rst +7 -0
  59. cryoswath-0.2.0.post1/docs/cryoswath.l3.rst +7 -0
  60. cryoswath-0.2.0.post1/docs/cryoswath.l4.rst +7 -0
  61. cryoswath-0.2.0.post1/docs/cryoswath.misc.rst +8 -0
  62. cryoswath-0.2.0.post1/docs/cryoswath.test_plots.rst +37 -0
  63. cryoswath-0.2.0.post1/docs/getting_started.rst +43 -0
  64. cryoswath-0.2.0.post1/docs/index.rst +27 -0
  65. cryoswath-0.2.0.post1/docs/prerequisites.rst +50 -0
  66. cryoswath-0.2.0.post1/docs/tests.rst +15 -0
  67. cryoswath-0.2.0.post1/docs/tutorials.rst +23 -0
  68. cryoswath-0.2.0.post1/pyproject.toml +57 -0
  69. cryoswath-0.2.0.post1/requirements.txt +41 -0
@@ -0,0 +1,3 @@
1
+ # Override jupyter in Github language stats for more accurate estimate of repo code languages
2
+ # reference: https://github.com/github/linguist/blob/master/docs/overrides.md#generated-code
3
+ *.ipynb linguist-generated
@@ -0,0 +1,28 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help me improve cryoswath
4
+ title: ''
5
+ labels: bug
6
+ assignees: j-haacker
7
+
8
+ ---
9
+
10
+ **Describe the bug**
11
+ A clear and concise description of what the bug is.
12
+
13
+ **To Reproduce**
14
+ Steps to reproduce the behavior:
15
+ 1. '....'
16
+ 2. '....'
17
+
18
+ **Expected behavior**
19
+ A clear and concise description of what you expected to happen.
20
+
21
+ **Traceback**
22
+ Please add your error message in full **but without any security relevant details**.
23
+
24
+ **Environment**
25
+ Please provide information about your environment. Especially, include the pandas version.
26
+
27
+ **Additional context**
28
+ Add any other context about the problem here.
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ title: ''
5
+ labels: enhancement
6
+ assignees: j-haacker
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: Question
3
+ about: Ask a question about this project 🎓
4
+ title: ''
5
+ labels: question
6
+ assignees: j-haacker
7
+ ---
8
+
9
+ **❓ Question**
10
+ How can I [...]?
11
+ Is it possible to [...]?
12
+
13
+ **📎 Additional context**
14
+ If applicable.
@@ -0,0 +1,629 @@
1
+ # Project specific
2
+ config.ini
3
+ docker
4
+ .dockerignore
5
+ tests/reports/*.html
6
+ tests/reports/*.pdf
7
+ tests/reports/0-*
8
+ scripts
9
+ tmp_*
10
+ paper_ESSD
11
+
12
+ # below follows a generated list of files one typically wants to exclude
13
+
14
+ # Created by https://www.gitignore.io/api/osx,python,pycharm,windows,visualstudio,visualstudiocode
15
+ # Edit at https://www.gitignore.io/?templates=osx,python,pycharm,windows,visualstudio,visualstudiocode
16
+
17
+ ### OSX ###
18
+ # General
19
+ .DS_Store
20
+ .AppleDouble
21
+ .LSOverride
22
+
23
+ # Icon must end with two \r
24
+ Icon
25
+
26
+ # Thumbnails
27
+ ._*
28
+
29
+ # Files that might appear in the root of a volume
30
+ .DocumentRevisions-V100
31
+ .fseventsd
32
+ .Spotlight-V100
33
+ .TemporaryItems
34
+ .Trashes
35
+ .VolumeIcon.icns
36
+ .com.apple.timemachine.donotpresent
37
+
38
+ # Directories potentially created on remote AFP share
39
+ .AppleDB
40
+ .AppleDesktop
41
+ Network Trash Folder
42
+ Temporary Items
43
+ .apdisk
44
+
45
+ ### PyCharm ###
46
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
47
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
48
+
49
+ # User-specific stuff
50
+ .idea/**/workspace.xml
51
+ .idea/**/tasks.xml
52
+ .idea/**/usage.statistics.xml
53
+ .idea/**/dictionaries
54
+ .idea/**/shelf
55
+
56
+ # Generated files
57
+ .idea/**/contentModel.xml
58
+
59
+ # Sensitive or high-churn files
60
+ .idea/**/dataSources/
61
+ .idea/**/dataSources.ids
62
+ .idea/**/dataSources.local.xml
63
+ .idea/**/sqlDataSources.xml
64
+ .idea/**/dynamic.xml
65
+ .idea/**/uiDesigner.xml
66
+ .idea/**/dbnavigator.xml
67
+
68
+ # Gradle
69
+ .idea/**/gradle.xml
70
+ .idea/**/libraries
71
+
72
+ # Gradle and Maven with auto-import
73
+ # When using Gradle or Maven with auto-import, you should exclude module files,
74
+ # since they will be recreated, and may cause churn. Uncomment if using
75
+ # auto-import.
76
+ # .idea/modules.xml
77
+ # .idea/*.iml
78
+ # .idea/modules
79
+ # *.iml
80
+ # *.ipr
81
+
82
+ # CMake
83
+ cmake-build-*/
84
+
85
+ # Mongo Explorer plugin
86
+ .idea/**/mongoSettings.xml
87
+
88
+ # File-based project format
89
+ *.iws
90
+
91
+ # IntelliJ
92
+ out/
93
+
94
+ # mpeltonen/sbt-idea plugin
95
+ .idea_modules/
96
+
97
+ # JIRA plugin
98
+ atlassian-ide-plugin.xml
99
+
100
+ # Cursive Clojure plugin
101
+ .idea/replstate.xml
102
+
103
+ # Crashlytics plugin (for Android Studio and IntelliJ)
104
+ com_crashlytics_export_strings.xml
105
+ crashlytics.properties
106
+ crashlytics-build.properties
107
+ fabric.properties
108
+
109
+ # Editor-based Rest Client
110
+ .idea/httpRequests
111
+
112
+ # Android studio 3.1+ serialized cache file
113
+ .idea/caches/build_file_checksums.ser
114
+
115
+ ### PyCharm Patch ###
116
+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
117
+
118
+ # *.iml
119
+ # modules.xml
120
+ # .idea/misc.xml
121
+ # *.ipr
122
+
123
+ # Sonarlint plugin
124
+ .idea/**/sonarlint/
125
+
126
+ # SonarQube Plugin
127
+ .idea/**/sonarIssues.xml
128
+
129
+ # Markdown Navigator plugin
130
+ .idea/**/markdown-navigator.xml
131
+ .idea/**/markdown-navigator/
132
+
133
+ ### Python ###
134
+ # Byte-compiled / optimized / DLL files
135
+ __pycache__/
136
+ *.py[cod]
137
+ *$py.class
138
+
139
+ # C extensions
140
+ *.so
141
+
142
+ # Distribution / packaging
143
+ .Python
144
+ build/
145
+ develop-eggs/
146
+ dist/
147
+ downloads/
148
+ eggs/
149
+ .eggs/
150
+ lib/
151
+ lib64/
152
+ parts/
153
+ sdist/
154
+ var/
155
+ wheels/
156
+ pip-wheel-metadata/
157
+ share/python-wheels/
158
+ *.egg-info/
159
+ .installed.cfg
160
+ *.egg
161
+ MANIFEST
162
+
163
+ # PyInstaller
164
+ # Usually these files are written by a python script from a template
165
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
166
+ *.manifest
167
+ *.spec
168
+
169
+ # Installer logs
170
+ pip-log.txt
171
+ pip-delete-this-directory.txt
172
+
173
+ # Unit test / coverage reports
174
+ htmlcov/
175
+ .tox/
176
+ .nox/
177
+ .coverage
178
+ .coverage.*
179
+ .cache
180
+ nosetests.xml
181
+ coverage.xml
182
+ *.cover
183
+ .hypothesis/
184
+ .pytest_cache/
185
+
186
+ # Translations
187
+ *.mo
188
+ *.pot
189
+
190
+ # Scrapy stuff:
191
+ .scrapy
192
+
193
+ # Sphinx documentation
194
+ docs/_build/
195
+
196
+ # PyBuilder
197
+ target/
198
+
199
+ # pyenv
200
+ .python-version
201
+
202
+ # poetry
203
+ .venv
204
+
205
+ # pipenv
206
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
207
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
208
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
209
+ # install all needed dependencies.
210
+ #Pipfile.lock
211
+
212
+ # celery beat schedule file
213
+ celerybeat-schedule
214
+
215
+ # SageMath parsed files
216
+ *.sage.py
217
+
218
+ # Spyder project settings
219
+ .spyderproject
220
+ .spyproject
221
+
222
+ # Rope project settings
223
+ .ropeproject
224
+
225
+ # Mr Developer
226
+ .mr.developer.cfg
227
+ .project
228
+ .pydevproject
229
+
230
+ # mkdocs documentation
231
+ /site
232
+
233
+ # mypy
234
+ .mypy_cache/
235
+ .dmypy.json
236
+ dmypy.json
237
+
238
+ # Pyre type checker
239
+ .pyre/
240
+
241
+ # Plugins
242
+ .secrets.baseline
243
+
244
+ ### VisualStudioCode ###
245
+ .vscode/*
246
+ !.vscode/tasks.json
247
+ !.vscode/launch.json
248
+ !.vscode/extensions.json
249
+
250
+ ### VisualStudioCode Patch ###
251
+ # Ignore all local history of files
252
+ .history
253
+
254
+ ### Windows ###
255
+ # Windows thumbnail cache files
256
+ Thumbs.db
257
+ Thumbs.db:encryptable
258
+ ehthumbs.db
259
+ ehthumbs_vista.db
260
+
261
+ # Dump file
262
+ *.stackdump
263
+
264
+ # Folder config file
265
+ [Dd]esktop.ini
266
+
267
+ # Recycle Bin used on file shares
268
+ $RECYCLE.BIN/
269
+
270
+ # Windows Installer files
271
+ *.cab
272
+ *.msi
273
+ *.msix
274
+ *.msm
275
+ *.msp
276
+
277
+ # Windows shortcuts
278
+ *.lnk
279
+
280
+ ### VisualStudio ###
281
+ ## Ignore Visual Studio temporary files, build results, and
282
+ ## files generated by popular Visual Studio add-ons.
283
+ ##
284
+ ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
285
+
286
+ # User-specific files
287
+ *.rsuser
288
+ *.suo
289
+ *.user
290
+ *.userosscache
291
+ *.sln.docstates
292
+
293
+ # User-specific files (MonoDevelop/Xamarin Studio)
294
+ *.userprefs
295
+
296
+ # Mono auto generated files
297
+ mono_crash.*
298
+
299
+ # Build results
300
+ [Dd]ebug/
301
+ [Dd]ebugPublic/
302
+ [Rr]elease/
303
+ [Rr]eleases/
304
+ x64/
305
+ x86/
306
+ [Aa][Rr][Mm]/
307
+ [Aa][Rr][Mm]64/
308
+ bld/
309
+ [Bb]in/
310
+ [Oo]bj/
311
+ [Ll]og/
312
+
313
+ # Visual Studio 2015/2017 cache/options directory
314
+ .vs/
315
+ # Uncomment if you have tasks that create the project's static files in wwwroot
316
+ #wwwroot/
317
+
318
+ # Visual Studio 2017 auto generated files
319
+ Generated\ Files/
320
+
321
+ # MSTest test Results
322
+ [Tt]est[Rr]esult*/
323
+ [Bb]uild[Ll]og.*
324
+
325
+ # NUnit
326
+ *.VisualState.xml
327
+ TestResult.xml
328
+ nunit-*.xml
329
+
330
+ # Build Results of an ATL Project
331
+ [Dd]ebugPS/
332
+ [Rr]eleasePS/
333
+ dlldata.c
334
+
335
+ # Benchmark Results
336
+ BenchmarkDotNet.Artifacts/
337
+
338
+ # .NET Core
339
+ project.lock.json
340
+ project.fragment.lock.json
341
+ artifacts/
342
+
343
+ # StyleCop
344
+ StyleCopReport.xml
345
+
346
+ # Files built by Visual Studio
347
+ *_i.c
348
+ *_p.c
349
+ *_h.h
350
+ *.ilk
351
+ *.obj
352
+ *.iobj
353
+ *.pch
354
+ *.pdb
355
+ *.ipdb
356
+ *.pgc
357
+ *.pgd
358
+ *.rsp
359
+ *.sbr
360
+ *.tlb
361
+ *.tli
362
+ *.tlh
363
+ *.tmp
364
+ *.tmp_proj
365
+ *_wpftmp.csproj
366
+ *.log
367
+ *.vspscc
368
+ *.vssscc
369
+ .builds
370
+ *.pidb
371
+ *.svclog
372
+ *.scc
373
+
374
+ # Chutzpah Test files
375
+ _Chutzpah*
376
+
377
+ # Visual C++ cache files
378
+ ipch/
379
+ *.aps
380
+ *.ncb
381
+ *.opendb
382
+ *.opensdf
383
+ *.sdf
384
+ *.cachefile
385
+ *.VC.db
386
+ *.VC.VC.opendb
387
+
388
+ # Visual Studio profiler
389
+ *.psess
390
+ *.vsp
391
+ *.vspx
392
+ *.sap
393
+
394
+ # Visual Studio Trace Files
395
+ *.e2e
396
+
397
+ # TFS 2012 Local Workspace
398
+ $tf/
399
+
400
+ # Guidance Automation Toolkit
401
+ *.gpState
402
+
403
+ # ReSharper is a .NET coding add-in
404
+ _ReSharper*/
405
+ *.[Rr]e[Ss]harper
406
+ *.DotSettings.user
407
+
408
+ # JustCode is a .NET coding add-in
409
+ .JustCode
410
+
411
+ # TeamCity is a build add-in
412
+ _TeamCity*
413
+
414
+ # DotCover is a Code Coverage Tool
415
+ *.dotCover
416
+
417
+ # AxoCover is a Code Coverage Tool
418
+ .axoCover/*
419
+ !.axoCover/settings.json
420
+
421
+ # Visual Studio code coverage results
422
+ *.coverage
423
+ *.coveragexml
424
+
425
+ # NCrunch
426
+ _NCrunch_*
427
+ .*crunch*.local.xml
428
+ nCrunchTemp_*
429
+
430
+ # MightyMoose
431
+ *.mm.*
432
+ AutoTest.Net/
433
+
434
+ # Web workbench (sass)
435
+ .sass-cache/
436
+
437
+ # Installshield output folder
438
+ [Ee]xpress/
439
+
440
+ # DocProject is a documentation generator add-in
441
+ DocProject/buildhelp/
442
+ DocProject/Help/*.HxT
443
+ DocProject/Help/*.HxC
444
+ DocProject/Help/*.hhc
445
+ DocProject/Help/*.hhk
446
+ DocProject/Help/*.hhp
447
+ DocProject/Help/Html2
448
+ DocProject/Help/html
449
+
450
+ # Click-Once directory
451
+ publish/
452
+
453
+ # Publish Web Output
454
+ *.[Pp]ublish.xml
455
+ *.azurePubxml
456
+ # Note: Comment the next line if you want to checkin your web deploy settings,
457
+ # but database connection strings (with potential passwords) will be unencrypted
458
+ *.pubxml
459
+ *.publishproj
460
+
461
+ # Microsoft Azure Web App publish settings. Comment the next line if you want to
462
+ # checkin your Azure Web App publish settings, but sensitive information contained
463
+ # in these scripts will be unencrypted
464
+ PublishScripts/
465
+
466
+ # NuGet Packages
467
+ *.nupkg
468
+ # NuGet Symbol Packages
469
+ *.snupkg
470
+ # The packages folder can be ignored because of Package Restore
471
+ **/[Pp]ackages/*
472
+ # except build/, which is used as an MSBuild target.
473
+ !**/[Pp]ackages/build/
474
+ # Uncomment if necessary however generally it will be regenerated when needed
475
+ #!**/[Pp]ackages/repositories.config
476
+ # NuGet v3's project.json files produces more ignorable files
477
+ *.nuget.props
478
+ *.nuget.targets
479
+
480
+ # Microsoft Azure Build Output
481
+ csx/
482
+ *.build.csdef
483
+
484
+ # Microsoft Azure Emulator
485
+ ecf/
486
+ rcf/
487
+
488
+ # Windows Store app package directories and files
489
+ AppPackages/
490
+ BundleArtifacts/
491
+ Package.StoreAssociation.xml
492
+ _pkginfo.txt
493
+ *.appx
494
+ *.appxbundle
495
+ *.appxupload
496
+
497
+ # Visual Studio cache files
498
+ # files ending in .cache can be ignored
499
+ *.[Cc]ache
500
+ # but keep track of directories ending in .cache
501
+ !?*.[Cc]ache/
502
+
503
+ # Others
504
+ ClientBin/
505
+ ~$*
506
+ *~
507
+ *.dbmdl
508
+ *.dbproj.schemaview
509
+ *.jfm
510
+ *.pfx
511
+ *.publishsettings
512
+ orleans.codegen.cs
513
+
514
+ # Including strong name files can present a security risk
515
+ # (https://github.com/github/gitignore/pull/2483#issue-259490424)
516
+ #*.snk
517
+
518
+ # Since there are multiple workflows, uncomment next line to ignore bower_components
519
+ # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
520
+ #bower_components/
521
+
522
+ # RIA/Silverlight projects
523
+ Generated_Code/
524
+
525
+ # Backup & report files from converting an old project file
526
+ # to a newer Visual Studio version. Backup files are not needed,
527
+ # because we have git ;-)
528
+ _UpgradeReport_Files/
529
+ Backup*/
530
+ UpgradeLog*.XML
531
+ UpgradeLog*.htm
532
+ ServiceFabricBackup/
533
+ *.rptproj.bak
534
+
535
+ # SQL Server files
536
+ *.mdf
537
+ *.ldf
538
+ *.ndf
539
+
540
+ # Business Intelligence projects
541
+ *.rdl.data
542
+ *.bim.layout
543
+ *.bim_*.settings
544
+ *.rptproj.rsuser
545
+ *- [Bb]ackup.rdl
546
+ *- [Bb]ackup ([0-9]).rdl
547
+ *- [Bb]ackup ([0-9][0-9]).rdl
548
+
549
+ # Microsoft Fakes
550
+ FakesAssemblies/
551
+
552
+ # GhostDoc plugin setting file
553
+ *.GhostDoc.xml
554
+
555
+ # Node.js Tools for Visual Studio
556
+ .ntvs_analysis.dat
557
+ node_modules/
558
+
559
+ # Visual Studio 6 build log
560
+ *.plg
561
+
562
+ # Visual Studio 6 workspace options file
563
+ *.opt
564
+
565
+ # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
566
+ *.vbw
567
+
568
+ # Visual Studio LightSwitch build output
569
+ **/*.HTMLClient/GeneratedArtifacts
570
+ **/*.DesktopClient/GeneratedArtifacts
571
+ **/*.DesktopClient/ModelManifest.xml
572
+ **/*.Server/GeneratedArtifacts
573
+ **/*.Server/ModelManifest.xml
574
+ _Pvt_Extensions
575
+
576
+ # Paket dependency manager
577
+ .paket/paket.exe
578
+ paket-files/
579
+
580
+ # FAKE - F# Make
581
+ .fake/
582
+
583
+ # CodeRush personal settings
584
+ .cr/personal
585
+
586
+ # Python Tools for Visual Studio (PTVS)
587
+ *.pyc
588
+
589
+ # Cake - Uncomment if you are using it
590
+ # tools/**
591
+ # !tools/packages.config
592
+
593
+ # Tabs Studio
594
+ *.tss
595
+
596
+ # Telerik's JustMock configuration file
597
+ *.jmconfig
598
+
599
+ # BizTalk build output
600
+ *.btp.cs
601
+ *.btm.cs
602
+ *.odx.cs
603
+ *.xsd.cs
604
+
605
+ # OpenCover UI analysis results
606
+ OpenCover/
607
+
608
+ # Azure Stream Analytics local run output
609
+ ASALocalRun/
610
+
611
+ # MSBuild Binary and Structured Log
612
+ *.binlog
613
+
614
+ # NVidia Nsight GPU debugger configuration file
615
+ *.nvuser
616
+
617
+ # MFractors (Xamarin productivity tool) working folder
618
+ .mfractor/
619
+
620
+ # Local History for Visual Studio
621
+ .localhistory/
622
+
623
+ # BeatPulse healthcheck temp database
624
+ healthchecksdb
625
+
626
+ # Backup folder for Package Reference Convert tool in Visual Studio 2017
627
+ MigrationBackup/
628
+
629
+ # End of https://www.gitignore.io/api/osx,python,pycharm,windows,visualstudio,visualstudiocode
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+ Copyright (c) 2023 Delft University of Technology
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ of this software and associated documentation files (the "Software"), to deal
6
+ in the Software without restriction, including without limitation the rights
7
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is
9
+ furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
20
+ OR OTHER DEALINGS IN THE SOFTWARE.