interface NasaNodeParameters {
additionalFields?:
| { includeCloseApproachData?: boolean }
| { date?: string }
| { endDate?: string; startDate?: string }
| {
catalog?:
| "ALL"
| "SWRC_CATALOG"
| "WINSLOW_MESSENGER_ICME_CATALOG";
endDate?: string;
location?: | "ALL"
| "earth"
| "MESSENGER"
| "STEREO A"
| "STEREO B";
startDate?: string;
}
| { date?: string; dim?: number };
asteroidId?: string;
binaryPropertyName?: string;
download?: boolean;
lat?: number;
limit?: number;
lon?: number;
operation?: "get" | "getAll";
resource?:
| "asteroidNeoBrowse"
| "asteroidNeoFeed"
| "asteroidNeoLookup"
| "astronomyPictureOfTheDay"
| "donkiCoronalMassEjection"
| "donkiHighSpeedStream"
| "donkiInterplanetaryShock"
| "donkiMagnetopauseCrossing"
| "donkiNotifications"
| "donkiRadiationBeltEnhancement"
| "donkiSolarEnergeticParticle"
| "donkiSolarFlare"
| "donkiWsaEnlilSimulation"
| "earthAssets"
| "earthImagery";
returnAll?: boolean;
}
Properties§
§
§
§
§
§
§
§
§
§
§
readonly additional Fields?:
| { includeCloseApproachData?: boolean }
| { date?: string }
| { endDate?: string; startDate?: string }
| {
catalog?:
| "ALL"
| "SWRC_CATALOG"
| "WINSLOW_MESSENGER_ICME_CATALOG";
endDate?: string;
location?: | "ALL"
| "earth"
| "MESSENGER"
| "STEREO A"
| "STEREO B";
startDate?: string;
}
| { date?: string; dim?: number }
readonly asteroid Id?: string
The ID of the asteroid to be returned
readonly binary Property Name?: string
Default: "data"
readonly download?: boolean
By default just the URL of the image is returned. When set to true the image will be downloaded. Default: true
readonly lat?: number
Latitude for the location of the image
readonly limit?: number
Max number of results to return Default: 20 Type options: {"minValue":1}
readonly lon?: number
Longitude for the location of the image
readonly operation?: "get" | "getAll"
Default: "get"
readonly resource?:
| "asteroidNeoBrowse"
| "asteroidNeoFeed"
| "asteroidNeoLookup"
| "astronomyPictureOfTheDay"
| "donkiCoronalMassEjection"
| "donkiHighSpeedStream"
| "donkiInterplanetaryShock"
| "donkiMagnetopauseCrossing"
| "donkiNotifications"
| "donkiRadiationBeltEnhancement"
| "donkiSolarEnergeticParticle"
| "donkiSolarFlare"
| "donkiWsaEnlilSimulation"
| "earthAssets"
| "earthImagery"
Default: "astronomyPictureOfTheDay"
readonly return All?: boolean
Whether to return all results or only up to a given limit
Default: {}