-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3799e30
commit e1598e7
Showing
14 changed files
with
575 additions
and
494 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.