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?: stringThe ID of the asteroid to be returned
readonly binary Property Name?: stringDefault: "data"
readonly download?: booleanBy default just the URL of the image is returned. When set to true the image will be downloaded. Default: true
readonly lat?: numberLatitude for the location of the image
readonly limit?: numberMax number of results to return Default: 20 Type options: {"minValue":1}
readonly lon?: numberLongitude 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?: booleanWhether to return all results or only up to a given limit
Default: {}