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 SurfaceGeographicCoordinates{.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 SpdfSurfaceGeographicCoordinates object.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @param latitude {in} {type=double}{.source}]{.comments} {.source}[; latitude value.{.source}]{.comments} {.source}[; @param longitude {in} {type=double}{.source}]{.comments} {.source}[; longitude value.{.source}]{.comments} {.source}[; @returns reference to an SpdfSurfaceGeographicCoordinates object.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSurfaceGeographicCoordinates::init:source}function SpdfSurfaceGeographicCoordinates::init, $ latitude, longitude compile_opt idl2 self.latitude = latitude self.longitude = longitude return, self end {.source}[;+{.source}]{.comments} {.source}[; Performs cleanup operations when this object is destroyed.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSurfaceGeographicCoordinates::cleanup:source}pro SpdfSurfaceGeographicCoordinates::cleanup compile_opt idl2 {.source}[; call super->cleanup ???{.source}]{.comments}end{.source}[;+{.source}]{.comments} {.source}[; Gets the latitude value.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns latitude value.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSurfaceGeographicCoordinates::getLatitude:source}function SpdfSurfaceGeographicCoordinates::getLatitude compile_opt idl2 return, self.latitude end {.source}[;+{.source}]{.comments} {.source}[; Gets the longitude value.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @returns longitude value.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSurfaceGeographicCoordinates::getLongitude:source}function SpdfSurfaceGeographicCoordinates::getLongitude compile_opt idl2 return, self.longitude end {.source}[;+{.source}]{.comments} {.source}[; Prints a textual representation of this object.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSurfaceGeographicCoordinates::print:source}pro SpdfSurfaceGeographicCoordinates::print compile_opt idl2 print, ' ', self.latitude, ', ', self.longitude end {.source}[;+{.source}]{.comments} {.source}[; Defines the SpdfSurfaceGeographicCoordinates class.{.source}]{.comments} {.source}[;{.source}]{.comments} {.source}[; @field latitude latitude value.{.source}]{.comments} {.source}[; @field longitude longitude value.{.source}]{.comments} {.source}[;-{.source}]{.comments} {.source}[]{#SpdfSurfaceGeographicCoordinates__define:source}pro SpdfSurfaceGeographicCoordinates__define compile_opt idl2 struct = { SpdfSurfaceGeographicCoordinates, $ inherits SpdfCoordinates, $ latitude:0.0d, $ longitude:0.0d $ } end {.source} :::