timewise 0.5.4__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-1.0.0a1.dist-info/entry_points.txt +3 -0
  38. timewise/big_parent_sample.py +0 -106
  39. timewise/config_loader.py +0 -157
  40. timewise/general.py +0 -52
  41. timewise/parent_sample_base.py +0 -89
  42. timewise/point_source_utils.py +0 -68
  43. timewise/utils.py +0 -558
  44. timewise/wise_bigdata_desy_cluster.py +0 -1407
  45. timewise/wise_data_base.py +0 -2027
  46. timewise/wise_data_by_visit.py +0 -672
  47. timewise/wise_flux_conversion_correction.dat +0 -19
  48. timewise-0.5.4.dist-info/METADATA +0 -56
  49. timewise-0.5.4.dist-info/RECORD +0 -17
  50. timewise-0.5.4.dist-info/entry_points.txt +0 -3
  51. {timewise-0.5.4.dist-info → timewise-1.0.0a1.dist-info}/WHEEL +0 -0
  52. {timewise-0.5.4.dist-info → timewise-1.0.0a1.dist-info}/licenses/LICENSE +0 -0
@@ -1,56 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: timewise
3
- Version: 0.5.4
4
- Summary: A small package to download infrared data from the WISE satellite
5
- License: MIT
6
- License-File: LICENSE
7
- Author: Jannis Necker
8
- Author-email: jannis.necker@gmail.com
9
- Requires-Python: >=3.9,<3.12
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.9
13
- Classifier: Programming Language :: Python :: 3.10
14
- Classifier: Programming Language :: Python :: 3.11
15
- Provides-Extra: dev
16
- Provides-Extra: docs
17
- Requires-Dist: astropy (>=5.1,<6.0.0)
18
- Requires-Dist: backoff (>=2.1.2,<3.0.0)
19
- Requires-Dist: coveralls (>=3.3.1,<4.0.0) ; extra == "dev"
20
- Requires-Dist: jupyter[jupyter] (>=1.0.0,<2.0.0)
21
- Requires-Dist: jupyterlab[jupyter] (>=4.0.6,<5.0.0)
22
- Requires-Dist: matplotlib (>=3.5.3,<4.0.0)
23
- Requires-Dist: myst-parser (>=1,<3) ; extra == "docs"
24
- Requires-Dist: numpy (>=1.23.2,<2.0.0)
25
- Requires-Dist: pandas (>=1.4.3,<3.0.0)
26
- Requires-Dist: pydantic (>=1.9.0,<2.0.0)
27
- Requires-Dist: pytest (>=7.2.2,<8.0.0) ; extra == "dev"
28
- Requires-Dist: pyvo (>=1.7.0,<2.0.0)
29
- Requires-Dist: requests (>=2.28.1,<3.0.0)
30
- Requires-Dist: scikit-image (>=0.19.3,<0.22.0)
31
- Requires-Dist: scikit-learn (>=1.3.0,<2.0.0)
32
- Requires-Dist: seaborn (>=0.11.2,<0.14.0)
33
- Requires-Dist: sphinx-rtd-theme (>=1.3.0,<2.0.0) ; extra == "docs"
34
- Requires-Dist: tqdm (>=4.64.0,<5.0.0)
35
- Requires-Dist: urllib3 (==1.26.15)
36
- Requires-Dist: virtualenv (>=20.16.3,<21.0.0)
37
- Project-URL: Bug Tracker, https://github.com/JannisNe/timewise/issues
38
- Project-URL: Documentation, https://timewise.readthedocs.io/en/latest
39
- Project-URL: Homepage, https://github.com/JannisNe/timewise
40
- Description-Content-Type: text/markdown
41
-
42
- [![CI](https://github.com/JannisNe/timewise/actions/workflows/continous_integration.yml/badge.svg)](https://github.com/JannisNe/timewise/actions/workflows/continous_integration.yml)
43
- [![Coverage Status](https://coveralls.io/repos/github/JannisNe/timewise/badge.svg?branch=main)](https://coveralls.io/github/JannisNe/timewise?branch=main)
44
- [![PyPI version](https://badge.fury.io/py/timewise.svg)](https://badge.fury.io/py/timewise)
45
- [![Documentation Status](https://readthedocs.org/projects/timewise/badge/?version=latest)](https://timewise.readthedocs.io/en/latest/?badge=latest)
46
- [![DOI](https://zenodo.org/badge/449677569.svg)](https://zenodo.org/badge/latestdoi/449677569)
47
-
48
-
49
- ![](docs/source/timewise.png)
50
- # `timewise`: Build IR Lightcurve from WISE data
51
- Detailed documentation can be found [here](https://timewise.readthedocs.io/en/latest/).
52
-
53
- ## Difference lightcurves
54
- Make sure to check out `timewise-sup`, the Timewise Subtraction Pipeline:
55
- [link](https://gitlab.desy.de/jannisnecker/timewise_sup).
56
-
@@ -1,17 +0,0 @@
1
- timewise/__init__.py,sha256=kvKHSI9zZApQUxb5W6g9leLJjBR2WhoFcocsZJDf2yk,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=7tYHR957jX_XZkD8JKS0REO98WPanOzQ05DjO94jE2g,86490
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.4.dist-info/METADATA,sha256=m5rYyODWh_REkn0cRv0efXEQkMGr06K63mbUHLcH6uY,2696
14
- timewise-0.5.4.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
15
- timewise-0.5.4.dist-info/entry_points.txt,sha256=yIWgzM0CZCJBrSR9-zbQW9d8MpFae0KlRVnZXF8rZow,54
16
- timewise-0.5.4.dist-info/licenses/LICENSE,sha256=sVoNJWiTlH-NarJx0wdsob468Pg3JE6vIIgll4lCa3E,1070
17
- timewise-0.5.4.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- timewise=timewise.cli:timewise_cli
3
-