starstream

Asynchronous satellite data downloading for CDAWeb, JSOC, etc.


License
MIT
Install
pip install starstream==0.0.1

Documentation

status license code-style pypi

Asynchronous satellite data downloading for CDAWeb, JSOC, etc.

Spacecrafts and datasets

Example

from starstream import ACE, DSCOVR
from starstream.utils import DataDownloading
from datetime import datetime
import asyncio

async def main():
    await DataDownloading(
        [
            ACE(),
            DSCOVR()
        ],
            (datetime(2014, 12, 12), datetime(2014, 12, 30))
    )

if __name__ == '__main__':
    asyncio.run(main())
    

Citation

@misc{starstream,
  author = {Jorge Enciso},
  title = {StarStream: An Open-Source Asynchronous Data Downloader},
  howpublished = {\url{https://github.com/Jorgedavyd/starstream}},
  year = {2024}
}