mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 21:27:52 +00:00
4320d9be95
Add a telemetry source for example imagery to support development of a view for image telemetry, WTD-1170.
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "Imagery",
|
|
"description": "Example of a component that produces image telemetry.",
|
|
"extensions": {
|
|
"components": [
|
|
{
|
|
"implementation": "ImageTelemetryProvider.js",
|
|
"type": "provider",
|
|
"provides": "telemetryService",
|
|
"depends": [ "$q", "$timeout" ]
|
|
}
|
|
],
|
|
"types": [
|
|
{
|
|
"key": "imagery",
|
|
"name": "Example Imagery",
|
|
"glyph": "T",
|
|
"features": "creation",
|
|
"model": {
|
|
"telemetry": {}
|
|
},
|
|
"telemetry": {
|
|
"source": "imagery",
|
|
"domains": [
|
|
{
|
|
"name": "Time",
|
|
"key": "time",
|
|
"format": "timestamp"
|
|
}
|
|
],
|
|
"ranges": [
|
|
{
|
|
"name": "Image",
|
|
"key": "url",
|
|
"format": "imageUrl"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|