get_datasets
Retrieve Earth science datasets from NASA's CMR using specific keywords, date ranges, and DAAC filters to streamline data discovery and access.
Instructions
Get a list of datasets form CMR based on keywords.
Args:
startdate: (Optional) Start date of search request (like "2002" or "2022-03-22")
stopdate: (Optional) Stop date of search request (like "2002" or "2022-03-22")
daac: the daac to search, e.g. NSIDC or PODAAC
keywords: A list of keyword arguments to search collections for.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
daac | No | ||
keyword | No | ||
startdate | No | ||
stopdate | No |
Input Schema (JSON Schema)
{
"properties": {
"daac": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Daac"
},
"keyword": {
"default": null,
"title": "Keyword",
"type": "string"
},
"startdate": {
"default": null,
"title": "Startdate",
"type": "string"
},
"stopdate": {
"default": null,
"title": "Stopdate",
"type": "string"
}
},
"title": "get_datasetsArguments",
"type": "object"
}