Class: Aws::GroundStation::Types::TimeAzEl

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb

Overview

Time-tagged azimuth elevation pointing data.

Specifies the antenna pointing direction at a specific time offset from the segment's reference epoch.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#azFloat

Azimuth angle at the specified time.

Valid ranges by unit:

  • DEGREE_ANGLE: -180 to 360 degrees, measured clockwise from true north

  • RADIAN: -π to 2π radians, measured clockwise from true north

Returns:

  • (Float)


3180
3181
3182
3183
3184
3185
3186
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 3180

class TimeAzEl < Struct.new(
  :dt,
  :az,
  :el)
  SENSITIVE = []
  include Aws::Structure
end

#dtFloat

Time offset in atomic seconds from the segment's reference epoch.

All dt values within a segment must be in ascending order with no duplicates.

dt values may be:

  • negative

  • expressed as fractions of a second

  • expressed in scientific notation

Returns:

  • (Float)


3180
3181
3182
3183
3184
3185
3186
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 3180

class TimeAzEl < Struct.new(
  :dt,
  :az,
  :el)
  SENSITIVE = []
  include Aws::Structure
end

#elFloat

Elevation angle at the specified time.

Valid ranges by unit:

  • DEGREE_ANGLE: -90 to 90 degrees, where 0 is the horizon, 90 is zenith, and negative values are below the horizon

  • RADIAN: -π/2 to π/2 radians, where 0 is the horizon, π/2 is zenith, and negative values are below the horizon

Returns:

  • (Float)


3180
3181
3182
3183
3184
3185
3186
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 3180

class TimeAzEl < Struct.new(
  :dt,
  :az,
  :el)
  SENSITIVE = []
  include Aws::Structure
end