GET v2/radar/weatherHD
Returns the metadata for retrieving the weather images in high resolution.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ImageDescriptorCollectionDtoName | Description | Type | Additional information |
---|---|---|---|
Rows | Collection of ImageDescriptorDto |
None. |
|
LegendUrl | string |
None. |
|
BackgroundUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "rows": [ { "index": 1, "num": 2, "foregroundUrl": "sample string 3", "backgroundUrl": "sample string 4" }, { "index": 1, "num": 2, "foregroundUrl": "sample string 3", "backgroundUrl": "sample string 4" } ], "legendUrl": "sample string 1", "backgroundUrl": "sample string 2" }
text/html
Sample:
{"rows":[{"index":1,"num":2,"foregroundUrl":"sample string 3","backgroundUrl":"sample string 4"},{"index":1,"num":2,"foregroundUrl":"sample string 3","backgroundUrl":"sample string 4"}],"legendUrl":"sample string 1","backgroundUrl":"sample string 2"}
application/xml, text/xml
Sample:
<imageDescriptorCollection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <ImageDescriptors> <ImageDescriptor> <index>1</index> <num>2</num> <foregroundUrl>sample string 3</foregroundUrl> <backgroundUrl>sample string 4</backgroundUrl> </ImageDescriptor> <ImageDescriptor> <index>1</index> <num>2</num> <foregroundUrl>sample string 3</foregroundUrl> <backgroundUrl>sample string 4</backgroundUrl> </ImageDescriptor> </ImageDescriptors> <legendUrl>sample string 1</legendUrl> <backgroundUrl>sample string 2</backgroundUrl> </imageDescriptorCollection>
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"rows":[{"index":1,"num":2,"foregroundUrl":"sample string 3","backgroundUrl":"sample string 4"},{"index":1,"num":2,"foregroundUrl":"sample string 3","backgroundUrl":"sample string 4"}],"legendUrl":"sample string 1","backgroundUrl":"sample string 2"});