get_epic_imagery_by_date
Retrieve Earth Polychromatic Imaging Camera (EPIC) images for a specified date. Choose between natural or enhanced collection types to access detailed Earth imagery directly.
Instructions
Get images from the EPIC (Earth Polychromatic Imaging Camera) for a specific date.
Args: date: Date in YYYY-MM-DD format. collection: Collection type. Options: natural, enhanced.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | No | natural | |
date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"default": "natural",
"title": "Collection",
"type": "string"
},
"date": {
"title": "Date",
"type": "string"
}
},
"required": [
"date"
],
"title": "get_epic_imagery_by_dateArguments",
"type": "object"
}