-
Notifications
You must be signed in to change notification settings - Fork 1
/
ajax.aspx.cs
228 lines (183 loc) · 7 KB
/
ajax.aspx.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.Script.Serialization;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Xml;
namespace profiler
{
public partial class ajax : System.Web.UI.Page
{
public double x1 = 16;
public double y1 = -35;
public double x2 = 33;
public double y2 = -22;
ajaxRet ret = new ajaxRet();
protected void Page_Load(object sender, EventArgs e)
{
String mode = Request["mode"];
switch (mode)
{
case "parseGetCapabilities":
parseGetCapabilities();
break;
case "parseDescribeCoverage":
parseDescribeCoverage();
break;
case "grab":
grab();
break;
case "tabulate":
tabulate();
break;
}
}
protected void parseGetCapabilities()
{
ajaxRetGetCap ret = new ajaxRetGetCap();
try
{
String url = Request["url"] + "?&SERVICE=WCS&VERSION=2.0.1&REQUEST=GetCapabilities";
// Response.Write(url);
// return;
using (WebClient wc = new WebClient())
{
String xml = wc.DownloadString(url);
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
XmlNode root = doc.DocumentElement;
// service provider
XmlNode serviceProvider = xmltool.getNode(root, "ServiceProvider");
ret.serviceProvider = xmltool.getNode(serviceProvider, "ProviderName").InnerText;
// ServiceMetadata
//XmlNode ServiceMetadata = xmltool.getNode(root, "ServiceMetadata");
//XmlNode[] formatSupported = xmltool.getNodes(ServiceMetadata, "formatSupported");
//foreach (XmlNode node in formatSupported)
// ret.formats.Add(node.InnerText);
// Contents
XmlNode Contents = xmltool.getNode(root, "Contents");
XmlNode[] CoverageSummaries = xmltool.getNodes(Contents, "CoverageSummary");
foreach (XmlNode node in CoverageSummaries)
ret.coverages.Add(xmltool.getNode(node, "CoverageId").InnerText);
}
}
catch (Exception err)
{
ret.success = false;
ret.message = err.Message;
}
finally
{
JavaScriptSerializer js = new JavaScriptSerializer();
Response.Write(js.Serialize(ret));
}
}
string DownloadCoverage(String src, String cov, String format, String date)
{
String imgPath = Path.GetTempFileName() + "." + format;
String url = src + "?&SERVICE=WCS&VERSION=2.0.1&REQUEST=GetCoverage&COVERAGEID=" + Server.UrlEncode(cov) + "&SUBSET=Lat(" + y1 + "," + y2 + ")&SUBSET=Long(" + x1 + "," + x2 + ")&SUBSET=ansi(\"" + Server.UrlEncode(date) + "\")&FORMAT=image/" + format;
using (WebClient wc = new WebClient())
{
wc.DownloadFile(url, imgPath);
}
return imgPath;
}
protected void tabulate()
{
String src = Request["src"];
String cov = Request["cov"];
String format = Request["fmt"];
String classMode = Request["classMode"];
String clCont = Request["clCont"];
String scale = Request["scale"];
String offset = Request["offset"];
String disc = Request["disc"];
String date = Request["date"];
String layer = Request["layer"];
String field = Request["field"];
String image = DownloadCoverage(src, cov, format, date);
Bitmap bmp = new Bitmap(image);
String shapePath = Server.MapPath("data/meso_base_LL.shp");
/*
var sf = new SharpMap.Data.Providers.ShapeFile(shapePath, true);
sf.Open();
var ext = sf.GetExtents();
if (ext == null)
throw new Exception("fuuuu");
System.Diagnostics.Debugger.Launch();
FeatureDataSet ds = new FeatureDataSet();
sf.ExecuteIntersectionQuery(ext, ds);
*/
Response.Write("ok");
}
protected void grab()
{
String url = Request["url"];
try
{
using (WebClient wc = new WebClient())
{
String html = wc.DownloadString(url);
Response.Write(html);
}
}
catch (Exception err)
{
Response.Write(err.Message);
}
}
protected void parseDescribeCoverage()
{
ajaxRetDescCov ret = new ajaxRetDescCov();
try
{
String url = Request["url"] + "?&SERVICE=WCS&VERSION=2.0.1&REQUEST=DescribeCoverage&COVERAGEID=" + Request["cov"];
using (WebClient wc = new WebClient())
{
String xml = wc.DownloadString(url);
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
XmlNode root = doc.DocumentElement;
// bounding box
XmlNode CoverageDescription = xmltool.getNode(root, "CoverageDescription");
XmlNode boundedBy = xmltool.getNode(CoverageDescription, "boundedBy");
XmlNode Envelope = xmltool.getNode(boundedBy, "Envelope");
String lowerCorner = xmltool.getNodeText(Envelope, "lowerCorner");
String upperCorner = xmltool.getNodeText(Envelope, "upperCorner");
}
}
catch (Exception err)
{
ret.success = false;
ret.message = err.Message;
}
finally
{
JavaScriptSerializer js = new JavaScriptSerializer();
Response.Write(js.Serialize(ret));
}
}
class ajaxRet
{
public bool success = true;
public string message = "";
}
class ajaxRetGetCap : ajaxRet
{
public string serviceProvider;
public List<String> formats = new List<string>();
public List<String> coverages = new List<string>();
}
class ajaxRetDescCov : ajaxRet
{
public string serviceProvider = "";
public List<String> formats = new List<string>();
public List<String> coverages = new List<string>();
}
}
}