Skip to main content

Analysis data of the International Earth Rotation Srvice (IERS)

Project description

Author: Behrouz Safari
License: MIT

iers

Analysis data of the International Earth Rotation and Reference Systems Service (IERS)

Installation

Install the latest version of iers from PyPI:

pip install iers

Requirements are numpy and pandas.

Examples

Let's read a file:

from iers import create_df

adr = '../data/eop/eopc01/'
f = adr + 'eopc01.iau2000.1846-now'

df = create_df(f)

Let's open all files we have downloaded from iers server:

from iers import create_df, files_dc

files = [i for i in files_dc.keys() if i[:3]!='TEM']

adrs = [files_dc[i]['adr'] for i in files]

for i, f in enumerate(files):
    df = create_df('C:/Moi/_py/Astronomy/Earth/IERS/data/'+adrs[i] + f)
    print(df)
    print(len(files_dc[f]['cols']))
    print('-'*80)

See more examples at astrodatascience.net

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iers-0.0.1.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distribution

iers-0.0.1-py3-none-any.whl (5.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page