timewise 0.5.3__py3-none-any.whl → 1.0.0a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. timewise/__init__.py +1 -5
  2. timewise/backend/__init__.py +6 -0
  3. timewise/backend/base.py +36 -0
  4. timewise/backend/filesystem.py +80 -0
  5. timewise/chunking.py +50 -0
  6. timewise/cli.py +117 -11
  7. timewise/config.py +34 -0
  8. timewise/io/__init__.py +1 -0
  9. timewise/io/config.py +64 -0
  10. timewise/io/download.py +302 -0
  11. timewise/io/stable_tap.py +121 -0
  12. timewise/plot/__init__.py +3 -0
  13. timewise/plot/diagnostic.py +242 -0
  14. timewise/plot/lightcurve.py +112 -0
  15. timewise/plot/panstarrs.py +260 -0
  16. timewise/plot/sdss.py +109 -0
  17. timewise/process/__init__.py +2 -0
  18. timewise/process/config.py +30 -0
  19. timewise/process/interface.py +143 -0
  20. timewise/process/keys.py +10 -0
  21. timewise/process/stacking.py +310 -0
  22. timewise/process/template.yml +49 -0
  23. timewise/query/__init__.py +6 -0
  24. timewise/query/base.py +45 -0
  25. timewise/query/positional.py +40 -0
  26. timewise/tables/__init__.py +10 -0
  27. timewise/tables/allwise_p3as_mep.py +22 -0
  28. timewise/tables/base.py +9 -0
  29. timewise/tables/neowiser_p1bs_psd.py +22 -0
  30. timewise/types.py +30 -0
  31. timewise/util/backoff.py +12 -0
  32. timewise/util/csv_utils.py +12 -0
  33. timewise/util/error_threading.py +70 -0
  34. timewise/util/visits.py +33 -0
  35. timewise-1.0.0a1.dist-info/METADATA +205 -0
  36. timewise-1.0.0a1.dist-info/RECORD +39 -0
  37. {timewise-0.5.3.dist-info → timewise-1.0.0a1.dist-info}/WHEEL +1 -1
  38. timewise-1.0.0a1.dist-info/entry_points.txt +3 -0
  39. timewise/big_parent_sample.py +0 -106
  40. timewise/config_loader.py +0 -157
  41. timewise/general.py +0 -52
  42. timewise/parent_sample_base.py +0 -89
  43. timewise/point_source_utils.py +0 -68
  44. timewise/utils.py +0 -558
  45. timewise/wise_bigdata_desy_cluster.py +0 -1407
  46. timewise/wise_data_base.py +0 -2027
  47. timewise/wise_data_by_visit.py +0 -672
  48. timewise/wise_flux_conversion_correction.dat +0 -19
  49. timewise-0.5.3.dist-info/METADATA +0 -55
  50. timewise-0.5.3.dist-info/RECORD +0 -17
  51. timewise-0.5.3.dist-info/entry_points.txt +0 -3
  52. {timewise-0.5.3.dist-info → timewise-1.0.0a1.dist-info/licenses}/LICENSE +0 -0
@@ -1,55 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: timewise
3
- Version: 0.5.3
4
- Summary: A small package to download infrared data from the WISE satellite
5
- License: MIT
6
- Author: Jannis Necker
7
- Author-email: jannis.necker@gmail.com
8
- Requires-Python: >=3.9,<3.12
9
- Classifier: License :: OSI Approved :: MIT 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
- Provides-Extra: dev
15
- Provides-Extra: docs
16
- Requires-Dist: astropy (>=5.1,<6.0.0)
17
- Requires-Dist: backoff (>=2.1.2,<3.0.0)
18
- Requires-Dist: coveralls (>=3.3.1,<4.0.0) ; extra == "dev"
19
- Requires-Dist: jupyter[jupyter] (>=1.0.0,<2.0.0)
20
- Requires-Dist: jupyterlab[jupyter] (>=4.0.6,<5.0.0)
21
- Requires-Dist: matplotlib (>=3.5.3,<4.0.0)
22
- Requires-Dist: myst-parser (>=1,<3) ; extra == "docs"
23
- Requires-Dist: numpy (>=1.23.2,<2.0.0)
24
- Requires-Dist: pandas (>=1.4.3,<3.0.0)
25
- Requires-Dist: pydantic (>=1.9.0,<2.0.0)
26
- Requires-Dist: pytest (>=7.2.2,<8.0.0) ; extra == "dev"
27
- Requires-Dist: pyvo (>=1.7.0,<2.0.0)
28
- Requires-Dist: requests (>=2.28.1,<3.0.0)
29
- Requires-Dist: scikit-image (>=0.19.3,<0.22.0)
30
- Requires-Dist: scikit-learn (>=1.3.0,<2.0.0)
31
- Requires-Dist: seaborn (>=0.11.2,<0.14.0)
32
- Requires-Dist: sphinx-rtd-theme (>=1.3.0,<2.0.0) ; extra == "docs"
33
- Requires-Dist: tqdm (>=4.64.0,<5.0.0)
34
- Requires-Dist: urllib3 (==1.26.15)
35
- Requires-Dist: virtualenv (>=20.16.3,<21.0.0)
36
- Project-URL: Bug Tracker, https://github.com/JannisNe/timewise/issues
37
- Project-URL: Documentation, https://timewise.readthedocs.io/en/latest
38
- Project-URL: Homepage, https://github.com/JannisNe/timewise
39
- Description-Content-Type: text/markdown
40
-
41
- [![CI](https://github.com/JannisNe/timewise/actions/workflows/continous_integration.yml/badge.svg)](https://github.com/JannisNe/timewise/actions/workflows/continous_integration.yml)
42
- [![Coverage Status](https://coveralls.io/repos/github/JannisNe/timewise/badge.svg?branch=main)](https://coveralls.io/github/JannisNe/timewise?branch=main)
43
- [![PyPI version](https://badge.fury.io/py/timewise.svg)](https://badge.fury.io/py/timewise)
44
- [![Documentation Status](https://readthedocs.org/projects/timewise/badge/?version=latest)](https://timewise.readthedocs.io/en/latest/?badge=latest)
45
- [![DOI](https://zenodo.org/badge/449677569.svg)](https://zenodo.org/badge/latestdoi/449677569)
46
-
47
-
48
- ![](docs/source/timewise.png)
49
- # `timewise`: Build IR Lightcurve from WISE data
50
- Detailed documentation can be found [here](https://timewise.readthedocs.io/en/latest/).
51
-
52
- ## Difference lightcurves
53
- Make sure to check out `timewise-sup`, the Timewise Subtraction Pipeline:
54
- [link](https://gitlab.desy.de/jannisnecker/timewise_sup).
55
-
@@ -1,17 +0,0 @@
1
- timewise/__init__.py,sha256=mm7QFyMaZmalMXJJy28ljsyL7FJkxWyi5WXncAfmQ2U,203
2
- timewise/big_parent_sample.py,sha256=fB3JR7lGa2cKiJRYxafvu4_SaURB7cvu28ZWxyXBSVs,3443
3
- timewise/cli.py,sha256=LRBR3cOd_qBEpGkyP7tbJBCKvO0XxRQA8BgoMZfw08k,533
4
- timewise/config_loader.py,sha256=wvOV4zFXNQBeWU9Qlf1dazhPtz12uEUhNY5ztUeNe6U,5690
5
- timewise/general.py,sha256=rGpECBpSjD8aha1xFVAtrsU1JGO_1joibOfvZF-aAbk,1640
6
- timewise/parent_sample_base.py,sha256=AbM4WQnQuqxgovqagNJVmVoIxS3HCEMKpc87J04DNsc,3400
7
- timewise/point_source_utils.py,sha256=4dmxfujrrNxDLkh2rVziSR-NNaHzrKFa8xgx_Lj-ZNE,2171
8
- timewise/utils.py,sha256=DkhsWbwbkHI7DmQQk1jGJY1i0G3Zhl1Qfmiagb8Tfik,18509
9
- timewise/wise_bigdata_desy_cluster.py,sha256=fuTaXvYkoNqdh8OctNcVCqmzhfzJAajCfRiJh3RSX8w,56623
10
- timewise/wise_data_base.py,sha256=Zq9NzxZKbMzL6QelG2rzkcr-7cEHLnK7n14TY_3Cs-o,86476
11
- timewise/wise_data_by_visit.py,sha256=hNV3kZd9Lh062ohOT2vNXy9nKYSBIrlbbi3dwDDTaKA,29116
12
- timewise/wise_flux_conversion_correction.dat,sha256=XLnYqk0g1NVthVSNGsKlqinzKI7QUwJidO-qg4tHXKU,1095
13
- timewise-0.5.3.dist-info/LICENSE,sha256=sVoNJWiTlH-NarJx0wdsob468Pg3JE6vIIgll4lCa3E,1070
14
- timewise-0.5.3.dist-info/METADATA,sha256=Mb5kuRHh8D3dgjlWRHxmgz40zgeUnhv9tnSk1Vnvgdg,2674
15
- timewise-0.5.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
16
- timewise-0.5.3.dist-info/entry_points.txt,sha256=yIWgzM0CZCJBrSR9-zbQW9d8MpFae0KlRVnZXF8rZow,54
17
- timewise-0.5.3.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- timewise=timewise.cli:timewise_cli
3
-