Skip to content

Commit

Permalink
__init__.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
tamarervin committed Oct 12, 2021
1 parent 3799e30 commit e1598e7
Show file tree
Hide file tree
Showing 14 changed files with 575 additions and 494 deletions.
5 changes: 5 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# file GENERATED by distutils, do NOT edit
README.rst
setup.cfg
setup.py
sdo_hmi_rvs/__init__.py
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Include the README
include README.rst
include README.md

# Include the license file
include LICENSE
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# SDO HMI RVs

Pipeline to independently derive 'sun-as-a-star' radial velocity variations.
Binary file added dist/sdo_hmi_rvs-0.0.1.tar.gz
Binary file not shown.
22 changes: 22 additions & 0 deletions sdo_hmi_rvs/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from .tools.calculation_funcs import map_sequence, rel_positions, spacecraft_vel, solar_rot_vel, corrected_map, \
mag_field, \
mag_thresh, int_thresh, thresh_map, v_quiet, v_phot, v_disc, filling_factor, unsigned_flux, area_calc, \
area_filling_factor, \
area_unsigned_flux, area_vconv

from .tools.coord_funcs import get_map_scales, coordinates, vel_coords, fix_mu, pix_area_hem

from .tools.lbc_funcs import get_u, get_v, limb_polynomial

from .tools.rvs import component_calc

from .tools.settings import BaseDir, CsvDir, ImgDir, Scaling, HARPSN, NEID

from .tools.utilities import read_csv, append_list_as_row, get_dates, get_neid_struct_dates, read_sdo_csv

from .source.component_calculations import coordinate_transformations, flattened_intensity, rv_components, unsigned_mag_field, velocity_corrections

from .source import rv_pipeline

from . import source
from . import tools
Loading

0 comments on commit e1598e7

Please sign in to comment.