Sha256: 8a8f2881d10cbf389a39759f554a77ea569338dc5fcc137751b09e3b619a2f6f

Contents?: true

Size: 1.75 KB

Versions: 4

Compression:

Stored size: 1.75 KB

Contents

require 'neows/models/base_model'

module Neows
  module Models
    class OrbitalData < Neows::Models::BaseModel
      # @!attribute [rw]
      # @return [String]
      attribute :orbit_id, String

      # @!attribute [rw]
      # @return [DateTime]
      attribute :orbit_determination_date, DateTime

      # @!attribute [rw]
      # @return [Integer]
      attribute :orbit_uncertainty, Integer

      # @!attribute [rw]
      # @return [Float]
      attribute :minimum_orbit_intersection, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :jupiter_tisserand_invariant, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :epoch_osculation, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :eccentricity, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :semi_major_axis, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :inclination, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :ascending_node_longitude, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :orbital_period, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :perihelion_distance, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :perihelion_argument, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :aphelion_distance, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :perihelion_time, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :mean_anomaly, Float

      # @!attribute [rw]
      # @return [Float]
      attribute :mean_motion, Float

      # @!attribute [rw]
      # @return [String]
      attribute :equinox, String
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
neows-1.1.0 lib/neows/models/orbital_data.rb
neows-1.0.0 lib/neows/models/orbital_data.rb
neows-0.0.2 lib/neows/models/orbital_data.rb
neows-0.0.1 lib/neows/models/orbital_data.rb