Pyriod 0.3.1__tar.gz → 0.3.2__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.
- {pyriod-0.3.1 → pyriod-0.3.2}/PKG-INFO +1 -1
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/Pyriod.py +1 -20
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod.egg-info/PKG-INFO +1 -1
- {pyriod-0.3.1 → pyriod-0.3.2}/setup.py +1 -1
- {pyriod-0.3.1 → pyriod-0.3.2}/LICENSE +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/MANIFEST.in +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/__init__.py +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/docs/Periodogram.md +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/docs/Signals.md +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/docs/TimeSeries.md +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod/pyquist.py +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod.egg-info/SOURCES.txt +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod.egg-info/dependency_links.txt +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod.egg-info/requires.txt +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/Pyriod.egg-info/top_level.txt +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/README.md +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/docs/examples.md +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/docs/img/Log.png +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/docs/img/Periodogram.png +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/docs/img/Pyriod.png +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/docs/img/Signals.png +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/docs/img/TimeSeries.png +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/docs/index.md +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/docs/tutorial.md +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/examples/TESS_DBV_example.ipynb +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/examples/TSC2_Demo.ipynb +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/mkdocs.yml +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/requirements.txt +0 -0
- {pyriod-0.3.1 → pyriod-0.3.2}/setup.cfg +0 -0
|
@@ -2139,23 +2139,4 @@ class Pyriod(object):
|
|
|
2139
2139
|
ax.set_ylim(0, 1)
|
|
2140
2140
|
ax.set_xlabel(f"frequency ({self.freq_label})")
|
|
2141
2141
|
ax.set_ylabel('spectral window')
|
|
2142
|
-
return(ax)
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
data = np.loadtxt("/Users/keatonb/github/Pyriod/testing_dev/chimera_gr_combined_4nights.lc")
|
|
2146
|
-
ofactor = 20
|
|
2147
|
-
fnyq = 0.003
|
|
2148
|
-
fres = 1./ np.ptp(data[:,0])
|
|
2149
|
-
freq = np.arange(fres/ofactor, fnyq+fres/ofactor, fres/ofactor)
|
|
2150
|
-
lc = lk.LightCurve(
|
|
2151
|
-
time = data[:,0] / 86400,
|
|
2152
|
-
flux = data[:,1],
|
|
2153
|
-
flux_err = data[:,2]
|
|
2154
|
-
)
|
|
2155
|
-
|
|
2156
|
-
pyriod = Pyriod(
|
|
2157
|
-
lc,
|
|
2158
|
-
amp_unit='ppt',
|
|
2159
|
-
freq_unit='muHz',
|
|
2160
|
-
frequency=freq*1e6
|
|
2161
|
-
)
|
|
2142
|
+
return(ax)
|
|
@@ -8,7 +8,7 @@ with open("requirements.txt", "r") as fh:
|
|
|
8
8
|
|
|
9
9
|
setuptools.setup(
|
|
10
10
|
name="Pyriod",
|
|
11
|
-
version="0.3.
|
|
11
|
+
version="0.3.2",
|
|
12
12
|
author="Keaton Bell",
|
|
13
13
|
author_email="keatonbell@utexas.edu",
|
|
14
14
|
description="Basic period detection and fitting routines for astronomical time series.",
|
|
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
|
|
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
|
|
File without changes
|