Class: Aws::GroundStation::Types::OEMEphemeris
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::OEMEphemeris
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
Ephemeris data in Orbit Ephemeris Message (OEM) format.
AWS Ground Station processes OEM ephemerides according to the [CCSDS standard] with some extra restrictions. OEM files should be in KVN format. For more detail about the OEM format that AWS Ground Station supports, see [OEM ephemeris format] in the AWS Ground Station user guide.
[1]: ccsds.org/wp-content/uploads/gravity_forms/5-448e85c647331d9cbaf66c096458bdd5/2025/01//502x0b3e1.pdf [2]: docs.aws.amazon.com/ground-station/latest/ug/providing-oem-ephemeris-data.html#oem-ephemeris-format
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#oem_data ⇒ String
OEM data that you provide directly instead of using an Amazon S3 object.
-
#s3_object ⇒ Types::S3Object
The Amazon S3 object that contains the ephemeris data.
Instance Attribute Details
#oem_data ⇒ String
OEM data that you provide directly instead of using an Amazon S3 object.
2873 2874 2875 2876 2877 2878 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2873 class OEMEphemeris < Struct.new( :s3_object, :oem_data) SENSITIVE = [] include Aws::Structure end |
#s3_object ⇒ Types::S3Object
The Amazon S3 object that contains the ephemeris data.
2873 2874 2875 2876 2877 2878 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2873 class OEMEphemeris < Struct.new( :s3_object, :oem_data) SENSITIVE = [] include Aws::Structure end |