timewise 0.5.3__tar.gz → 0.5.4__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.
- {timewise-0.5.3 → timewise-0.5.4}/PKG-INFO +3 -2
- {timewise-0.5.3 → timewise-0.5.4}/pyproject.toml +1 -1
- {timewise-0.5.3 → timewise-0.5.4}/timewise/__init__.py +1 -1
- {timewise-0.5.3 → timewise-0.5.4}/timewise/wise_data_base.py +1 -1
- {timewise-0.5.3 → timewise-0.5.4}/LICENSE +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/README.md +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/timewise/big_parent_sample.py +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/timewise/cli.py +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/timewise/config_loader.py +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/timewise/general.py +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/timewise/parent_sample_base.py +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/timewise/point_source_utils.py +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/timewise/utils.py +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/timewise/wise_bigdata_desy_cluster.py +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/timewise/wise_data_by_visit.py +0 -0
- {timewise-0.5.3 → timewise-0.5.4}/timewise/wise_flux_conversion_correction.dat +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: timewise
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
4
4
|
Summary: A small package to download infrared data from the WISE satellite
|
|
5
5
|
License: MIT
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Author: Jannis Necker
|
|
7
8
|
Author-email: jannis.necker@gmail.com
|
|
8
9
|
Requires-Python: >=3.9,<3.12
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "timewise"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.4"
|
|
8
8
|
description = "A small package to download infrared data from the WISE satellite"
|
|
9
9
|
authors = [
|
|
10
10
|
{ name = "Jannis Necker", email = "jannis.necker@gmail.com" },
|
|
@@ -1372,7 +1372,7 @@ class WISEDataBase(abc.ABC):
|
|
|
1372
1372
|
if len(fns) == 0:
|
|
1373
1373
|
raise ValueError(f"No unbinned lightcurves found for chunk {chunk_number}!")
|
|
1374
1374
|
|
|
1375
|
-
lightcurves = pd.concat([pd.read_csv(fn) for fn in fns])
|
|
1375
|
+
lightcurves = pd.concat([pd.read_csv(fn) for fn in fns]).reset_index()
|
|
1376
1376
|
|
|
1377
1377
|
if clear:
|
|
1378
1378
|
for fn in fns:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|