::: 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 ObservatoryDescription{.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 SpdfObservatoryDescription object.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @param id {in} {type=string}{.source}]{.comments} {.source}[; observatory identifier.{.source}]{.comments} {.source}[; @param name {in} {type=string}{.source}]{.comments} {.source}[; observatory 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}[; @param resourceId {in} {type=string}{.source}]{.comments} {.source}[; observatory resource identifier.{.source}]{.comments} {.source}[; @param groupIds {in} {type=strarr}{.source}]{.comments} {.source}[; /Spase/ObservatoryGroupID values.{.source}]{.comments} {.source}[; @returns reference to an SpdfObservatoryDescription object.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfObservatoryDescription::init:source}function SpdfObservatoryDescription::init, $ id, name, resolution, startTime, endTime, geometry, $ trajectoryGeometry, resourceId, groupIds compile_opt idl2 obj = self->SpdfSatelliteDescription::init( $ id, name, resolution, startTime, endTime, geometry, $ trajectoryGeometry) self.resourceId = resourceId self.groupIds = ptr_new(groupIds) return, obj end {.source}[;+{.source}]{.comments} {.source}[; Performs cleanup operations when this object is destroyed.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfObservatoryDescription::cleanup:source}pro SpdfObservatoryDescription::cleanup compile_opt idl2 if ptr_valid(self.groupIds) then begin ptr_free, self.groupIds endif end {.source}[;+{.source}]{.comments} {.source}[; Gets the resourceId of this satellite.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns resourceId of this satellite.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfObservatoryDescription::getResourceId:source}function SpdfObservatoryDescription::getResourceId compile_opt idl2 return, self.resourceId end {.source}[;+{.source}]{.comments} {.source}[; Gets the groupIds of this satellite.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns groupIds of this satellite.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfObservatoryDescription::getGroupIds:source}function SpdfObservatoryDescription::getGroupIds compile_opt idl2 if ptr_valid(self.groupIds) then begin return, *self.groupIds endif else begin return, strarr(1) endelse end {.source}[;+{.source}]{.comments} {.source}[; Prints a textual representation of this object.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfObservatoryDescription::print:source}pro SpdfObservatoryDescription::print compile_opt idl2 self->SpdfSatelliteDescription::print print, ' ', self.resourceId end {.source}[;+{.source}]{.comments} {.source}[; Defines the SpdfObservatoryDescription class.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @field resourceId observatory resource identifier.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfObservatoryDescription__define:source}pro SpdfObservatoryDescription__define compile_opt idl2 struct = { SpdfObservatoryDescription, $ inherits SpdfSatelliteDescription, $ resourceId:'', $ groupIds:ptr_new() $ } end {.source}
:::