The .NET client library is stable, well tested, and well documented.
You'll need:
Here's a simple example showing how to fetch the latest 12 months of 65F-base-temperature heating degree days from an automatically-selected weather station near Times Square, New York (US zip code 10036). The HDD figures are output to the command line:
DegreeDaysApi api = new DegreeDaysApi(
new AccountKey(yourStringAccountKey),
new SecurityKey(yourStringSecurityKey));
DatedDataSpec hddSpec = DataSpec.Dated(
Calculation.HeatingDegreeDays(Temperature.Fahrenheit(65)),
DatedBreakdown.Monthly(Period.LatestValues(12)));
LocationDataRequest request = new LocationDataRequest(
Location.PostalCode("10036", "US"),
new DataSpecs(hddSpec));
LocationDataResponse response = api.DataApi.GetLocationData(request);
DatedDataSet hddData = response.DataSets.GetDated(hddSpec);
foreach (DatedDataValue v in hddData.Values) {
Console.Out.WriteLine(v.FirstDay + ": " + v.Value);
}
Just swap in your access keys (account key and security key) and the example code above should work right away.
But bear in mind that this example is just a starting point...
LocationDataRequest is highly configurable:
Location you want data for as a weather-station ID or a geographic location (postal/zip code, or longitude/latitude position). For geographic locations the API will automatically select the best weather station to satisfy your request.Breakdown, and there are several ways to specify the Period of coverage that you want.LocationDataResponse also contains information about the weather station(s) used to generate the returned data. If you request data from a geographic location initially, you might want to use the station ID to fetch updates later.The .NET client library tries its best to fail fast on invalid input. We'd rather give you an exception immediately than use up your rate limit with invalid API requests that are destined to fail.
This is mainly relevant if you are dealing with user input, particularly for:
Location.StationId(String);Location.PostalCode(String, String); andAccountKey and SecurityKey.All the methods/constructors listed above will throw an FormatException (or subclass) if they are passed an ID, code, or key that is clearly invalid. If you are dealing with user input, you might want to catch those exceptions explicitly as a means of validation.
DegreeDaysApiException)All the exceptions that can arise from a remote call to the API servers extend from DegreeDaysApiException.
The methods that make a remote call to the API servers are accessible through DegreeDaysApi. At present the only such method is DataApi.GetLocationData(LocationDataRequest). Follow that link to see which subclasses of DegreeDaysApiException can be thrown.
There is also SourceDataException, which is thrown by the GetXXX methods on the DataSets objects that come back in response to requests for degree-day data. SourceDataException is also a subclass of DegreeDaysApiException.
Which, if any, of these exceptions you'll want to handle explicitly will depend on the nature of your application:
LocationException explicitly so that you can tell if a user entered an unrecognized or unsupported station ID or postal/zip code. But anything else might just be DegreeDaysApiException as far as you are concerned - the request for data failed, and that might be all that matters.InvalidRequestException explicitly so that you can prompt the user to check their API access keys for typos.This isn't an error as such, but it's important to realize that, in certain circumstances, the API can return less data than you requested. For example, you might request 10 years of data for a certain weather station, but get only 5 years back if that's all the usable temperature data that the weather station has. Or you might request data up to and including yesterday, but get only data to the day before yesterday. (Note that you should never be able to get the data for yesterday until that day has finished in the location's local time zone, and, because of data reporting delays, usually not for at least a few hours after that.)
There are clear rules about how and when the API can deliver less data than requested, and you can control this behaviour as well. See the documentation for DataApi.GetLocationData(LocationDataRequest) to find out more.
We've built the API and the .NET client library for robustness and predictability:
null / Nothing return a Nullable type.null / Nothing as an argument. Passing a null / Nothing argument where it is not allowed will immediately result in an exception (fail fast).NaN, 0, -1, 9999 etc.© 2013 BizEE Software Limited - About | Contact | Privacy Policy | FAQ | Desktop App | API