This repository was archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathWeatherServer.cs
150 lines (130 loc) · 4.56 KB
/
WeatherServer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
//
// WeatherServer.cs
//
// Author: Jeffrey Stedfast <jeff@xamarin.com>
//
// Copyright (c) 2011 Xamarin Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
using System;
using System.Collections.Generic;
using Foundation;
using MapKit;
using SQLite;
namespace WeatherMap {
public class WeatherServer : IDisposable {
SQLiteConnection store;
public WeatherServer ()
{
// Create our SQL connection context
store = new SQLiteConnection ("WeatherMap.sqlite");
// Create a table mapping for WeatherItem (if it doesn't already exist)
store.CreateTable<WeatherForecast> ();
// Check to see if we've already got some items in the database
if (store.Table<WeatherForecast> ().Count () == 0) {
// Populate our database with a list of WeatherItems
store.Insert (new WeatherForecast () {
Place = "S.F.",
Latitude = 37.779941,
Longitude = -122.417908,
High = 80,
Low = 50,
Condition = WeatherConditions.Sunny
});
store.Insert (new WeatherForecast () {
Place = "Denver",
Latitude = 39.752601,
Longitude = -104.982605,
High = 40,
Low = 30,
Condition = WeatherConditions.Snow
});
store.Insert (new WeatherForecast () {
Place = "Chicago",
Latitude = 41.863425,
Longitude = -87.652359,
High = 45,
Low = 29,
Condition = WeatherConditions.Cloudy
});
store.Insert (new WeatherForecast () {
Place = "Seattle",
Latitude = 47.615884,
Longitude = -122.332764,
High = 75,
Low = 45,
Condition = WeatherConditions.Showers
});
store.Insert (new WeatherForecast () {
Place = "Boston",
Latitude = 42.350425,
Longitude = -71.070557,
High = 75,
Low = 45,
Condition = WeatherConditions.PartlyCloudy
});
store.Insert (new WeatherForecast () {
Place = "Miami",
Latitude = 25.780107,
Longitude = -80.244141,
High = 90,
Low = 75,
Condition = WeatherConditions.Thunderstorms
});
store.Commit ();
}
}
public WeatherForecastAnnotation [] GetForecastAnnotations (MKCoordinateRegion region, int maxCount)
{
double longMin = region.Center.Longitude - region.Span.LongitudeDelta / 2.0;
double longMax = region.Center.Longitude + region.Span.LongitudeDelta / 2.0;
double latMin = region.Center.Latitude - region.Span.LatitudeDelta / 2.0;
double latMax = region.Center.Latitude + region.Span.LatitudeDelta / 2.0;
// Query for WeatherForecasts within our specified region
var results = from item in store.Table<WeatherForecast> ()
where (item.Latitude > latMin && item.Latitude < latMax && item.Longitude > longMin && item.Longitude < longMax)
orderby item.Latitude
orderby item.Longitude
select item;
// Iterate over the results and add them to a list
var list = new List<WeatherForecastAnnotation> ();
foreach (var forecast in results)
list.Add (new WeatherForecastAnnotation (forecast));
if (list.Count <= maxCount) {
// We got fewer results than the max, so just return what we found
return list.ToArray ();
}
// Calculate a stride so we can get an evenly distributed sampling of the results
double index = 0.0, stride = (double) (list.Count - 1) / (double) maxCount;
var annotations = new WeatherForecastAnnotation [maxCount];
for (int i = 0; i < maxCount && (int) index < list.Count; i++, index += stride)
annotations [i] = list [(int) index];
return annotations;
}
public void Dispose ()
{
if (store != null) {
store.Commit ();
store.Dispose ();
store = null;
}
}
}
}