No project description provided
Project description
LCDC: Light curve dataset creator
LCDC is a Python package that allows you to work with large light curve datasets in a simple and efficient way. It is designed to be used creation of dataset for machine learning models as it produces output in datasets.Dataset format. Also it is a powerful tool for data preprocessing and scientific analysis on whole populations.
It is sutaible for working with MMT_snapshot dataset created from MMT database [^1].
For full documentation visit docs.
Instalation
pip install lcdc
Simple Example
from lcdc import DatasetBuilder
from lcdc import vars
from lcdc import utils
import lcdc.preprocessing as pp
import lcdc.stats as stats
db = DatasetBuilder(DATA_PATH, norad_ids=[IDX])
preprocessing = [
pp.FilterByPeriodicity(vars.Variability.PERIODIC),
pp.SplitByRotationalPeriod(1),
pp.FilterMinLength(100),
pp.FilterFolded(100, 0.8),
]
db.preprocess(preprocessing)
dataset = db.build_dataset()
print(dataset)
Output
Loaded 402 track
Preprocessing: 100%|██████████| 402/402 [00:08<00:00, 49.28it/s]
Dataset({
features: ['norad_id', 'id', 'period', 'timestamp', 'time', 'mag', 'phase', 'distance', 'filter', 'name', 'variability', 'label', 'range'],
num_rows: 4057
})
📝 Citing
@article{kyselica2025lcdc,
title={LCDC: Bridging Science and Machine Learning for Light Curve Analysis},
author={Kyselica, Daniel and Hrob{\'a}r, Tom{\'a}{\v{s}} and {\v{S}}ilha, Ji{\v{r}}{\'\i} and {\v{D}}urikovi{\v{c}}, Roman and {\v{S}}uppa, Marek},
journal={arXiv preprint arXiv:2504.10550},
year={2025}
}
[^1]: Karpov, S., et al. "Mini-Mega-TORTORA wide-field monitoring system with sub-second temporal resolution: first year of operation." Revista Mexicana de Astronomía y Astrofísica 48 (2016): 91-96.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lcdc-0.1.2-py3-none-any.whl.
File metadata
- Download URL: lcdc-0.1.2-py3-none-any.whl
- Upload date:
- Size: 19.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44b06ac68f3786a20ac8ab1cb17940445df4c8f8e71f8f0eb93e5b7a98363306
|
|
| MD5 |
1b6ed996108cc2868900a47c3ac63a2c
|
|
| BLAKE2b-256 |
f7e4203c7a853f31b19b58fcbf70cc32a987971f0d0c9eddb793331e65a734c7
|