getBatchHighResData1km
Returns 1x1 weather report information for multiple locations.
Returns weather report response for chosen peril containing precipitation data for given timestamp for multiple locations.
Query Parameters
The requested start date in MM/DD/YYYY format.
dateThe requested end date in MM/DD/YYYY format.
dateThe type of peril: rain, snow, freezingrain or precipitation.
"PRECIPITATION""RAINFALL" | "SNOWFALL" | "FREEZING_RAIN" | "PRECIPITATION"The requested units: imperial or metric (default is imperial).
"IMPERIAL""IMPERIAL" | "METRIC"The timezone: lwt or gmt (default is gmt).
"GMT""LWT" | "GMT"The response format: json, xml or csv
"json""json" | "xml" | "csv"The intervals: hourly, daily, or monthly.
"HOURLY""HOURLY" | "DAILY" | "MONTHLY"Whether to fill missing hours with next available precipitation data source. Only for raw precipitation data.
"false""true" | "false"The user key.
Request Body
application/json
Array of lat, lon coordinates in format [latitude,longitude,latitude,longitude...]. Limit of 100 locations.
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://dexter.atheniumanalytics.com/api/v3/dexter/precip/1km?startDate=2019-08-24&endDate=2019-08-24&units=IMPERIAL&interval=HOURLY&userKey=string" \ -H "Content-Type: application/json" \ -d '[ "latitude1", "longitude1", "latitude2", "longitude2" ]'{
"head": {
"startDate": "string",
"endDate": "string",
"interval": "string",
"site": {
"resolution": "string",
"latitude": 0.1,
"longitude": 0.1,
"siteId": "string"
}
},
"locations": [
{
"site": {
"resolution": "string",
"latitude": 0.1,
"longitude": 0.1,
"siteId": "string"
},
"data": [
{
"siteId": "string",
"latitude": 0.1,
"longitude": 0.1,
"dateHrGmt": "string",
"dateHrLwt": "string",
"dateGmt": "string",
"dateLwt": "string",
"precipitationCentimeters": "string",
"rainCentimeters": "string",
"snowCentimeters": "string",
"freezingrainCentimeters": "string",
"temperatureCelsius": "string",
"gustSpeedKph": "string",
"sustainedSpeedKph": "string",
"windDirectionDegrees": "string",
"hailCentimeters": "string",
"precipitationInches": "string",
"rainInches": "string",
"snowInches": "string",
"freezingrainInches": "string",
"temperatureFahrenheit": "string",
"gustSpeedMph": "string",
"sustainedSpeedMph": "string",
"tornadicActivity": "string",
"hailInches": "string",
"maxHailInches": "string",
"minHailInches": "string",
"maxHailCentimeters": "string",
"minHailCentimeters": "string",
"maxTemperatureFahrenheit": "string",
"minTemperatureFahrenheit": "string",
"avgTemperatureFahrenheit": "string",
"maxTemperatureCelsius": "string",
"minTemperatureCelsius": "string",
"avgTemperatureCelsius": "string",
"maxTornadicActivity": "string",
"minTornadicActivity": "string",
"maxWindDirectionDegrees": "string",
"minWindDirectionDegrees": "string",
"avgWindDirectionDegrees": "string",
"maxGustSpeedMph": "string",
"maxSustainedSpeedMph": "string",
"minGustSpeedMph": "string",
"minSustainedSpeedMph": "string",
"avgGustSpeedMph": "string",
"avgSustainedSpeedMph": "string",
"maxGustSpeedKph": "string",
"maxSustainedSpeedKph": "string",
"minGustSpeedKph": "string",
"minSustainedSpeedKph": "string",
"avgGustSpeedKph": "string",
"avgSustainedSpeedKph": "string"
}
]
}
]
}