Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.




::: content [;{.source}]{.comments} {.source}[; NOSA HEADER START{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; The contents of this file are subject to the terms of the NASA Open {.source}]{.comments} {.source}[; Source Agreement (NOSA), Version 1.3 only (the "Agreement"). You may {.source}]{.comments} {.source}[; not use this file except in compliance with the Agreement.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; You can obtain a copy of the agreement at{.source}]{.comments} {.source}[; docs/NASA_Open_Source_Agreement_1.3.txt{.source}]{.comments} {.source}[; or {.source}]{.comments} {.source}[; http://sscweb.gsfc.nasa.gov/WebServices/NASA_Open_Source_Agreement_1.3.txt.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; See the Agreement for the specific language governing permissions{.source}]{.comments} {.source}[; and limitations under the Agreement.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; When distributing Covered Code, include this NOSA HEADER in each{.source}]{.comments} {.source}[; file and include the Agreement file at {.source}]{.comments} {.source}[; docs/NASA_Open_Source_Agreement_1.3.txt. If applicable, add the {.source}]{.comments} {.source}[; following below this NOSA HEADER, with the fields enclosed by {.source}]{.comments} {.source}[; brackets "[]" replaced with your own identifying information: {.source}]{.comments} {.source}[; Portions Copyright [yyyy] [name of copyright owner]{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; NOSA HEADER END{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; Copyright (c) 2013 United States Government as represented by the {.source}]{.comments} {.source}[; National Aeronautics and Space Administration. No copyright is claimed {.source}]{.comments} {.source}[; in the United States under Title 17, U.S.Code. All Other Rights Reserved.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[;+{.source}]{.comments} {.source}[; This class is an IDL representation of the SatelliteDescription{.source}]{.comments} {.source}[; element from the{.source}]{.comments} {.source}[; <a href="http://sscweb.gsfc.nasa.gov/">Satellite Situation Center</a>{.source}]{.comments} {.source}[; (SSC) XML schema.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @copyright Copyright (c) 2013 United States Government as represented{.source}]{.comments} {.source}[; by the National Aeronautics and Space Administration. No{.source}]{.comments} {.source}[; copyright is claimed in the United States under Title 17,{.source}]{.comments} {.source}[; U.S.Code. All Other Rights Reserved.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @author B. Harris{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[;+{.source}]{.comments} {.source}[; Creates an SpdfSatelliteDescription object.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @param id {in} {type=string}{.source}]{.comments} {.source}[; satellite identifier.{.source}]{.comments} {.source}[; @param name {in} {type=string}{.source}]{.comments} {.source}[; satellite name.{.source}]{.comments} {.source}[; @param resolution {in} {type=int}{.source}]{.comments} {.source}[; resolution of trajectory information.{.source}]{.comments} {.source}[; @param startTime {in} {type=julday}{.source}]{.comments} {.source}[; start time of available information.{.source}]{.comments} {.source}[; @param endTime {in} {type=julday}{.source}]{.comments} {.source}[; end time of available information.{.source}]{.comments} {.source}[; @param geometry {in} {type=string}{.source}]{.comments} {.source}[; URL of the file containing the recommended X3D{.source}]{.comments} {.source}[; geometry description for rendering the satellite.{.source}]{.comments} {.source}[; @param trajectoryGeometry {in} {type=string}{.source}]{.comments} {.source}[; URL of the file containing the recommended X3D{.source}]{.comments} {.source}[; geometry description for rendering the satellite's{.source}]{.comments} {.source}[; trajectory.{.source}]{.comments} {.source}[; @returns reference to an SpdfSatelliteDescription object.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription::init:source}function SpdfSatelliteDescription::init, $ id, name, resolution, startTime, endTime, geometry, $ trajectoryGeometry compile_opt idl2 self.id = id self.name = name self.resolution = resolution self.startTime = startTime self.endTime = endTime self.geometry = geometry self.trajectoryGeometry = trajectoryGeometry return, self end {.source}[;+{.source}]{.comments} {.source}[; Performs cleanup operations when this object is destroyed.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription::cleanup:source}pro SpdfSatelliteDescription::cleanup compile_opt idl2 end {.source}[;+{.source}]{.comments} {.source}[; Gets the id of this satellite.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns id of this satellite.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription::getId:source}function SpdfSatelliteDescription::getId compile_opt idl2 return, self.id end {.source}[;+{.source}]{.comments} {.source}[; Gets the name of this satellite.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns name of this satellite.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription::getName:source}function SpdfSatelliteDescription::getName compile_opt idl2 return, self.name end {.source}[;+{.source}]{.comments} {.source}[; Gets the resolution of this satellite.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns resolution of this satellite.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription::getResolution:source}function SpdfSatelliteDescription::getResolution compile_opt idl2 return, self.resolution end {.source}[;+{.source}]{.comments} {.source}[; Gets the start time of this satellite.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns start time of this satellite.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription::getStartTime:source}function SpdfSatelliteDescription::getStartTime compile_opt idl2 return, self.startTime end {.source}[;+{.source}]{.comments} {.source}[; Gets the end time of this satellite.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns end time of this satellite.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription::getEndTime:source}function SpdfSatelliteDescription::getEndTime compile_opt idl2 return, self.endTime end {.source}[;+{.source}]{.comments} {.source}[; Gets the geometry of this satellite.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns geometry of this satellite.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription::getGeometry:source}function SpdfSatelliteDescription::getGeometry compile_opt idl2 return, self.geometry end {.source}[;+{.source}]{.comments} {.source}[; Gets the trajectory geometry of this satellite.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns trajectory geometry of this satellite.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription::getTrajectoryGeometry:source}function SpdfSatelliteDescription::getTrajectoryGeometry compile_opt idl2 return, self.trajectoryGeometry end {.source}[;+{.source}]{.comments} {.source}[; Prints a textual representation of this object.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription::print:source}pro SpdfSatelliteDescription::print compile_opt idl2 print, ' ', self.id, ': ', self.name end {.source}[;+{.source}]{.comments} {.source}[; Defines the SpdfSatelliteDescription class.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @field id ground station identifier.{.source}]{.comments} {.source}[; @field name ground station's name.{.source}]{.comments} {.source}[; @field resolution trajectory resolution.{.source}]{.comments} {.source}[; @field startTime julday start time value.{.source}]{.comments} {.source}[; @field endTime julday end time value.{.source}]{.comments} {.source}[; @field geometry satellite geometry.{.source}]{.comments} {.source}[; @field trajectoryGeometry trajectory geometry.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSatelliteDescription__define:source}pro SpdfSatelliteDescription__define compile_opt idl2 struct = { SpdfSatelliteDescription, $ id:'', $ name:'', $ resolution:0, $ startTime:0d, $ endTime:0d, $ geometry:'', $ trajectoryGeometry:'' $ } end {.source} :::