Calculate geo coords from omm
el_paso.processing.calculate_geo_coords_from_omm
calculate_geo_coords_from_omm
Calculate GEO coordinates (x, y, z) in kilometers from an OMM orbital element set.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
omm_line
|
dict[str, str]
|
Dictionary containing the OMM (Orbit Mean-Elements Message)
orbital element data for the satellite, as consumed by
|
required |
target_times
|
list[datetime]
|
UTC datetimes at which to evaluate the satellite position. |
required |
Returns:
| Type | Description |
|---|---|
Variable
|
ep.Variable: The GEO coordinate variable (x, y, z) in kilometers, evaluated at |
Source code in el_paso/processing/calculate_geo_coords_from_file.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | |