get_magnetopause_crossing
Retrieve magnetopause crossing data from NASA APIs by specifying start and end dates in YYYY-MM-DD format, aiding in space weather and boundary analysis.
Instructions
Get magnetopause crossing (MPC) data.
Args: start_date: Start date in YYYY-MM-DD format. Defaults to 30 days before current date. end_date: End date in YYYY-MM-DD format. Defaults to current date.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
start_date | No |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"default": null,
"title": "End Date",
"type": "string"
},
"start_date": {
"default": null,
"title": "Start Date",
"type": "string"
}
},
"title": "get_magnetopause_crossingArguments",
"type": "object"
}