-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
74 changed files
with
1,191 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
15 changes: 15 additions & 0 deletions
15
AerisWeatherSDK/Aeris.framework/Versions/A/Headers/AWFPrecipitationEstimate.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// AWFPrecipitationEstimate.h | ||
// Aeris | ||
// | ||
// Created by Nicholas Shipes on 4/5/16. | ||
// Copyright © 2016 Aeris Weather, LLC. All rights reserved. | ||
// | ||
|
||
#import <Aeris/AWFGeographicObject.h> | ||
|
||
@interface AWFPrecipitationEstimate : AWFGeographicObject | ||
|
||
@property (strong, nonatomic) NSArray *periods; | ||
|
||
@end |
28 changes: 28 additions & 0 deletions
28
AerisWeatherSDK/Aeris.framework/Versions/A/Headers/AWFPrecipitationLoader.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// | ||
// AWFPrecipitationLoader.h | ||
// Aeris | ||
// | ||
// Created by Nicholas Shipes on 4/5/16. | ||
// Copyright © 2016 Aeris Weather, LLC. All rights reserved. | ||
// | ||
|
||
#import <Aeris/AWFGeographicObjectLoader.h> | ||
|
||
/** | ||
* `AWFPrecipitationLoader` provides conveninece methods for interacting with the | ||
* [`precip` endpoint](http://www.aerisweather.com/support/docs/api/reference/endpoints/precip) of the Aeris API. All requests will return | ||
* instances of `AWFPrecipitationPeriod` that will be populated with the data returned from the API unless otherwise indicated. | ||
*/ | ||
@interface AWFPrecipitationLoader : AWFGeographicObjectLoader | ||
|
||
- (void)getEstimateForPlace:(AWFPlace *)place | ||
options:(AWFRequestOptions *)options | ||
completion:(AWFObjectLoaderCompletionBlock)completionBlock; | ||
|
||
- (void)getEstimatesForPlace:(AWFPlace *)place | ||
fromDate:(NSDate *)fromDate | ||
toDate:(NSDate *)toDate | ||
options:(AWFRequestOptions *)options | ||
completion:(AWFObjectLoaderCompletionBlock)completionBlock; | ||
|
||
@end |
26 changes: 26 additions & 0 deletions
26
AerisWeatherSDK/Aeris.framework/Versions/A/Headers/AWFPrecipitationPeriod.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// AWFPrecipitationPeriod.h | ||
// Aeris | ||
// | ||
// Created by Nicholas Shipes on 4/5/16. | ||
// Copyright © 2016 Aeris Weather, LLC. All rights reserved. | ||
// | ||
|
||
#import <Aeris/AWFGeographicObject.h> | ||
|
||
@interface AWFPrecipitationPeriod : AWFGeographicObject | ||
|
||
/** | ||
* Date the period is for. | ||
*/ | ||
@property (strong, nonatomic) NSDate *timestamp; | ||
@property (strong, nonatomic) NSTimeZone *timeZone; | ||
|
||
@property (strong, nonatomic) NSNumber *dailyIN; | ||
@property (strong, nonatomic) NSNumber *dailyMM; | ||
@property (strong, nonatomic) NSNumber *monthlyIN; | ||
@property (strong, nonatomic) NSNumber *monthlyMM; | ||
@property (strong, nonatomic) NSNumber *yearlyIN; | ||
@property (strong, nonatomic) NSNumber *yearlyMM; | ||
|
||
@end |
35 changes: 35 additions & 0 deletions
35
AerisWeatherSDK/Aeris.framework/Versions/A/Headers/AWFRequest.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// | ||
// AWFRequest.h | ||
// Aeris | ||
// | ||
// Created by Nicholas Shipes on 2/4/16. | ||
// Copyright © 2016 Aeris Weather, LLC. All rights reserved. | ||
// | ||
|
||
@import Foundation; | ||
|
||
@interface AWFRequest : NSObject | ||
|
||
- (NSURLSessionDataTask *)get:(NSString *)URLPath | ||
parameters:(id)parameters | ||
success:(void (^)(NSURLSessionDataTask *task, id response))success | ||
failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure; | ||
|
||
- (NSURLSessionDataTask *)get:(NSString *)URLPath | ||
parameters:(id)parameters | ||
manager:(AFHTTPSessionManager *)manager | ||
success:(void (^)(NSURLSessionDataTask *task, id response))success | ||
failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure; | ||
|
||
- (NSURLSessionDataTask *)getImage:(NSString *)URLPath | ||
parameters:(id)parameters | ||
success:(void (^)(NSURLSessionDataTask *task, UIImage *image))success | ||
failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure; | ||
|
||
- (NSURLSessionDataTask *)getImage:(NSString *)URLPath | ||
parameters:(id)parameters | ||
manager:(AFHTTPSessionManager *)manager | ||
success:(void (^)(NSURLSessionDataTask *task, UIImage *image))success | ||
failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure; | ||
|
||
@end |
26 changes: 26 additions & 0 deletions
26
AerisWeatherSDK/Aeris.framework/Versions/A/Headers/AWFSnowDepth.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// AWFSnowDepth.h | ||
// Aeris | ||
// | ||
// Created by Nicholas Shipes on 4/5/16. | ||
// Copyright © 2016 Aeris Weather, LLC. All rights reserved. | ||
// | ||
|
||
#import <Aeris/AWFGeographicObject.h> | ||
|
||
@interface AWFSnowDepth : AWFGeographicObject | ||
|
||
@property (strong, nonatomic) NSArray *periods; | ||
|
||
@end | ||
|
||
|
||
|
||
@interface AWFSnowDepthPeriod : AWFObject | ||
|
||
@property (strong, nonatomic) NSDate *timestamp; | ||
@property (strong, nonatomic) NSTimeZone *timeZone; | ||
@property (strong, nonatomic) NSNumber *depthIN; | ||
@property (strong, nonatomic) NSNumber *depthCM; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
AerisWeatherSDK/Aeris.framework/Versions/A/Headers/AWFWinterLoader.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// | ||
// AWFWinterLoader.h | ||
// Aeris | ||
// | ||
// Created by Nicholas Shipes on 4/5/16. | ||
// Copyright © 2016 Aeris Weather, LLC. All rights reserved. | ||
// | ||
|
||
#import <Aeris/AWFGeographicObjectLoader.h> | ||
|
||
/** | ||
* `AWFWinterLoader` provides conveninece methods for interacting with the | ||
* [`winter/snowdepth` endpoint](http://www.aerisweather.com/support/docs/api/reference/endpoints/winter/snowdepth) of the Aeris API. All requests will return | ||
* instances of `AWFSnowDepth` that will be populated with the data returned from the API unless otherwise indicated. | ||
*/ | ||
@interface AWFWinterLoader : AWFGeographicObjectLoader | ||
|
||
- (void)getSnowDepthForPlace:(AWFPlace *)place | ||
options:(AWFRequestOptions *)options | ||
completion:(AWFObjectLoaderCompletionBlock)completionBlock; | ||
|
||
- (void)getSnowDepthForPlace:(AWFPlace *)place | ||
fromDate:(NSDate *)fromDate | ||
toDate:(NSDate *)toDate | ||
options:(AWFRequestOptions *)options | ||
completion:(AWFObjectLoaderCompletionBlock)completionBlock; | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-1.3 KB
(100%)
AerisWeatherSDK/AerisGoogleMap.framework/Versions/A/AerisGoogleMap
Binary file not shown.
16 changes: 16 additions & 0 deletions
16
AerisWeatherSDK/AerisGoogleMap.framework/Versions/A/Headers/AWFGMTextLabelAnnotation.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// | ||
// AWFGMTextLabelAnnotation.h | ||
// AerisGoogleMap | ||
// | ||
// Created by Nicholas Shipes on 2/11/16. | ||
// Copyright © 2016 Aeris Weather, LLC. All rights reserved. | ||
// | ||
|
||
#import <AerisMap/AerisMap.h> | ||
#import <AerisGoogleMap/AWFGMStyledAnnotation.h> | ||
|
||
@interface AWFGMTextLabelAnnotation : AWFGMStyledAnnotation | ||
|
||
@property (copy, nonatomic) NSString *labelValue; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.