Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2287 | - | 1 | <?xml version="1.0"?> |
2 | <doc> |
||
3 | <assembly> |
||
4 | <name>DotSpatial.Projections</name> |
||
5 | </assembly> |
||
6 | <members> |
||
7 | <member name="T:DotSpatial.Projections.Robinson"> |
||
8 | <summary> |
||
9 | Robinson |
||
10 | </summary> |
||
11 | </member> |
||
12 | <member name="T:DotSpatial.Projections.Transform"> |
||
13 | <summary> |
||
14 | TransverseMercator is a class allowing the transverse mercator transform as transcribed |
||
15 | from the 4.6 version of the Proj4 library (pj_tmerc.c) |
||
16 | </summary> |
||
17 | </member> |
||
18 | <member name="T:DotSpatial.Projections.ITransform"> |
||
19 | <summary> |
||
20 | ITransform |
||
21 | </summary> |
||
22 | </member> |
||
23 | <member name="M:DotSpatial.Projections.ITransform.Init(DotSpatial.Projections.ProjectionInfo)"> |
||
24 | <summary> |
||
25 | Initializes the parameters from the projection info |
||
26 | </summary> |
||
27 | <param name="proj">The projection information used to control this transform</param> |
||
28 | </member> |
||
29 | <member name="M:DotSpatial.Projections.ITransform.Forward(System.Double[],System.Int32,System.Int32)"> |
||
30 | <summary> |
||
31 | Transforms all the coordinates by cycling through them in a loop, |
||
32 | transforming each one. Only the 0 and 1 values of each coordinate will be |
||
33 | transformed, higher dimensional values will be copied. |
||
34 | </summary> |
||
35 | </member> |
||
36 | <member name="M:DotSpatial.Projections.ITransform.Inverse(System.Double[],System.Int32,System.Int32)"> |
||
37 | <summary> |
||
38 | Transforms all the coordinates by cycling through them in a loop, |
||
39 | transforming each one. Only the 0 and 1 values of each coordinate will be |
||
40 | transformed, higher dimensional values will be copied. |
||
41 | </summary> |
||
42 | </member> |
||
43 | <member name="M:DotSpatial.Projections.ITransform.Special(System.Double[],DotSpatial.Projections.ProjectionInfo,DotSpatial.Projections.Factors)"> |
||
44 | <summary> |
||
45 | Special factor calculations for a factors calculation |
||
46 | </summary> |
||
47 | <param name="lp"></param> |
||
48 | <param name="p"></param> |
||
49 | <param name="fac"></param> |
||
50 | </member> |
||
51 | <member name="P:DotSpatial.Projections.ITransform.Name"> |
||
52 | <summary> |
||
53 | Gets or sets the string name of this projection. This should uniquely define the projection, |
||
54 | and controls what appears in the .prj files. This name is required. |
||
55 | </summary> |
||
56 | </member> |
||
57 | <member name="P:DotSpatial.Projections.ITransform.Proj4Name"> |
||
58 | <summary> |
||
59 | Gets or sets the string name of this projection as it is known to proj4, or should appear |
||
60 | in a proj4 string. This name is required to read and write to proj4 strings. |
||
61 | </summary> |
||
62 | </member> |
||
63 | <member name="P:DotSpatial.Projections.ITransform.Proj4Aliases"> |
||
64 | <summary> |
||
65 | This is the list of alternate names to check besides the Proj4Name. This will not be used |
||
66 | for writing Proj4 strings, but may be helpful for reading them. |
||
67 | </summary> |
||
68 | </member> |
||
69 | <member name="F:DotSpatial.Projections.Transform.HALF_PI"> |
||
70 | <summary> |
||
71 | Pi/2 |
||
72 | </summary> |
||
73 | </member> |
||
74 | <member name="F:DotSpatial.Projections.Transform.FORT_PI"> |
||
75 | <summary> |
||
76 | Math.Pi / 4 |
||
77 | </summary> |
||
78 | </member> |
||
79 | <member name="F:DotSpatial.Projections.Transform.TWO_PI"> |
||
80 | <summary> |
||
81 | 2 * Math.Pi |
||
82 | </summary> |
||
83 | </member> |
||
84 | <member name="F:DotSpatial.Projections.Transform.EPS10"> |
||
85 | <summary> |
||
86 | 1E-10 |
||
87 | </summary> |
||
88 | </member> |
||
89 | <member name="F:DotSpatial.Projections.Transform.IS_ANAL_HK"> |
||
90 | <summary> |
||
91 | Analytic Hk |
||
92 | </summary> |
||
93 | </member> |
||
94 | <member name="F:DotSpatial.Projections.Transform.IS_ANAL_CONV"> |
||
95 | <summary> |
||
96 | Analytic Conv |
||
97 | </summary> |
||
98 | </member> |
||
99 | <member name="F:DotSpatial.Projections.Transform.IS_ANAL_XL_YL"> |
||
100 | <summary> |
||
101 | Analytic Xl Yl |
||
102 | </summary> |
||
103 | </member> |
||
104 | <member name="F:DotSpatial.Projections.Transform.IS_ANAL_XP_YP"> |
||
105 | <summary> |
||
106 | Analytic Xp Yp |
||
107 | </summary> |
||
108 | </member> |
||
109 | <member name="F:DotSpatial.Projections.Transform.RAD_TO_DEG"> |
||
110 | <summary> |
||
111 | Radians to Degrees |
||
112 | </summary> |
||
113 | </member> |
||
114 | <member name="F:DotSpatial.Projections.Transform.DEG_TO_RAD"> |
||
115 | <summary> |
||
116 | Degrees to Radians |
||
117 | </summary> |
||
118 | </member> |
||
119 | <member name="F:DotSpatial.Projections.Transform.LAMBDA"> |
||
120 | <summary> |
||
121 | The integer index representing lambda values in arrays representing geodetic coordinates |
||
122 | </summary> |
||
123 | </member> |
||
124 | <member name="F:DotSpatial.Projections.Transform.PHI"> |
||
125 | <summary> |
||
126 | The integer index representing phi values in arrays representing geodetic coordinates |
||
127 | </summary> |
||
128 | </member> |
||
129 | <member name="F:DotSpatial.Projections.Transform.X"> |
||
130 | <summary> |
||
131 | The integer index representing X values in arrays representing linear coordinates |
||
132 | </summary> |
||
133 | </member> |
||
134 | <member name="F:DotSpatial.Projections.Transform.Y"> |
||
135 | <summary> |
||
136 | The integer index representing Y values in arrays representing linear coordinates |
||
137 | </summary> |
||
138 | </member> |
||
139 | <member name="F:DotSpatial.Projections.Transform.R"> |
||
140 | <summary> |
||
141 | The integer index representing real values in arrays representing complex numbers |
||
142 | </summary> |
||
143 | </member> |
||
144 | <member name="F:DotSpatial.Projections.Transform.I"> |
||
145 | <summary> |
||
146 | The integer index representing immaginary values in arrays representing complex numbers |
||
147 | </summary> |
||
148 | </member> |
||
149 | <member name="F:DotSpatial.Projections.Transform.A"> |
||
150 | <summary> |
||
151 | The major axis |
||
152 | </summary> |
||
153 | </member> |
||
154 | <member name="F:DotSpatial.Projections.Transform.Ra"> |
||
155 | <summary> |
||
156 | 1/a |
||
157 | </summary> |
||
158 | </member> |
||
159 | <member name="F:DotSpatial.Projections.Transform.OneEs"> |
||
160 | <summary> |
||
161 | 1 - e^2; |
||
162 | </summary> |
||
163 | </member> |
||
164 | <member name="F:DotSpatial.Projections.Transform.ROneEs"> |
||
165 | <summary> |
||
166 | 1/OneEs |
||
167 | </summary> |
||
168 | </member> |
||
169 | <member name="F:DotSpatial.Projections.Transform.E"> |
||
170 | <summary> |
||
171 | Eccentricity |
||
172 | </summary> |
||
173 | </member> |
||
174 | <member name="F:DotSpatial.Projections.Transform.IsElliptical"> |
||
175 | <summary> |
||
176 | True if the spheroid is flattened |
||
177 | </summary> |
||
178 | </member> |
||
179 | <member name="F:DotSpatial.Projections.Transform.Es"> |
||
180 | <summary> |
||
181 | Eccentricity Squared |
||
182 | </summary> |
||
183 | </member> |
||
184 | <member name="F:DotSpatial.Projections.Transform.Phi0"> |
||
185 | <summary> |
||
186 | Central Latitude |
||
187 | </summary> |
||
188 | </member> |
||
189 | <member name="F:DotSpatial.Projections.Transform.Lam0"> |
||
190 | <summary> |
||
191 | Central Longitude |
||
192 | </summary> |
||
193 | </member> |
||
194 | <member name="F:DotSpatial.Projections.Transform.X0"> |
||
195 | <summary> |
||
196 | False Easting |
||
197 | </summary> |
||
198 | </member> |
||
199 | <member name="F:DotSpatial.Projections.Transform.Y0"> |
||
200 | <summary> |
||
201 | False Northing |
||
202 | </summary> |
||
203 | </member> |
||
204 | <member name="F:DotSpatial.Projections.Transform.K0"> |
||
205 | <summary> |
||
206 | Scaling Factor |
||
207 | </summary> |
||
208 | </member> |
||
209 | <member name="F:DotSpatial.Projections.Transform.ToMeter"> |
||
210 | <summary> |
||
211 | Scaling to meter |
||
212 | </summary> |
||
213 | </member> |
||
214 | <member name="F:DotSpatial.Projections.Transform.FromMeter"> |
||
215 | <summary> |
||
216 | Scaling from meter |
||
217 | </summary> |
||
218 | </member> |
||
219 | <member name="F:DotSpatial.Projections.Transform.B"> |
||
220 | <summary> |
||
221 | The B parameter, which should be consisten with the semi-minor axis |
||
222 | </summary> |
||
223 | </member> |
||
224 | <member name="M:DotSpatial.Projections.Transform.Init(DotSpatial.Projections.ProjectionInfo)"> |
||
225 | <summary> |
||
226 | Initializes the parameters from the projection info |
||
227 | </summary> |
||
228 | <param name="proj">The projection information used to control this transform</param> |
||
229 | </member> |
||
230 | <member name="M:DotSpatial.Projections.Transform.FromKnownTransform(DotSpatial.Projections.KnownTransform)"> |
||
231 | <summary> |
||
232 | Uses an enumeration to generate a new instance of a known transform class |
||
233 | </summary> |
||
234 | <param name="value">The member of the KnownTransforms to instantiate</param> |
||
235 | <returns>A new ITransform interface representing the specific transform</returns> |
||
236 | </member> |
||
237 | <member name="M:DotSpatial.Projections.Transform.Forward(System.Double[],System.Int32,System.Int32)"> |
||
238 | <summary> |
||
239 | Transforms all the coordinates by cycling through them in a loop, |
||
240 | transforming each one. Only the 0 and 1 values of each coordinate will be |
||
241 | transformed, higher dimensional values will be copied. |
||
242 | </summary> |
||
243 | </member> |
||
244 | <member name="M:DotSpatial.Projections.Transform.Inverse(System.Double[],System.Int32,System.Int32)"> |
||
245 | <summary> |
||
246 | Transforms all the coordinates by cycling through them in a loop, |
||
247 | transforming each one. Only the 0 and 1 values of each coordinate will be |
||
248 | transformed, higher dimensional values will be copied. |
||
249 | </summary> |
||
250 | </member> |
||
251 | <member name="M:DotSpatial.Projections.Transform.Special(System.Double[],DotSpatial.Projections.ProjectionInfo,DotSpatial.Projections.Factors)"> |
||
252 | <summary> |
||
253 | Special factor calculations for a factors calculation |
||
254 | </summary> |
||
255 | <param name="lp">lambda-phi</param> |
||
256 | <param name="p">The projection</param> |
||
257 | <param name="fac">The Factors</param> |
||
258 | </member> |
||
259 | <member name="M:DotSpatial.Projections.Transform.OnSpecial(System.Double[],DotSpatial.Projections.ProjectionInfo,DotSpatial.Projections.Factors)"> |
||
260 | <summary> |
||
261 | Allows for some custom code during a process method |
||
262 | </summary> |
||
263 | <param name="lp">lambda-phi</param> |
||
264 | <param name="p">The projection coordinate system information</param> |
||
265 | <param name="fac">The Factors</param> |
||
266 | </member> |
||
267 | <member name="M:DotSpatial.Projections.Transform.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
268 | <summary> |
||
269 | Initializes the transform using the parameters from the specified coordinate system information |
||
270 | </summary> |
||
271 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
272 | </member> |
||
273 | <member name="M:DotSpatial.Projections.Transform.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
274 | <summary> |
||
275 | Transforms cartesian x, y to geodetic lambda, phi |
||
276 | </summary> |
||
277 | <param name="lp">in -> the lambda, phi coordinates</param> |
||
278 | <param name="xy">out -> the cartesian x, y</param> |
||
279 | <param name="startIndex">The zero based starting point index. If this is 1, for instance, reading will skip the x and y of the first point and start at the second point.</param> |
||
280 | <param name="numPoints">The integer count of the pairs of xy values to consider.</param> |
||
281 | </member> |
||
282 | <member name="M:DotSpatial.Projections.Transform.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
283 | <summary> |
||
284 | The inverse transform from linear units to geodetic units |
||
285 | </summary> |
||
286 | <param name="xy">The double values for the input x and y values stored in an array</param> |
||
287 | <param name="lp">The double values for the output lambda and phi values stored in an array</param> |
||
288 | <param name="startIndex">The zero based starting point index. If this is 1, for instance, reading will skip the x and y of the first point and start at the second point.</param> |
||
289 | <param name="numPoints">The integer count of the pairs of xy values to consider</param> |
||
290 | </member> |
||
291 | <member name="M:DotSpatial.Projections.Transform.Clone"> |
||
292 | <summary> |
||
293 | |||
294 | </summary> |
||
295 | <returns></returns> |
||
296 | </member> |
||
297 | <member name="M:DotSpatial.Projections.Transform.OnCopy(DotSpatial.Projections.Transform)"> |
||
298 | <summary> |
||
299 | This allows for custom behavior to override the base behavior |
||
300 | </summary> |
||
301 | <param name="duplicate"></param> |
||
302 | </member> |
||
303 | <member name="P:DotSpatial.Projections.Transform.Name"> |
||
304 | <summary> |
||
305 | Gets or sets the string name of this projection as it appears in .prj files and |
||
306 | ESRI wkt. This can also be several names separated by a semicolon. |
||
307 | </summary> |
||
308 | </member> |
||
309 | <member name="P:DotSpatial.Projections.Transform.Proj4Name"> |
||
310 | <summary> |
||
311 | Gets or sets the string name of this projection as it should appear in proj4 strings. |
||
312 | This can also be several names deliminated by a semicolon. |
||
313 | </summary> |
||
314 | </member> |
||
315 | <member name="P:DotSpatial.Projections.Transform.Proj4Aliases"> |
||
316 | <summary> |
||
317 | Gets or sets a list of optional aliases that can be used in the place of the Proj4Name. |
||
318 | This will only be used during reading, and will not be used during writing. |
||
319 | </summary> |
||
320 | </member> |
||
321 | <member name="T:DotSpatial.Projections.Transform.Modes"> |
||
322 | <summary> |
||
323 | For transforms that distinguish between polar, oblique and equitorial modes |
||
324 | </summary> |
||
325 | </member> |
||
326 | <member name="F:DotSpatial.Projections.Transform.Modes.NorthPole"> |
||
327 | <summary> |
||
328 | North Pole |
||
329 | </summary> |
||
330 | </member> |
||
331 | <member name="F:DotSpatial.Projections.Transform.Modes.SouthPole"> |
||
332 | <summary> |
||
333 | South Pole |
||
334 | </summary> |
||
335 | </member> |
||
336 | <member name="F:DotSpatial.Projections.Transform.Modes.Equitorial"> |
||
337 | <summary> |
||
338 | Equitorial |
||
339 | </summary> |
||
340 | </member> |
||
341 | <member name="F:DotSpatial.Projections.Transform.Modes.Oblique"> |
||
342 | <summary> |
||
343 | Oblique |
||
344 | </summary> |
||
345 | </member> |
||
346 | <member name="M:DotSpatial.Projections.Robinson.#ctor"> |
||
347 | <summary> |
||
348 | Creates a new instance of Robinson |
||
349 | </summary> |
||
350 | </member> |
||
351 | <member name="M:DotSpatial.Projections.Robinson.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
352 | <inheritdoc /> |
||
353 | </member> |
||
354 | <member name="M:DotSpatial.Projections.Robinson.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
355 | <inheritdoc /> |
||
356 | </member> |
||
357 | <member name="T:DotSpatial.Projections.ObliqueStereographicAlternative"> |
||
358 | <summary> |
||
359 | ObliqueStereographicAlternative |
||
360 | </summary> |
||
361 | </member> |
||
362 | <member name="M:DotSpatial.Projections.ObliqueStereographicAlternative.#ctor"> |
||
363 | <summary> |
||
364 | Creates a new instance of ObliqueStereographicAlternative |
||
365 | </summary> |
||
366 | </member> |
||
367 | <member name="M:DotSpatial.Projections.ObliqueStereographicAlternative.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
368 | <inheritdoc /> |
||
369 | </member> |
||
370 | <member name="M:DotSpatial.Projections.ObliqueStereographicAlternative.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
371 | <inheritdoc /> |
||
372 | </member> |
||
373 | <member name="M:DotSpatial.Projections.ObliqueStereographicAlternative.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
374 | <summary> |
||
375 | Initializes the transform using the parameters from the specified coordinate system information |
||
376 | </summary> |
||
377 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
378 | </member> |
||
379 | <member name="T:DotSpatial.Projections.McBrydeThomasFlatPolarSine"> |
||
380 | <summary> |
||
381 | McBrydeThomasFlatPolarSine is a tweaked version of Qaurtic Authalic |
||
382 | </summary> |
||
383 | </member> |
||
384 | <member name="T:DotSpatial.Projections.QuarticAuthalic"> |
||
385 | <summary> |
||
386 | QuarticAuthalic |
||
387 | </summary> |
||
388 | </member> |
||
389 | <member name="M:DotSpatial.Projections.QuarticAuthalic.#ctor"> |
||
390 | <summary> |
||
391 | Creates a new instance of QuarticAuthalic |
||
392 | </summary> |
||
393 | </member> |
||
394 | <member name="M:DotSpatial.Projections.QuarticAuthalic.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
395 | <inheritdoc /> |
||
396 | </member> |
||
397 | <member name="M:DotSpatial.Projections.QuarticAuthalic.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
398 | <inheritdoc /> |
||
399 | </member> |
||
400 | <member name="M:DotSpatial.Projections.QuarticAuthalic.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
401 | <summary> |
||
402 | Initializes the transform using the parameters from the specified coordinate system information |
||
403 | </summary> |
||
404 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
405 | </member> |
||
406 | <member name="M:DotSpatial.Projections.QuarticAuthalic.Setup(System.Double,System.Double,System.Boolean)"> |
||
407 | <summary> |
||
408 | Setup |
||
409 | </summary> |
||
410 | <param name="p"></param> |
||
411 | <param name="q"></param> |
||
412 | <param name="mode"></param> |
||
413 | </member> |
||
414 | <member name="M:DotSpatial.Projections.McBrydeThomasFlatPolarSine.#ctor"> |
||
415 | <summary> |
||
416 | Creates a new instance of McBrydeThomasFlatPolarSine |
||
417 | </summary> |
||
418 | </member> |
||
419 | <member name="M:DotSpatial.Projections.McBrydeThomasFlatPolarSine.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
420 | <summary> |
||
421 | Initializes the transform using the parameters from the specified coordinate system information |
||
422 | </summary> |
||
423 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
424 | </member> |
||
425 | <member name="T:DotSpatial.Projections.Loximuthal"> |
||
426 | <summary> |
||
427 | Loximuthal |
||
428 | </summary> |
||
429 | </member> |
||
430 | <member name="M:DotSpatial.Projections.Loximuthal.#ctor"> |
||
431 | <summary> |
||
432 | Creates a new instance of Loximuthal |
||
433 | </summary> |
||
434 | </member> |
||
435 | <member name="M:DotSpatial.Projections.Loximuthal.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
436 | <inheritdoc /> |
||
437 | </member> |
||
438 | <member name="M:DotSpatial.Projections.Loximuthal.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
439 | <inheritdoc /> |
||
440 | </member> |
||
441 | <member name="M:DotSpatial.Projections.Loximuthal.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
442 | <summary> |
||
443 | Initializes the transform using the parameters from the specified coordinate system information |
||
444 | </summary> |
||
445 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
446 | </member> |
||
447 | <member name="T:DotSpatial.Projections.Krovak"> |
||
448 | <summary> |
||
449 | Krovak |
||
450 | NOTES: According to EPSG the full Krovak projection method should have |
||
451 | the following parameters. Within PROJ.4 the azimuth, and pseudo |
||
452 | standard parallel are hardcoded in the algorithm and can't be |
||
453 | altered from outside. The others all have defaults to match the |
||
454 | common usage with Krovak projection. |
||
455 | |||
456 | lat_0 = latitude of centre of the projection |
||
457 | |||
458 | lon_0 = longitude of centre of the projection |
||
459 | |||
460 | ** = azimuth (true) of the centre line passing through the centre of the projection |
||
461 | |||
462 | ** = latitude of pseudo standard parallel |
||
463 | |||
464 | k = scale factor on the pseudo standard parallel |
||
465 | |||
466 | x_0 = False Easting of the centre of the projection at the apex of the cone |
||
467 | |||
468 | y_0 = False Northing of the centre of the projection at the apex of the cone |
||
469 | </summary> |
||
470 | </member> |
||
471 | <member name="M:DotSpatial.Projections.Krovak.#ctor"> |
||
472 | <summary> |
||
473 | Creates a new instance of Krovak |
||
474 | </summary> |
||
475 | </member> |
||
476 | <member name="M:DotSpatial.Projections.Krovak.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
477 | <inheritdoc /> |
||
478 | </member> |
||
479 | <member name="M:DotSpatial.Projections.Krovak.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
480 | <inheritdoc /> |
||
481 | </member> |
||
482 | <member name="M:DotSpatial.Projections.Krovak.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
483 | <summary> |
||
484 | Initializes the transform using the parameters from the specified coordinate system information |
||
485 | </summary> |
||
486 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
487 | </member> |
||
488 | <member name="T:DotSpatial.Projections.Eckert2"> |
||
489 | <summary> |
||
490 | Eckert2 |
||
491 | </summary> |
||
492 | </member> |
||
493 | <member name="M:DotSpatial.Projections.Eckert2.#ctor"> |
||
494 | <summary> |
||
495 | Creates a new instance of Eckert2 |
||
496 | </summary> |
||
497 | </member> |
||
498 | <member name="M:DotSpatial.Projections.Eckert2.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
499 | <inheritdoc /> |
||
500 | </member> |
||
501 | <member name="M:DotSpatial.Projections.Eckert2.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
502 | <inheritdoc /> |
||
503 | </member> |
||
504 | <member name="T:DotSpatial.Projections.AlbersConicEqualArea"> |
||
505 | <summary> |
||
506 | AlbersConicEqualArea |
||
507 | </summary> |
||
508 | </member> |
||
509 | <member name="T:DotSpatial.Projections.AlbersEqualArea"> |
||
510 | <summary> |
||
511 | AlbersEqualArea |
||
512 | </summary> |
||
513 | </member> |
||
514 | <member name="M:DotSpatial.Projections.AlbersEqualArea.#ctor"> |
||
515 | <summary> |
||
516 | Creates a new instance of AlbersEqualArea |
||
517 | </summary> |
||
518 | </member> |
||
519 | <member name="M:DotSpatial.Projections.AlbersEqualArea.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
520 | <inheritdoc /> |
||
521 | </member> |
||
522 | <member name="M:DotSpatial.Projections.AlbersEqualArea.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
523 | <inheritdoc /> |
||
524 | </member> |
||
525 | <member name="M:DotSpatial.Projections.AlbersEqualArea.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
526 | <summary> |
||
527 | Initializes the transform using the parameters from the specified coordinate system information |
||
528 | </summary> |
||
529 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
530 | </member> |
||
531 | <member name="M:DotSpatial.Projections.AlbersEqualArea.Setup"> |
||
532 | <summary> |
||
533 | Internal code handling the setup operations for the transform |
||
534 | </summary> |
||
535 | </member> |
||
536 | <member name="P:DotSpatial.Projections.AlbersEqualArea.Phi1"> |
||
537 | <summary> |
||
538 | Gets or sets the Phi1 parameter |
||
539 | </summary> |
||
540 | </member> |
||
541 | <member name="P:DotSpatial.Projections.AlbersEqualArea.Phi2"> |
||
542 | <summary> |
||
543 | Gets or sets the Phi2 parameter |
||
544 | </summary> |
||
545 | </member> |
||
546 | <member name="M:DotSpatial.Projections.AlbersConicEqualArea.#ctor"> |
||
547 | <summary> |
||
548 | Creates a new instance of AlbersConicEqualArea |
||
549 | </summary> |
||
550 | </member> |
||
551 | <member name="T:DotSpatial.Projections.ProjectedCategories.Minnesota"> |
||
552 | <summary> |
||
553 | Not sure why we have all these county based Minnesota and Wisconsin projections |
||
554 | </summary> |
||
555 | </member> |
||
556 | <member name="T:DotSpatial.Projections.CoordinateSystemCategory"> |
||
557 | <summary> |
||
558 | CoordinateSystem |
||
559 | </summary> |
||
560 | </member> |
||
561 | <member name="M:DotSpatial.Projections.CoordinateSystemCategory.#ctor"> |
||
562 | <summary> |
||
563 | Creates a new instance of CoordinateSystem |
||
564 | </summary> |
||
565 | </member> |
||
566 | <member name="M:DotSpatial.Projections.CoordinateSystemCategory.GetProjection(System.String)"> |
||
567 | <summary> |
||
568 | Retrieves the specified projection given the specified name. |
||
569 | </summary> |
||
570 | <param name="name">The string name of the projection to obtain information for</param> |
||
571 | <returns></returns> |
||
572 | </member> |
||
573 | <member name="M:DotSpatial.Projections.CoordinateSystemCategory.ToArray"> |
||
574 | <summary> |
||
575 | Obtains all the members of this category, building a single |
||
576 | array of the projection info classes. This returns the |
||
577 | original classes, not a copy. |
||
578 | </summary> |
||
579 | <returns>The array of projection info classes</returns> |
||
580 | </member> |
||
581 | <member name="P:DotSpatial.Projections.CoordinateSystemCategory.Names"> |
||
582 | <summary> |
||
583 | Gets the list of names of all the members on this object |
||
584 | </summary> |
||
585 | </member> |
||
586 | <member name="M:DotSpatial.Projections.ProjectedCategories.Minnesota.#ctor"> |
||
587 | <summary> |
||
588 | Creates a new instance of Minnesota |
||
589 | </summary> |
||
590 | </member> |
||
591 | <member name="T:DotSpatial.Projections.ProjectedCategories.Africa"> |
||
592 | <summary> |
||
593 | Africa |
||
594 | </summary> |
||
595 | </member> |
||
596 | <member name="M:DotSpatial.Projections.ProjectedCategories.Africa.#ctor"> |
||
597 | <summary> |
||
598 | Creates a new instance of Africa |
||
599 | </summary> |
||
600 | </member> |
||
601 | <member name="T:DotSpatial.Projections.GeographicCategories.Europe"> |
||
602 | <summary> |
||
603 | Europe |
||
604 | </summary> |
||
605 | </member> |
||
606 | <member name="M:DotSpatial.Projections.GeographicCategories.Europe.#ctor"> |
||
607 | <summary> |
||
608 | Creates a new instance of Europe |
||
609 | </summary> |
||
610 | </member> |
||
611 | <member name="T:DotSpatial.Projections.ProjPropertyInfoEm"> |
||
612 | <summary> |
||
613 | PropertyInfoEM |
||
614 | </summary> |
||
615 | </member> |
||
616 | <member name="M:DotSpatial.Projections.ProjPropertyInfoEm.GetFirst(System.Collections.Generic.IEnumerable{System.Reflection.PropertyInfo},System.String)"> |
||
617 | <summary> |
||
618 | Gets the first member in the enumerable collection of property info with the specified name. |
||
619 | </summary> |
||
620 | <param name="self"></param> |
||
621 | <param name="name"></param> |
||
622 | <returns></returns> |
||
623 | </member> |
||
624 | <member name="M:DotSpatial.Projections.ProjPropertyInfoEm.Contains(System.Collections.Generic.IEnumerable{System.Reflection.PropertyInfo},System.String)"> |
||
625 | <summary> |
||
626 | Determines whether there is a member with the specified name |
||
627 | </summary> |
||
628 | <param name="self"></param> |
||
629 | <param name="name"></param> |
||
630 | <returns></returns> |
||
631 | </member> |
||
632 | <member name="T:DotSpatial.Projections.Wagner6"> |
||
633 | <summary> |
||
634 | Wagner6 |
||
635 | </summary> |
||
636 | </member> |
||
637 | <member name="M:DotSpatial.Projections.Wagner6.#ctor"> |
||
638 | <summary> |
||
639 | Creates a new instance of Wagner6 |
||
640 | </summary> |
||
641 | </member> |
||
642 | <member name="M:DotSpatial.Projections.Wagner6.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
643 | <inheritdoc /> |
||
644 | </member> |
||
645 | <member name="M:DotSpatial.Projections.Wagner6.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
646 | <inheritdoc /> |
||
647 | </member> |
||
648 | <member name="T:DotSpatial.Projections.Polyconic"> |
||
649 | <summary> |
||
650 | Polygconic |
||
651 | </summary> |
||
652 | </member> |
||
653 | <member name="T:DotSpatial.Projections.EllipticalTransform"> |
||
654 | <summary> |
||
655 | Elliptical Transform supports a built in framework for assuming a |
||
656 | separate function occurs if the spheroid is elliptical |
||
657 | </summary> |
||
658 | </member> |
||
659 | <member name="M:DotSpatial.Projections.EllipticalTransform.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
660 | <inheritdoc /> |
||
661 | </member> |
||
662 | <member name="M:DotSpatial.Projections.EllipticalTransform.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
663 | <summary> |
||
664 | Calculates the forward transformation from geodetic lambda and phi coordinates to |
||
665 | linear xy coordinates for projections that have elliptical earth models. |
||
666 | </summary> |
||
667 | <param name="lp">The input interleaved lambda-phi coordinates where lambda is longitude in radians and phi is latitude in radians.</param> |
||
668 | <param name="xy">The resulting interleaved x-y coordinates</param> |
||
669 | <param name="startIndex">The zero based integer start index in terms of coordinate pairs</param> |
||
670 | <param name="numPoints">The integer number of xy pairs to evaluate.</param> |
||
671 | </member> |
||
672 | <member name="M:DotSpatial.Projections.EllipticalTransform.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
673 | <summary> |
||
674 | Calculates the forward transformation from geodetic lambda and phi coordinates to |
||
675 | linear xy coordinates for projections that have spherical earth models. |
||
676 | </summary> |
||
677 | <param name="lp">The input interleaved lambda-phi coordinates where lambda is longitude in radians and phi is latitude in radians.</param> |
||
678 | <param name="xy">The resulting interleaved x-y coordinates</param> |
||
679 | <param name="startIndex">The zero based integer start index in terms of coordinate pairs</param> |
||
680 | <param name="numPoints">The integer number of xy pairs to evaluate.</param> |
||
681 | </member> |
||
682 | <member name="M:DotSpatial.Projections.EllipticalTransform.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
683 | <inheritdoc /> |
||
684 | </member> |
||
685 | <member name="M:DotSpatial.Projections.EllipticalTransform.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
686 | <summary> |
||
687 | Calculates the inverse transformation from linear xy coordinates to geodetic lambda and phi coordinates |
||
688 | for projections that have elliptical earth models. |
||
689 | </summary> |
||
690 | <param name="xy">The input interleaved x-y coordinates</param> |
||
691 | <param name="lp">The output interleaved lambda-phi coordinates where lambda is longitude in radians and phi is latitude in radians.</param> |
||
692 | <param name="startIndex">The zero based integer start index in terms of coordinate pairs</param> |
||
693 | <param name="numPoints">The integer number of xy pairs to evaluate.</param> |
||
694 | </member> |
||
695 | <member name="M:DotSpatial.Projections.EllipticalTransform.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
696 | <summary> |
||
697 | Calculates the inverse transformation from linear xy coordinates to geodetic lambda and phi coordinates |
||
698 | for projections that have spherical earth models. |
||
699 | </summary> |
||
700 | <param name="xy">The input interleaved x-y coordinates</param> |
||
701 | <param name="lp">The output interleaved lambda-phi coordinates where lambda is longitude in radians and phi is latitude in radians.</param> |
||
702 | <param name="startIndex">The zero based integer start index in terms of coordinate pairs</param> |
||
703 | <param name="numPoints">The integer number of xy pairs to evaluate.</param> |
||
704 | </member> |
||
705 | <member name="M:DotSpatial.Projections.Polyconic.#ctor"> |
||
706 | <summary> |
||
707 | Creates a new instance of Polygconic |
||
708 | </summary> |
||
709 | </member> |
||
710 | <member name="M:DotSpatial.Projections.Polyconic.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
711 | <summary> |
||
712 | Initializes the transform using the parameters from the specified coordinate system information |
||
713 | </summary> |
||
714 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
715 | </member> |
||
716 | <member name="M:DotSpatial.Projections.Polyconic.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
717 | <inheritdoc /> |
||
718 | </member> |
||
719 | <member name="M:DotSpatial.Projections.Polyconic.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
720 | <inheritdoc /> |
||
721 | </member> |
||
722 | <member name="M:DotSpatial.Projections.Polyconic.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
723 | <inheritdoc /> |
||
724 | </member> |
||
725 | <member name="M:DotSpatial.Projections.Polyconic.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
726 | <inheritdoc /> |
||
727 | </member> |
||
728 | <member name="T:DotSpatial.Projections.ObliqueMercator"> |
||
729 | <summary> |
||
730 | OrthogonalMercator |
||
731 | </summary> |
||
732 | </member> |
||
733 | <member name="M:DotSpatial.Projections.ObliqueMercator.#ctor"> |
||
734 | <summary> |
||
735 | Creates a new instance of OrthogonalMercator |
||
736 | </summary> |
||
737 | </member> |
||
738 | <member name="M:DotSpatial.Projections.ObliqueMercator.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
739 | <inheritdoc /> |
||
740 | </member> |
||
741 | <member name="M:DotSpatial.Projections.ObliqueMercator.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
742 | <inheritdoc /> |
||
743 | </member> |
||
744 | <member name="M:DotSpatial.Projections.ObliqueMercator.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
745 | <summary> |
||
746 | Initializes the transform using the parameters from the specified coordinate system information |
||
747 | </summary> |
||
748 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
749 | </member> |
||
750 | <member name="T:DotSpatial.Projections.GoodeHomolosine"> |
||
751 | <summary> |
||
752 | GoodeHomolosine |
||
753 | </summary> |
||
754 | </member> |
||
755 | <member name="M:DotSpatial.Projections.GoodeHomolosine.#ctor"> |
||
756 | <summary> |
||
757 | Creates a new instance of GoodeHomolosine |
||
758 | </summary> |
||
759 | </member> |
||
760 | <member name="M:DotSpatial.Projections.GoodeHomolosine.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
761 | <inheritdoc /> |
||
762 | </member> |
||
763 | <member name="M:DotSpatial.Projections.GoodeHomolosine.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
764 | <inheritdoc /> |
||
765 | </member> |
||
766 | <member name="M:DotSpatial.Projections.GoodeHomolosine.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
767 | <summary> |
||
768 | Initializes the transform using the parameters from the specified coordinate system information |
||
769 | </summary> |
||
770 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
771 | </member> |
||
772 | <member name="T:DotSpatial.Projections.EquidistantCylindrical"> |
||
773 | <summary> |
||
774 | EquidistantCylindrical |
||
775 | </summary> |
||
776 | </member> |
||
777 | <member name="M:DotSpatial.Projections.EquidistantCylindrical.#ctor"> |
||
778 | <summary> |
||
779 | Creates a new instance of EquidistantCylindrical |
||
780 | </summary> |
||
781 | </member> |
||
782 | <member name="M:DotSpatial.Projections.EquidistantCylindrical.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
783 | <inheritdoc /> |
||
784 | </member> |
||
785 | <member name="M:DotSpatial.Projections.EquidistantCylindrical.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
786 | <inheritdoc /> |
||
787 | </member> |
||
788 | <member name="M:DotSpatial.Projections.EquidistantCylindrical.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
789 | <inheritdoc /> |
||
790 | </member> |
||
791 | <member name="T:DotSpatial.Projections.Eckert1"> |
||
792 | <summary> |
||
793 | Eckert1 |
||
794 | </summary> |
||
795 | </member> |
||
796 | <member name="M:DotSpatial.Projections.Eckert1.#ctor"> |
||
797 | <summary> |
||
798 | Creates a new instance of Eckert1 |
||
799 | </summary> |
||
800 | </member> |
||
801 | <member name="M:DotSpatial.Projections.Eckert1.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
802 | <inheritdoc /> |
||
803 | </member> |
||
804 | <member name="M:DotSpatial.Projections.Eckert1.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
805 | <inheritdoc /> |
||
806 | </member> |
||
807 | <member name="T:DotSpatial.Projections.BipolarObliqueConformalConic"> |
||
808 | <summary> |
||
809 | BipolarObliqueConformalConic |
||
810 | </summary> |
||
811 | </member> |
||
812 | <member name="M:DotSpatial.Projections.BipolarObliqueConformalConic.#ctor"> |
||
813 | <summary> |
||
814 | Creates a new instance of BipolarObliqueConformalConic |
||
815 | </summary> |
||
816 | </member> |
||
817 | <member name="M:DotSpatial.Projections.BipolarObliqueConformalConic.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
818 | <inheritdoc /> |
||
819 | </member> |
||
820 | <member name="M:DotSpatial.Projections.BipolarObliqueConformalConic.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
821 | <inheritdoc /> |
||
822 | </member> |
||
823 | <member name="M:DotSpatial.Projections.BipolarObliqueConformalConic.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
824 | <summary> |
||
825 | Initializes the transform using the parameters from the specified coordinate system information |
||
826 | </summary> |
||
827 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
828 | </member> |
||
829 | <member name="T:DotSpatial.Projections.AzimuthalEquidistant"> |
||
830 | <summary> |
||
831 | AzimuthalEquidistant |
||
832 | </summary> |
||
833 | </member> |
||
834 | <member name="M:DotSpatial.Projections.AzimuthalEquidistant.#ctor"> |
||
835 | <summary> |
||
836 | Creates a new instance of AzimuthalEquidistant |
||
837 | </summary> |
||
838 | </member> |
||
839 | <member name="M:DotSpatial.Projections.AzimuthalEquidistant.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
840 | <summary> |
||
841 | Initializes the transform using the parameters from the specified coordinate system information |
||
842 | </summary> |
||
843 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
844 | </member> |
||
845 | <member name="M:DotSpatial.Projections.AzimuthalEquidistant.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
846 | <inheritdoc /> |
||
847 | </member> |
||
848 | <member name="M:DotSpatial.Projections.AzimuthalEquidistant.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
849 | <inheritdoc /> |
||
850 | </member> |
||
851 | <member name="M:DotSpatial.Projections.AzimuthalEquidistant.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
852 | <inheritdoc /> |
||
853 | </member> |
||
854 | <member name="M:DotSpatial.Projections.AzimuthalEquidistant.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
855 | <inheritdoc /> |
||
856 | </member> |
||
857 | <member name="T:DotSpatial.Projections.Aitoff"> |
||
858 | <summary> |
||
859 | Aitoff |
||
860 | </summary> |
||
861 | </member> |
||
862 | <member name="M:DotSpatial.Projections.Aitoff.#ctor"> |
||
863 | <summary> |
||
864 | Creates a new instance of Aitoff |
||
865 | </summary> |
||
866 | </member> |
||
867 | <member name="M:DotSpatial.Projections.Aitoff.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
868 | <inheritdoc /> |
||
869 | </member> |
||
870 | <member name="T:DotSpatial.Projections.ProjectionInfo"> |
||
871 | <summary> |
||
872 | Parameters |
||
873 | </summary> |
||
874 | </member> |
||
875 | <member name="T:DotSpatial.Projections.ProjDescriptor"> |
||
876 | <summary> |
||
877 | Descriptors are simple classes that are used for storing symbology or other basic characteristics. |
||
878 | They are presumed to be made up of value types and other descriptors, and are expected to be serializable. |
||
879 | This being said, some basic capabilities are supported for randomizing, copying and comparing the |
||
880 | properties of descriptors. |
||
881 | </summary> |
||
882 | </member> |
||
883 | <member name="T:DotSpatial.Projections.ProjCopyBase"> |
||
884 | <summary> |
||
885 | CopyBase |
||
886 | </summary> |
||
887 | </member> |
||
888 | <member name="M:DotSpatial.Projections.ProjCopyBase.#ctor"> |
||
889 | <summary> |
||
890 | Creates a new instance of CopyBase |
||
891 | </summary> |
||
892 | </member> |
||
893 | <member name="M:DotSpatial.Projections.ProjCopyBase.System#ICloneable#Clone"> |
||
894 | <summary> |
||
895 | Creates a duplicate of this descriptor using MemberwiseClone |
||
896 | </summary> |
||
897 | <returns>A clone of this object as a duplicate</returns> |
||
898 | </member> |
||
899 | <member name="M:DotSpatial.Projections.ProjCopyBase.DistinctNames(System.Collections.Generic.IEnumerable{System.Reflection.PropertyInfo})"> |
||
900 | <summary> |
||
901 | PropertyInfo returns overridden members as separate entries. We would rather work with each members |
||
902 | only one time. |
||
903 | </summary> |
||
904 | <param name="allProperties">All the properties, including duplicates created by overridden members</param> |
||
905 | <returns>An Array of PropertyInfo members</returns> |
||
906 | </member> |
||
907 | <member name="M:DotSpatial.Projections.ProjCopyBase.OnCopy(DotSpatial.Projections.ProjDescriptor)"> |
||
908 | <summary> |
||
909 | This occurs during the Copy method and is overridable by sub-classes |
||
910 | </summary> |
||
911 | <param name="copy">The duplicate descriptor</param> |
||
912 | </member> |
||
913 | <member name="T:DotSpatial.Projections.IProjDescriptor"> |
||
914 | <summary> |
||
915 | IDescriptor |
||
916 | </summary> |
||
917 | </member> |
||
918 | <member name="T:DotSpatial.Projections.IProjMatchable"> |
||
919 | <summary> |
||
920 | Matching is defined as being a different object, but having properties |
||
921 | that would make it indistinguishable from the comparision property. |
||
922 | This is an alternative to overriding the equals behavior in cases |
||
923 | where you might ALSO need to see if the object reference is the same. |
||
924 | </summary> |
||
925 | </member> |
||
926 | <member name="M:DotSpatial.Projections.IProjMatchable.Matches(DotSpatial.Projections.IProjMatchable,System.Collections.Generic.List{System.String}@)"> |
||
927 | <summary> |
||
928 | Tests this object against the comparison object. If any of the |
||
929 | value type members are different, or if any of the properties |
||
930 | are IMatchable and do not match, then this returns false. |
||
931 | </summary> |
||
932 | <param name="other">The other IMatcheable object of the same type</param> |
||
933 | <param name="mismatchedProperties">The list of property names that do not match</param> |
||
934 | <returns>Boolean, true if the properties are comparably equal.</returns> |
||
935 | </member> |
||
936 | <member name="T:DotSpatial.Projections.IProjRandomizable"> |
||
937 | <summary> |
||
938 | IRandomizable |
||
939 | </summary> |
||
940 | </member> |
||
941 | <member name="M:DotSpatial.Projections.IProjRandomizable.Randomize(System.Random)"> |
||
942 | <summary> |
||
943 | This method will set the values for this class with random values that are |
||
944 | within acceptable parameters for this class. |
||
945 | </summary> |
||
946 | <param name="generator">An existing random number generator so that the random seed can be controlled</param> |
||
947 | </member> |
||
948 | <member name="M:DotSpatial.Projections.IProjDescriptor.CopyProperties(System.Object)"> |
||
949 | <summary> |
||
950 | This copies the public descriptor properties from the specified object to |
||
951 | this object. |
||
952 | </summary> |
||
953 | <param name="other">An object that has properties that match the public properties on this object.</param> |
||
954 | </member> |
||
955 | <member name="M:DotSpatial.Projections.ProjDescriptor.#ctor"> |
||
956 | <summary> |
||
957 | Creates a new instance of MatchableObject |
||
958 | </summary> |
||
959 | </member> |
||
960 | <member name="M:DotSpatial.Projections.ProjDescriptor.CopyProperties(System.Object)"> |
||
961 | <summary> |
||
962 | For each of the publicly accessible properties found on this object, this attempts |
||
963 | to copy a public property from the source object of the same name, if it can find it. |
||
964 | For each matching property name/type, it will attempt to copy the value. |
||
965 | </summary> |
||
966 | <param name="source">The</param> |
||
967 | </member> |
||
968 | <member name="M:DotSpatial.Projections.ProjDescriptor.Matches(DotSpatial.Projections.IProjMatchable,System.Collections.Generic.List{System.String}@)"> |
||
969 | <summary> |
||
970 | Compares the properties of this object with the specified IMatchable other. |
||
971 | This does not test every property of other, but does test every property |
||
972 | of this item. As long as the other item has corresponding properties |
||
973 | for every property on this item, the items are said to match. |
||
974 | The IMatchable interface allows custom definitions of matching. |
||
975 | For collections to match, all of their sub-members must match. |
||
976 | </summary> |
||
977 | <param name="other"></param> |
||
978 | <param name="mismatchedProperties"></param> |
||
979 | <returns></returns> |
||
980 | </member> |
||
981 | <member name="M:DotSpatial.Projections.ProjDescriptor.Randomize(System.Random)"> |
||
982 | <summary> |
||
983 | The default behavior is to cycle through all the properties of this |
||
984 | object, and call Randomize on any that implement the IRandomizable interface. |
||
985 | </summary> |
||
986 | <param name="generator">The Random seed generator for controling how the random content is created</param> |
||
987 | </member> |
||
988 | <member name="M:DotSpatial.Projections.ProjDescriptor.OnCopyProperties(System.Object)"> |
||
989 | <summary> |
||
990 | This occurs while copying properties from the specified source, and |
||
991 | is the default handling for subclasses |
||
992 | </summary> |
||
993 | <param name="source"></param> |
||
994 | </member> |
||
995 | <member name="M:DotSpatial.Projections.ProjDescriptor.OnMatch(DotSpatial.Projections.IProjMatchable,System.Collections.Generic.List{System.String})"> |
||
996 | <summary> |
||
997 | This gives sub-classes the chance to directly override, control or otherwise tamper |
||
998 | with the matching process. This is also where normal matching is performed, |
||
999 | so to replace it, simply don't call the base.OnMatch method. To tweak the results, |
||
1000 | the base method should be performed first, and the results can then be modified. |
||
1001 | </summary> |
||
1002 | <param name="other"></param> |
||
1003 | <param name="mismatchedProperties"></param> |
||
1004 | <returns></returns> |
||
1005 | </member> |
||
1006 | <member name="M:DotSpatial.Projections.ProjDescriptor.OnRandomize(System.Random)"> |
||
1007 | <summary> |
||
1008 | This allows overrideable behavior that can replace or extend the basic behavior, |
||
1009 | which is to call Randomize on any public properties that are listed as randomizeable. |
||
1010 | This does nothing to normal properties or non public members and needs to be overriden |
||
1011 | to provide the special case functionality for sub-classes. |
||
1012 | </summary> |
||
1013 | <param name="generator">The random number generator to be used during randomization</param> |
||
1014 | </member> |
||
1015 | <member name="T:DotSpatial.Projections.IEsriString"> |
||
1016 | <summary> |
||
1017 | EsriString |
||
1018 | </summary> |
||
1019 | </member> |
||
1020 | <member name="M:DotSpatial.Projections.IEsriString.ToEsriString"> |
||
1021 | <summary> |
||
1022 | Writes the value in the format that it would appear in within a prj file |
||
1023 | </summary> |
||
1024 | <returns>The a nested portion of the total esri string.</returns> |
||
1025 | </member> |
||
1026 | <member name="M:DotSpatial.Projections.IEsriString.ReadEsriString(System.String)"> |
||
1027 | <summary> |
||
1028 | This reads the string and attempts to parse the relavent values. |
||
1029 | </summary> |
||
1030 | <param name="esriString">The string to read</param> |
||
1031 | </member> |
||
1032 | <member name="M:DotSpatial.Projections.ProjectionInfo.#ctor"> |
||
1033 | <summary> |
||
1034 | Creates a new instance of Parameters |
||
1035 | </summary> |
||
1036 | </member> |
||
1037 | <member name="M:DotSpatial.Projections.ProjectionInfo.#ctor(System.String)"> |
||
1038 | <summary> |
||
1039 | Creates a new projection and automaticalyl reads in the proj4 string |
||
1040 | </summary> |
||
1041 | <param name="proj4String">THe proj4String to read in while defining the projection</param> |
||
1042 | </member> |
||
1043 | <member name="M:DotSpatial.Projections.ProjectionInfo.GetUnitText(System.Double)"> |
||
1044 | <summary> |
||
1045 | If this is a geographic coordinate system, this will show decimal degrees. Otherwise, |
||
1046 | this will show the linear unit units. |
||
1047 | </summary> |
||
1048 | <returns></returns> |
||
1049 | </member> |
||
1050 | <member name="M:DotSpatial.Projections.ProjectionInfo.Equals(DotSpatial.Projections.ProjectionInfo)"> |
||
1051 | <summary> |
||
1052 | Gets a boolean that is true if the proj4 string created by the projections matches. |
||
1053 | There are multiple ways to write the same projection, but the output proj4 string |
||
1054 | should be a good indicator of whether or not they are the same. |
||
1055 | </summary> |
||
1056 | <param name="other">The other projection to compare with.</param> |
||
1057 | <returns>Boolean, true if the projections are the same.</returns> |
||
1058 | </member> |
||
1059 | <member name="M:DotSpatial.Projections.ProjectionInfo.Open(System.String)"> |
||
1060 | <summary> |
||
1061 | Open a given prj filename |
||
1062 | </summary> |
||
1063 | <param name="prjFilename"></param> |
||
1064 | </member> |
||
1065 | <member name="M:DotSpatial.Projections.ProjectionInfo.SaveAs(System.String)"> |
||
1066 | <summary> |
||
1067 | Exports this projection info by saving it to a *.prj file. |
||
1068 | </summary> |
||
1069 | <param name="prjFilename">The prj file to save to</param> |
||
1070 | </member> |
||
1071 | <member name="M:DotSpatial.Projections.ProjectionInfo.GetLam0"> |
||
1072 | <summary> |
||
1073 | Gets the lambda 0, or central meridian, in radial coordinates |
||
1074 | </summary> |
||
1075 | <returns></returns> |
||
1076 | </member> |
||
1077 | <member name="M:DotSpatial.Projections.ProjectionInfo.GetPhi0"> |
||
1078 | <summary> |
||
1079 | Gets the phi 0 or latitude of origin in radial coordinates |
||
1080 | </summary> |
||
1081 | <returns></returns> |
||
1082 | </member> |
||
1083 | <member name="M:DotSpatial.Projections.ProjectionInfo.GetPhi1"> |
||
1084 | <summary> |
||
1085 | Gets the lat_1 parameter multiplied by radians |
||
1086 | </summary> |
||
1087 | <returns></returns> |
||
1088 | </member> |
||
1089 | <member name="M:DotSpatial.Projections.ProjectionInfo.GetPhi2"> |
||
1090 | <summary> |
||
1091 | Gets the lat_2 parameter multiplied by radians |
||
1092 | </summary> |
||
1093 | <returns></returns> |
||
1094 | </member> |
||
1095 | <member name="M:DotSpatial.Projections.ProjectionInfo.GetLam1"> |
||
1096 | <summary> |
||
1097 | Gets the lon_1 parameter in radians |
||
1098 | </summary> |
||
1099 | <returns></returns> |
||
1100 | </member> |
||
1101 | <member name="M:DotSpatial.Projections.ProjectionInfo.GetLam2"> |
||
1102 | <summary> |
||
1103 | Gets the lon_2 parameter in radians |
||
1104 | </summary> |
||
1105 | <returns></returns> |
||
1106 | </member> |
||
1107 | <member name="M:DotSpatial.Projections.ProjectionInfo.ParamD(System.String)"> |
||
1108 | <summary> |
||
1109 | Obtains the double valued parameter if it is found and can be parsed to a double. |
||
1110 | </summary> |
||
1111 | <param name="parameterName">The name of the parameter to return as a double value.</param> |
||
1112 | <returns>The double valued parameter of the specified name, or zero.</returns> |
||
1113 | </member> |
||
1114 | <member name="M:DotSpatial.Projections.ProjectionInfo.ParamR(System.String)"> |
||
1115 | <summary> |
||
1116 | Obtains the double valued parameter after converting from degrees to radians. |
||
1117 | </summary> |
||
1118 | <param name="parameterName">The name of the parameter to read</param> |
||
1119 | <returns>The double valued parameter in radians.</returns> |
||
1120 | </member> |
||
1121 | <member name="M:DotSpatial.Projections.ProjectionInfo.ParamI(System.String)"> |
||
1122 | <summary> |
||
1123 | Obtains the integer valued parameter if it is found and can be parsed to an integer |
||
1124 | </summary> |
||
1125 | <param name="parameterName">The string name of the parameter to find</param> |
||
1126 | <returns>An integer value representing the parameter if it was found.</returns> |
||
1127 | </member> |
||
1128 | <member name="M:DotSpatial.Projections.ProjectionInfo.SetLam0(System.Double)"> |
||
1129 | <summary> |
||
1130 | Sets the lambda 0, or central meridian in radial coordinates |
||
1131 | </summary> |
||
1132 | <param name="value">The value of Lambda 0 in radians</param> |
||
1133 | </member> |
||
1134 | <member name="M:DotSpatial.Projections.ProjectionInfo.SetPhi0(System.Double)"> |
||
1135 | <summary> |
||
1136 | Sets the phi 0 or latitude of origin in radial coordinates |
||
1137 | </summary> |
||
1138 | <param name="value"></param> |
||
1139 | </member> |
||
1140 | <member name="M:DotSpatial.Projections.ProjectionInfo.ToEsriString"> |
||
1141 | <summary> |
||
1142 | Expresses the entire projection as the ESRI well known text format that can be found in .prj files |
||
1143 | </summary> |
||
1144 | <returns>The generated string</returns> |
||
1145 | </member> |
||
1146 | <member name="M:DotSpatial.Projections.ProjectionInfo.ToProj4String"> |
||
1147 | <summary> |
||
1148 | Attempts to generate a new proj4 string based on the current projection parameters, |
||
1149 | regardless of whether they were read from a proj4 file or from an esri projection file. |
||
1150 | </summary> |
||
1151 | <returns></returns> |
||
1152 | </member> |
||
1153 | <member name="M:DotSpatial.Projections.ProjectionInfo.ReadProj4String(System.String)"> |
||
1154 | <summary> |
||
1155 | Attempts to parse known parameters from the set of proj4 parameters |
||
1156 | </summary> |
||
1157 | <param name="proj4String"></param> |
||
1158 | </member> |
||
1159 | <member name="M:DotSpatial.Projections.ProjectionInfo.ReadEPSGCode(System.Int32)"> |
||
1160 | <summary> |
||
1161 | Using the specified code, this will attempt to look up the related reference information |
||
1162 | from the appropriate pcs code. |
||
1163 | </summary> |
||
1164 | <param name="code"></param> |
||
1165 | </member> |
||
1166 | <member name="M:DotSpatial.Projections.ProjectionInfo.ReadEsriString(System.String)"> |
||
1167 | <summary> |
||
1168 | Parses the entire projection from an esri string. In some cases, this will have |
||
1169 | default projection information since only geographic information is obtained. |
||
1170 | </summary> |
||
1171 | <param name="esriString">The ESRI string to parse</param> |
||
1172 | </member> |
||
1173 | <member name="P:DotSpatial.Projections.ProjectionInfo.AuxiliarySphereType"> |
||
1174 | <summary> |
||
1175 | Gets or sets the auxiliary sphere type. |
||
1176 | </summary> |
||
1177 | </member> |
||
1178 | <member name="P:DotSpatial.Projections.ProjectionInfo.EpsgCode"> |
||
1179 | <summary> |
||
1180 | Gets or sets the Reference Code |
||
1181 | </summary> |
||
1182 | </member> |
||
1183 | <member name="P:DotSpatial.Projections.ProjectionInfo.Authority"> |
||
1184 | <summary> |
||
1185 | Gets or sets the athority, for example EPSG |
||
1186 | </summary> |
||
1187 | </member> |
||
1188 | <member name="P:DotSpatial.Projections.ProjectionInfo.Name"> |
||
1189 | <summary> |
||
1190 | Gets or sets the name of this projection information |
||
1191 | </summary> |
||
1192 | </member> |
||
1193 | <member name="P:DotSpatial.Projections.ProjectionInfo.GeographicInfo"> |
||
1194 | <summary> |
||
1195 | The geographic information |
||
1196 | </summary> |
||
1197 | </member> |
||
1198 | <member name="P:DotSpatial.Projections.ProjectionInfo.FalseEasting"> |
||
1199 | <summary> |
||
1200 | The false easting for this coordinate system |
||
1201 | </summary> |
||
1202 | </member> |
||
1203 | <member name="P:DotSpatial.Projections.ProjectionInfo.FalseNorthing"> |
||
1204 | <summary> |
||
1205 | The false northing for this coordinate system |
||
1206 | </summary> |
||
1207 | </member> |
||
1208 | <member name="P:DotSpatial.Projections.ProjectionInfo.CentralMeridian"> |
||
1209 | <summary> |
||
1210 | The horizontal 0 point in geographic terms |
||
1211 | </summary> |
||
1212 | </member> |
||
1213 | <member name="P:DotSpatial.Projections.ProjectionInfo.ScaleFactor"> |
||
1214 | <summary> |
||
1215 | The scale factor for this coordinate system |
||
1216 | </summary> |
||
1217 | </member> |
||
1218 | <member name="P:DotSpatial.Projections.ProjectionInfo.LatitudeOfOrigin"> |
||
1219 | <summary> |
||
1220 | The zero point in geographic terms |
||
1221 | </summary> |
||
1222 | </member> |
||
1223 | <member name="P:DotSpatial.Projections.ProjectionInfo.StandardParallel1"> |
||
1224 | <summary> |
||
1225 | The line of latitude where the scale information is preserved. |
||
1226 | </summary> |
||
1227 | </member> |
||
1228 | <member name="P:DotSpatial.Projections.ProjectionInfo.StandardParallel2"> |
||
1229 | <summary> |
||
1230 | |||
1231 | </summary> |
||
1232 | </member> |
||
1233 | <member name="P:DotSpatial.Projections.ProjectionInfo.Unit"> |
||
1234 | <summary> |
||
1235 | The unit being used for measurements. |
||
1236 | </summary> |
||
1237 | </member> |
||
1238 | <member name="P:DotSpatial.Projections.ProjectionInfo.IsSouth"> |
||
1239 | <summary> |
||
1240 | Gets or sets a boolean indicating whether this projection applies to the |
||
1241 | southern coordinate system or not. |
||
1242 | </summary> |
||
1243 | </member> |
||
1244 | <member name="P:DotSpatial.Projections.ProjectionInfo.Zone"> |
||
1245 | <summary> |
||
1246 | Gets or sets the integer zone parameter if it is specified. |
||
1247 | </summary> |
||
1248 | </member> |
||
1249 | <member name="P:DotSpatial.Projections.ProjectionInfo.IsGeocentric"> |
||
1250 | <summary> |
||
1251 | Gets or sets a boolean that indicates whether or not this |
||
1252 | projection is geocentric. |
||
1253 | </summary> |
||
1254 | </member> |
||
1255 | <member name="P:DotSpatial.Projections.ProjectionInfo.IsLatLon"> |
||
1256 | <summary> |
||
1257 | True if this coordinate system is expressed only using geographic coordinates |
||
1258 | </summary> |
||
1259 | </member> |
||
1260 | <member name="P:DotSpatial.Projections.ProjectionInfo.Transform"> |
||
1261 | <summary> |
||
1262 | Gets or sets the transform that converts between geodetic coordinates and projected coordinates. |
||
1263 | </summary> |
||
1264 | </member> |
||
1265 | <member name="P:DotSpatial.Projections.ProjectionInfo.Geoc"> |
||
1266 | <summary> |
||
1267 | Gets or sets a boolean indicating a geocentric latitude parameter |
||
1268 | </summary> |
||
1269 | </member> |
||
1270 | <member name="P:DotSpatial.Projections.ProjectionInfo.Over"> |
||
1271 | <summary> |
||
1272 | Gets or sets a boolean for the over-ranging flag |
||
1273 | </summary> |
||
1274 | </member> |
||
1275 | <member name="P:DotSpatial.Projections.ProjectionInfo.Parameters"> |
||
1276 | <summary> |
||
1277 | Gets or sets the parameters, including special parameters, stored by |
||
1278 | the string names. |
||
1279 | </summary> |
||
1280 | </member> |
||
1281 | <member name="P:DotSpatial.Projections.ProjectionInfo.NoDefs"> |
||
1282 | <summary> |
||
1283 | A boolean that indicates whether the proj4 parameter "nodefs" appears. |
||
1284 | </summary> |
||
1285 | </member> |
||
1286 | <member name="T:DotSpatial.Projections.ProjectedCategories.NationalGridsJapan"> |
||
1287 | <summary> |
||
1288 | NationalGridsJapan |
||
1289 | </summary> |
||
1290 | </member> |
||
1291 | <member name="M:DotSpatial.Projections.ProjectedCategories.NationalGridsJapan.#ctor"> |
||
1292 | <summary> |
||
1293 | Creates a new instance of NationalGridsJapan |
||
1294 | </summary> |
||
1295 | </member> |
||
1296 | <member name="T:DotSpatial.Projections.Meridian"> |
||
1297 | <summary> |
||
1298 | Meridian |
||
1299 | </summary> |
||
1300 | </member> |
||
1301 | <member name="M:DotSpatial.Projections.Meridian.#ctor"> |
||
1302 | <summary> |
||
1303 | Creates a new instance of Meridian |
||
1304 | </summary> |
||
1305 | </member> |
||
1306 | <member name="M:DotSpatial.Projections.Meridian.#ctor(System.Double,System.String)"> |
||
1307 | <summary> |
||
1308 | Generates a custom meridian given a name and a longitude |
||
1309 | </summary> |
||
1310 | <param name="longitude">The longitude to use</param> |
||
1311 | <param name="name">The string name for this meridian</param> |
||
1312 | </member> |
||
1313 | <member name="M:DotSpatial.Projections.Meridian.#ctor(DotSpatial.Projections.Proj4Meridian)"> |
||
1314 | <summary> |
||
1315 | Creates a new meridian from one of the known, proj4 meridian locations. |
||
1316 | Presumably the longitudes here correspond to various standard meridians |
||
1317 | rather than some arbitrary longitudes of capital cities. |
||
1318 | </summary> |
||
1319 | <param name="standardMeridian">One of the enumerations listed</param> |
||
1320 | </member> |
||
1321 | <member name="M:DotSpatial.Projections.Meridian.#ctor(System.String)"> |
||
1322 | <summary> |
||
1323 | Creates a new meridian from one of the known, proj4 meridian locations. |
||
1324 | </summary> |
||
1325 | <param name="standardMeridianName">The string name of the meridian to use</param> |
||
1326 | </member> |
||
1327 | <member name="M:DotSpatial.Projections.Meridian.ReadCode(System.Int32)"> |
||
1328 | <summary> |
||
1329 | Reads the integer code (possibly only an internal GDAL code) for the Meridian. |
||
1330 | The value can be from 8901 (Greenwich) to 8913 (Oslo). This will also alter |
||
1331 | the name and longitude for this meridian. |
||
1332 | </summary> |
||
1333 | <param name="code">The integer meridian code.</param> |
||
1334 | </member> |
||
1335 | <member name="M:DotSpatial.Projections.Meridian.AssignMeridian(DotSpatial.Projections.Proj4Meridian)"> |
||
1336 | <summary> |
||
1337 | Changes the longitude to correspond with the specified standard meridian |
||
1338 | </summary> |
||
1339 | <param name="standardMeridian"></param> |
||
1340 | </member> |
||
1341 | <member name="M:DotSpatial.Projections.Meridian.ReadProj4Parameters(System.Collections.Generic.Dictionary{System.String,System.String})"> |
||
1342 | <summary> |
||
1343 | Attempts to parse the parameters in order to read the meridian |
||
1344 | </summary> |
||
1345 | <param name="parameters"></param> |
||
1346 | </member> |
||
1347 | <member name="M:DotSpatial.Projections.Meridian.ToEsriString"> |
||
1348 | <summary> |
||
1349 | Writes the longitude and prime meridian content to the esri string |
||
1350 | </summary> |
||
1351 | <returns>A string that is formatted for an esri prj file</returns> |
||
1352 | </member> |
||
1353 | <member name="M:DotSpatial.Projections.Meridian.ReadEsriString(System.String)"> |
||
1354 | <summary> |
||
1355 | Reads content from an esri string, learning information about the prime meridian |
||
1356 | </summary> |
||
1357 | <param name="esriString"></param> |
||
1358 | </member> |
||
1359 | <member name="P:DotSpatial.Projections.Meridian.Code"> |
||
1360 | <summary> |
||
1361 | Gets or sets the code. Setting this will not impact the longitude or name. |
||
1362 | In order to read a standard code (8901-8913) use the ReadCode method. |
||
1363 | </summary> |
||
1364 | </member> |
||
1365 | <member name="P:DotSpatial.Projections.Meridian.Name"> |
||
1366 | <summary> |
||
1367 | Gets or sets the string name |
||
1368 | </summary> |
||
1369 | </member> |
||
1370 | <member name="P:DotSpatial.Projections.Meridian.Longitude"> |
||
1371 | <summary> |
||
1372 | Gets or sets the longitude where the prime meridian for this geographic coordinate occurs. |
||
1373 | </summary> |
||
1374 | </member> |
||
1375 | <member name="T:DotSpatial.Projections.GeographicCategories.Australia"> |
||
1376 | <summary> |
||
1377 | Australia |
||
1378 | </summary> |
||
1379 | </member> |
||
1380 | <member name="M:DotSpatial.Projections.GeographicCategories.Australia.#ctor"> |
||
1381 | <summary> |
||
1382 | Creates a new instance of Australia |
||
1383 | </summary> |
||
1384 | </member> |
||
1385 | <member name="T:DotSpatial.Projections.GeocentricGeodetic"> |
||
1386 | <summary> |
||
1387 | Wenzel, H.-G.(1985): Hochauflösende Kugelfunktionsmodelle für |
||
1388 | das Gravitationspotential der Erde. Wiss. Arb. Univ. Hannover |
||
1389 | Nr. 137, p. 130-131. |
||
1390 | </summary> |
||
1391 | </member> |
||
1392 | <member name="M:DotSpatial.Projections.GeocentricGeodetic.#ctor(DotSpatial.Projections.Spheroid)"> |
||
1393 | <summary> |
||
1394 | Creates a new instance of GeocentricGeodetic |
||
1395 | </summary> |
||
1396 | </member> |
||
1397 | <member name="M:DotSpatial.Projections.GeocentricGeodetic.GeodeticToGeocentric(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1398 | <summary> |
||
1399 | Converts lon, lat, height to x, y, z where lon and lat are in radians and everything else is meters |
||
1400 | </summary> |
||
1401 | <param name="xy"></param> |
||
1402 | <param name="z"></param> |
||
1403 | <param name="startIndex"></param> |
||
1404 | <param name="numPoints"></param> |
||
1405 | </member> |
||
1406 | <member name="M:DotSpatial.Projections.GeocentricGeodetic.GeocentricToGeodetic(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1407 | <summary> |
||
1408 | Converts x, y, z to lon, lat, height |
||
1409 | </summary> |
||
1410 | <param name="xy"></param> |
||
1411 | <param name="z"></param> |
||
1412 | <param name="startIndex"></param> |
||
1413 | <param name="numPoints"></param> |
||
1414 | </member> |
||
1415 | <member name="M:DotSpatial.Projections.GeocentricGeodetic.GeocentricToGeodetic(System.Double@,System.Double@,System.Double@)"> |
||
1416 | <summary> |
||
1417 | Converts geocentric x, y, z coords to geodetic lon, lat, h |
||
1418 | </summary> |
||
1419 | </member> |
||
1420 | <member name="M:DotSpatial.Projections.GeocentricGeodetic.GeocentricToGeodeticOld(System.Double@,System.Double@,System.Double@)"> |
||
1421 | <summary> |
||
1422 | Converts geocentric x, y, z coords to geodetic lon, lat, h |
||
1423 | </summary> |
||
1424 | </member> |
||
1425 | <member name="T:DotSpatial.Projections.Wagner5"> |
||
1426 | <summary> |
||
1427 | Wagner5 |
||
1428 | </summary> |
||
1429 | </member> |
||
1430 | <member name="T:DotSpatial.Projections.Mollweide"> |
||
1431 | <summary> |
||
1432 | Mollweide also acts as the base for Wag4 and Wag5 |
||
1433 | </summary> |
||
1434 | </member> |
||
1435 | <member name="M:DotSpatial.Projections.Mollweide.#ctor"> |
||
1436 | <summary> |
||
1437 | Creates a new instance of Mollweide |
||
1438 | </summary> |
||
1439 | </member> |
||
1440 | <member name="M:DotSpatial.Projections.Mollweide.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1441 | <inheritdoc /> |
||
1442 | </member> |
||
1443 | <member name="M:DotSpatial.Projections.Mollweide.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1444 | <inheritdoc /> |
||
1445 | </member> |
||
1446 | <member name="M:DotSpatial.Projections.Mollweide.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
1447 | <summary> |
||
1448 | Initializes the transform using the parameters from the specified coordinate system information |
||
1449 | </summary> |
||
1450 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
1451 | </member> |
||
1452 | <member name="M:DotSpatial.Projections.Mollweide.Setup(System.Double)"> |
||
1453 | <summary> |
||
1454 | Finalizes the setup based on the provided P paraemter |
||
1455 | </summary> |
||
1456 | <param name="p"></param> |
||
1457 | </member> |
||
1458 | <member name="P:DotSpatial.Projections.Mollweide.Cx"> |
||
1459 | <summary> |
||
1460 | Gets or sets the x coefficient |
||
1461 | </summary> |
||
1462 | </member> |
||
1463 | <member name="P:DotSpatial.Projections.Mollweide.Cy"> |
||
1464 | <summary> |
||
1465 | Gets or sets the y coefficient value |
||
1466 | </summary> |
||
1467 | </member> |
||
1468 | <member name="P:DotSpatial.Projections.Mollweide.Cp"> |
||
1469 | <summary> |
||
1470 | Gets or sets the P coefficient |
||
1471 | </summary> |
||
1472 | </member> |
||
1473 | <member name="M:DotSpatial.Projections.Wagner5.#ctor"> |
||
1474 | <summary> |
||
1475 | Creates a new instance of Wagner5 |
||
1476 | </summary> |
||
1477 | </member> |
||
1478 | <member name="M:DotSpatial.Projections.Wagner5.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
1479 | <summary> |
||
1480 | Initializes the transform using the parameters from the specified coordinate system information |
||
1481 | </summary> |
||
1482 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
1483 | </member> |
||
1484 | <member name="T:DotSpatial.Projections.NewZealandMapGrid"> |
||
1485 | <summary> |
||
1486 | NewZealandMapGrid |
||
1487 | </summary> |
||
1488 | </member> |
||
1489 | <member name="M:DotSpatial.Projections.NewZealandMapGrid.#ctor"> |
||
1490 | <summary> |
||
1491 | Creates a new instance of NewZealandMapGrid |
||
1492 | </summary> |
||
1493 | </member> |
||
1494 | <member name="M:DotSpatial.Projections.NewZealandMapGrid.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
1495 | <summary> |
||
1496 | Initializes the transform using the parameters from the specified coordinate system information |
||
1497 | </summary> |
||
1498 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
1499 | </member> |
||
1500 | <member name="M:DotSpatial.Projections.NewZealandMapGrid.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1501 | <inheritdoc /> |
||
1502 | </member> |
||
1503 | <member name="M:DotSpatial.Projections.NewZealandMapGrid.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1504 | <inheritdoc /> |
||
1505 | </member> |
||
1506 | <member name="T:DotSpatial.Projections.MillerCylindrical"> |
||
1507 | <summary> |
||
1508 | MillerCylindrical |
||
1509 | </summary> |
||
1510 | </member> |
||
1511 | <member name="M:DotSpatial.Projections.MillerCylindrical.#ctor"> |
||
1512 | <summary> |
||
1513 | Creates a new instance of MillerCylindrical |
||
1514 | </summary> |
||
1515 | </member> |
||
1516 | <member name="M:DotSpatial.Projections.MillerCylindrical.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1517 | <inheritdoc /> |
||
1518 | </member> |
||
1519 | <member name="M:DotSpatial.Projections.MillerCylindrical.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1520 | <inheritdoc /> |
||
1521 | </member> |
||
1522 | <member name="T:DotSpatial.Projections.LongLat"> |
||
1523 | <summary> |
||
1524 | LongLat |
||
1525 | </summary> |
||
1526 | </member> |
||
1527 | <member name="M:DotSpatial.Projections.LongLat.#ctor"> |
||
1528 | <summary> |
||
1529 | Creates a new instance of LongLat |
||
1530 | </summary> |
||
1531 | </member> |
||
1532 | <member name="M:DotSpatial.Projections.LongLat.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1533 | <inheritdoc /> |
||
1534 | </member> |
||
1535 | <member name="M:DotSpatial.Projections.LongLat.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1536 | <inheritdoc /> |
||
1537 | </member> |
||
1538 | <member name="M:DotSpatial.Projections.LongLat.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
1539 | <summary> |
||
1540 | Initializes the transform using the parameters from the specified coordinate system information |
||
1541 | </summary> |
||
1542 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
1543 | </member> |
||
1544 | <member name="T:DotSpatial.Projections.LambertAzimuthalEqualArea"> |
||
1545 | <summary> |
||
1546 | LambertAzimuthalEqualArea |
||
1547 | </summary> |
||
1548 | </member> |
||
1549 | <member name="M:DotSpatial.Projections.LambertAzimuthalEqualArea.#ctor"> |
||
1550 | <summary> |
||
1551 | Creates a new instance of LambertAzimuthalEqualArea |
||
1552 | </summary> |
||
1553 | </member> |
||
1554 | <member name="M:DotSpatial.Projections.LambertAzimuthalEqualArea.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1555 | <inheritdoc /> |
||
1556 | </member> |
||
1557 | <member name="M:DotSpatial.Projections.LambertAzimuthalEqualArea.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1558 | <inheritdoc /> |
||
1559 | </member> |
||
1560 | <member name="M:DotSpatial.Projections.LambertAzimuthalEqualArea.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1561 | <inheritdoc /> |
||
1562 | </member> |
||
1563 | <member name="M:DotSpatial.Projections.LambertAzimuthalEqualArea.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1564 | <inheritdoc /> |
||
1565 | </member> |
||
1566 | <member name="M:DotSpatial.Projections.LambertAzimuthalEqualArea.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
1567 | <summary> |
||
1568 | Initializes the transform using the parameters from the specified coordinate system information |
||
1569 | </summary> |
||
1570 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
1571 | </member> |
||
1572 | <member name="T:DotSpatial.Projections.ProjectedSystems"> |
||
1573 | <summary> |
||
1574 | Projected |
||
1575 | </summary> |
||
1576 | </member> |
||
1577 | <member name="M:DotSpatial.Projections.ProjectedSystems.#ctor"> |
||
1578 | <summary> |
||
1579 | Creates a new instance of Projected |
||
1580 | </summary> |
||
1581 | </member> |
||
1582 | <member name="M:DotSpatial.Projections.ProjectedSystems.GetCategory(System.String)"> |
||
1583 | <summary> |
||
1584 | Given the string name, this will return the specified coordinate category |
||
1585 | </summary> |
||
1586 | <param name="name"></param> |
||
1587 | <returns></returns> |
||
1588 | </member> |
||
1589 | <member name="P:DotSpatial.Projections.ProjectedSystems.Names"> |
||
1590 | <summary> |
||
1591 | Gets an array of all the names of the coordinate system categories |
||
1592 | in this collection of systems. |
||
1593 | </summary> |
||
1594 | </member> |
||
1595 | <member name="T:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1983Harn"> |
||
1596 | <summary> |
||
1597 | StatePlaneNad1983Harn |
||
1598 | </summary> |
||
1599 | </member> |
||
1600 | <member name="M:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1983Harn.#ctor"> |
||
1601 | <summary> |
||
1602 | Creates a new instance of StatePlaneNad1983Harn |
||
1603 | </summary> |
||
1604 | </member> |
||
1605 | <member name="T:DotSpatial.Projections.ProjectedCategories.NationalGridsSweden"> |
||
1606 | <summary> |
||
1607 | NationalGridsSweden |
||
1608 | </summary> |
||
1609 | </member> |
||
1610 | <member name="M:DotSpatial.Projections.ProjectedCategories.NationalGridsSweden.#ctor"> |
||
1611 | <summary> |
||
1612 | Creates a new instance of NationalGridsSweden |
||
1613 | </summary> |
||
1614 | </member> |
||
1615 | <member name="T:DotSpatial.Projections.IReproject"> |
||
1616 | <summary> |
||
1617 | This interface defines how reprojection classes should be accessed |
||
1618 | </summary> |
||
1619 | </member> |
||
1620 | <member name="M:DotSpatial.Projections.IReproject.ReprojectPoints(System.Double[][],DotSpatial.Projections.ProjectionInfo,DotSpatial.Projections.ProjectionInfo,System.Int32,System.Int32)"> |
||
1621 | <summary> |
||
1622 | Reprojects the specified points. The first is the projection info to start from, while the destination |
||
1623 | is the projection to end with. |
||
1624 | </summary> |
||
1625 | <param name="points"></param> |
||
1626 | <param name="source"></param> |
||
1627 | <param name="dest"></param> |
||
1628 | <param name="startIndex"></param> |
||
1629 | <param name="numPoints"></param> |
||
1630 | <returns></returns> |
||
1631 | </member> |
||
1632 | <member name="T:DotSpatial.Projections.AngularUnit"> |
||
1633 | <summary> |
||
1634 | Unit |
||
1635 | </summary> |
||
1636 | </member> |
||
1637 | <member name="M:DotSpatial.Projections.AngularUnit.#ctor"> |
||
1638 | <summary> |
||
1639 | Creates a new instance of Unit |
||
1640 | </summary> |
||
1641 | </member> |
||
1642 | <member name="M:DotSpatial.Projections.AngularUnit.ToEsriString"> |
||
1643 | <summary> |
||
1644 | Generates the Esri string from the values in this class |
||
1645 | </summary> |
||
1646 | <returns>The resulting esri string</returns> |
||
1647 | </member> |
||
1648 | <member name="M:DotSpatial.Projections.AngularUnit.ReadEsriString(System.String)"> |
||
1649 | <summary> |
||
1650 | Reads an esri string to determine the angular unit |
||
1651 | </summary> |
||
1652 | <param name="esriString">The esri string to read</param> |
||
1653 | </member> |
||
1654 | <member name="P:DotSpatial.Projections.AngularUnit.Name"> |
||
1655 | <summary> |
||
1656 | Gets or sets the name of this |
||
1657 | </summary> |
||
1658 | </member> |
||
1659 | <member name="P:DotSpatial.Projections.AngularUnit.Radians"> |
||
1660 | <summary> |
||
1661 | Gets or sets the constant to multiply against this unit to get radians. |
||
1662 | </summary> |
||
1663 | </member> |
||
1664 | <member name="T:DotSpatial.Projections.Wagner4"> |
||
1665 | <summary> |
||
1666 | Wagner4 |
||
1667 | </summary> |
||
1668 | </member> |
||
1669 | <member name="M:DotSpatial.Projections.Wagner4.#ctor"> |
||
1670 | <summary> |
||
1671 | Creates a new instance of Wagner4 |
||
1672 | </summary> |
||
1673 | </member> |
||
1674 | <member name="M:DotSpatial.Projections.Wagner4.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
1675 | <summary> |
||
1676 | Initializes the transform using the parameters from the specified coordinate system information |
||
1677 | </summary> |
||
1678 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
1679 | </member> |
||
1680 | <member name="T:DotSpatial.Projections.SwissObliqueMercator"> |
||
1681 | <summary> |
||
1682 | SwissObliqueMercator |
||
1683 | </summary> |
||
1684 | </member> |
||
1685 | <member name="M:DotSpatial.Projections.SwissObliqueMercator.#ctor"> |
||
1686 | <summary> |
||
1687 | Creates a new instance of SwissObliqueMercator |
||
1688 | </summary> |
||
1689 | </member> |
||
1690 | <member name="M:DotSpatial.Projections.SwissObliqueMercator.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
1691 | <summary> |
||
1692 | Initializes the transform using the parameters from the specified coordinate system information |
||
1693 | </summary> |
||
1694 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
1695 | </member> |
||
1696 | <member name="M:DotSpatial.Projections.SwissObliqueMercator.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1697 | <inheritdoc /> |
||
1698 | </member> |
||
1699 | <member name="M:DotSpatial.Projections.SwissObliqueMercator.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1700 | <inheritdoc /> |
||
1701 | </member> |
||
1702 | <member name="T:DotSpatial.Projections.Cassini"> |
||
1703 | <summary> |
||
1704 | Cassini |
||
1705 | </summary> |
||
1706 | </member> |
||
1707 | <member name="M:DotSpatial.Projections.Cassini.#ctor"> |
||
1708 | <summary> |
||
1709 | Creates a new instance of Cassini |
||
1710 | </summary> |
||
1711 | </member> |
||
1712 | <member name="M:DotSpatial.Projections.Cassini.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1713 | <inheritdoc /> |
||
1714 | </member> |
||
1715 | <member name="M:DotSpatial.Projections.Cassini.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1716 | <inheritdoc /> |
||
1717 | </member> |
||
1718 | <member name="M:DotSpatial.Projections.Cassini.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1719 | <inheritdoc /> |
||
1720 | </member> |
||
1721 | <member name="M:DotSpatial.Projections.Cassini.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
1722 | <inheritdoc /> |
||
1723 | </member> |
||
1724 | <member name="M:DotSpatial.Projections.Cassini.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
1725 | <summary> |
||
1726 | Initializes the transform using the parameters from the specified coordinate system information |
||
1727 | </summary> |
||
1728 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
1729 | </member> |
||
1730 | <member name="T:DotSpatial.Projections.Spheroid"> |
||
1731 | <summary> |
||
1732 | Spheroid (Defaults to WGS84) |
||
1733 | </summary> |
||
1734 | </member> |
||
1735 | <member name="M:DotSpatial.Projections.Spheroid.#ctor"> |
||
1736 | <summary> |
||
1737 | Creates a new instance of Spheroid |
||
1738 | </summary> |
||
1739 | </member> |
||
1740 | <member name="M:DotSpatial.Projections.Spheroid.#ctor(System.Double,System.Double)"> |
||
1741 | <summary> |
||
1742 | Creates a new spheroid using an the equatorial radius in meters and |
||
1743 | a flattening coefficient that is the inverse flattening factor. |
||
1744 | eg. for WGS84 (6378137.0, 298.257223563) |
||
1745 | </summary> |
||
1746 | <param name="equatorialRadius">The semi-major axis</param> |
||
1747 | <param name="inverseFlattening">The inverse of the flattening factor</param> |
||
1748 | </member> |
||
1749 | <member name="M:DotSpatial.Projections.Spheroid.#ctor(System.Double)"> |
||
1750 | <summary> |
||
1751 | For perfect spheres, you just need to specify one radius, which will be |
||
1752 | applied to both radii. You can then directly change the polar or |
||
1753 | equatorial radius if necessary using the properties. |
||
1754 | </summary> |
||
1755 | <param name="radius">The radius of the sphere</param> |
||
1756 | </member> |
||
1757 | <member name="M:DotSpatial.Projections.Spheroid.#ctor(DotSpatial.Projections.Proj4Ellipsoid)"> |
||
1758 | <summary> |
||
1759 | The ellps parameter in a proj4 string will only work with certain |
||
1760 | pre-defined spheroids, enumerated in the Proj4Ellipsoids enumeration. |
||
1761 | Custom spheroids can be specified but will use the a and b parameters |
||
1762 | when creating a proj4 parameter instead of using the ellps parameter. |
||
1763 | </summary> |
||
1764 | <param name="knownEllipse">Any of several predefined geographic ellipses</param> |
||
1765 | </member> |
||
1766 | <member name="M:DotSpatial.Projections.Spheroid.#ctor(System.String)"> |
||
1767 | <summary> |
||
1768 | Given the proj4 code, this will set the radii correctly. |
||
1769 | </summary> |
||
1770 | <param name="proj4Ellips"></param> |
||
1771 | </member> |
||
1772 | <member name="M:DotSpatial.Projections.Spheroid.ReadSedrisCode(System.String)"> |
||
1773 | <summary> |
||
1774 | Assigns a known projection that is defined by a two character SEDRIS code, |
||
1775 | using nothing but that code. |
||
1776 | </summary> |
||
1777 | <param name="code">The two character SEDRIS code defining 22 distinct ellipsoids.</param> |
||
1778 | </member> |
||
1779 | <member name="M:DotSpatial.Projections.Spheroid.AssignKnownEllipsoid(DotSpatial.Projections.Proj4Ellipsoid)"> |
||
1780 | <summary> |
||
1781 | Given the enumeration of known ellipsoids, this will redefine this spheroid |
||
1782 | so that it matches the A and B coefficients for the known ellipsoids. |
||
1783 | </summary> |
||
1784 | <param name="knownEllipse">The known Ellipse</param> |
||
1785 | </member> |
||
1786 | <member name="M:DotSpatial.Projections.Spheroid.FlatteningFactor"> |
||
1787 | <summary> |
||
1788 | Calculates the flattening factor, (a - b) / a. |
||
1789 | </summary> |
||
1790 | <returns></returns> |
||
1791 | </member> |
||
1792 | <member name="M:DotSpatial.Projections.Spheroid.GetProj4String"> |
||
1793 | <summary> |
||
1794 | Uses the current known ellipsoid to return a code name for the proj4 string if possible. |
||
1795 | Otherwise, this returns the radial parameters a and b. |
||
1796 | </summary> |
||
1797 | <returns></returns> |
||
1798 | </member> |
||
1799 | <member name="M:DotSpatial.Projections.Spheroid.Eccentricity"> |
||
1800 | <summary> |
||
1801 | Calculates the eccentrity according to e = sqrt(2f - f^2) where f is the flattening factor. |
||
1802 | </summary> |
||
1803 | <returns></returns> |
||
1804 | </member> |
||
1805 | <member name="M:DotSpatial.Projections.Spheroid.EccentricitySquared"> |
||
1806 | <summary> |
||
1807 | Calculates the square of eccentricity according to es = (2f - f^2) where f is the flattening factor. |
||
1808 | </summary> |
||
1809 | <returns></returns> |
||
1810 | </member> |
||
1811 | <member name="M:DotSpatial.Projections.Spheroid.GetInverseFlattening"> |
||
1812 | <summary> |
||
1813 | Calculates the inverse of the flattening factor, commonly saved to ESRI projections, |
||
1814 | or else provided as the "rf" parameter for Proj4 strings. This is simply calculated |
||
1815 | as a / (a - b) where a is the semi-major axis and b is the semi-minor axis. |
||
1816 | </summary> |
||
1817 | <returns></returns> |
||
1818 | </member> |
||
1819 | <member name="M:DotSpatial.Projections.Spheroid.IsOblate"> |
||
1820 | <summary> |
||
1821 | Gets a boolean that is true if the spheroid has been flattened. |
||
1822 | </summary> |
||
1823 | <returns>Boolean, true if the spheroid is oblate (or flattened)</returns> |
||
1824 | </member> |
||
1825 | <member name="M:DotSpatial.Projections.Spheroid.SetInverseFlattening(System.Double)"> |
||
1826 | <summary> |
||
1827 | Sets the value by using the current semi-major axis (Equatorial Radius) in order to |
||
1828 | calculate the semi-minor axis (Polar Radius). |
||
1829 | </summary> |
||
1830 | </member> |
||
1831 | <member name="M:DotSpatial.Projections.Spheroid.ToEsriString"> |
||
1832 | <summary> |
||
1833 | Converts the spheroid parameters into a valid esri expression that uses the semi-major axis |
||
1834 | and the reciprocal flattening factor |
||
1835 | </summary> |
||
1836 | <returns></returns> |
||
1837 | </member> |
||
1838 | <member name="M:DotSpatial.Projections.Spheroid.ReadEsriString(System.String)"> |
||
1839 | <summary> |
||
1840 | Reads the ESRI string to define the spheroid, which controls how flattened the earth's radius is |
||
1841 | </summary> |
||
1842 | <param name="esriString"></param> |
||
1843 | </member> |
||
1844 | <member name="P:DotSpatial.Projections.Spheroid.Code"> |
||
1845 | <summary> |
||
1846 | Gets or sets the two character Synthetic Environment Data |
||
1847 | Representation and Interchange Specification (SEDRIS) code |
||
1848 | eg. AA represents Airy 1830. Setting this will not modify the values, |
||
1849 | To read a SEDRIS Code use the constructor or AssignKnownEllipsoid overload. |
||
1850 | </summary> |
||
1851 | </member> |
||
1852 | <member name="P:DotSpatial.Projections.Spheroid.Proj4Names"> |
||
1853 | <summary> |
||
1854 | Each of the enumerated known ellipsoids is encoded by an ellps parameter specified by |
||
1855 | the corresponding string value. Ellipsoids that are not found here or are specified |
||
1856 | as "Custom" in the enuemration will be replaced with an 'a' and a 'b' parameter instead. |
||
1857 | </summary> |
||
1858 | </member> |
||
1859 | <member name="P:DotSpatial.Projections.Spheroid.Name"> |
||
1860 | <summary> |
||
1861 | Gets or sets the string name of the spheroid. |
||
1862 | e.g.: WGS_1984 |
||
1863 | </summary> |
||
1864 | </member> |
||
1865 | <member name="P:DotSpatial.Projections.Spheroid.EquatorialRadius"> |
||
1866 | <summary> |
||
1867 | A spheroid is a pole flattened (oblate) sphere, with the radii of two axes being equal and longer |
||
1868 | than the third. This is the radial measure of one of these major axes in meters. |
||
1869 | e.g. 6,378,137 for WGS 84 |
||
1870 | </summary> |
||
1871 | </member> |
||
1872 | <member name="P:DotSpatial.Projections.Spheroid.PolarRadius"> |
||
1873 | <summary> |
||
1874 | A spheroid is a pole flattened (oblate) sphere, with the radii of two axes being equal and longer |
||
1875 | than the third. This is the radial measure of the smaller polar axis in meters. One option is |
||
1876 | to specify this directly, but it can also be calculated using the major axis and the flattening factor. |
||
1877 | </summary> |
||
1878 | </member> |
||
1879 | <member name="P:DotSpatial.Projections.Spheroid.KnownEllipsoid"> |
||
1880 | <summary> |
||
1881 | |||
1882 | </summary> |
||
1883 | </member> |
||
1884 | <member name="T:DotSpatial.Projections.ProjectedCategories.WorldSpheroid"> |
||
1885 | <summary> |
||
1886 | WorldSpheroid |
||
1887 | </summary> |
||
1888 | </member> |
||
1889 | <member name="M:DotSpatial.Projections.ProjectedCategories.WorldSpheroid.#ctor"> |
||
1890 | <summary> |
||
1891 | Creates a new instance of WorldSpheroid |
||
1892 | </summary> |
||
1893 | </member> |
||
1894 | <member name="T:DotSpatial.Projections.ProjectedCategories.UtmNad1983"> |
||
1895 | <summary> |
||
1896 | UtmNad1983 |
||
1897 | </summary> |
||
1898 | </member> |
||
1899 | <member name="M:DotSpatial.Projections.ProjectedCategories.UtmNad1983.#ctor"> |
||
1900 | <summary> |
||
1901 | Creates a new instance of UtmNad1983 |
||
1902 | </summary> |
||
1903 | </member> |
||
1904 | <member name="T:DotSpatial.Projections.ProjectedCategories.NationalGridsIndia"> |
||
1905 | <summary> |
||
1906 | IndianSubcontinent |
||
1907 | </summary> |
||
1908 | </member> |
||
1909 | <member name="M:DotSpatial.Projections.ProjectedCategories.NationalGridsIndia.#ctor"> |
||
1910 | <summary> |
||
1911 | Creates a new instance of IndianSubcontinent |
||
1912 | </summary> |
||
1913 | </member> |
||
1914 | <member name="T:DotSpatial.Projections.ProjectedCategories.GaussKrugerPulkovo1942"> |
||
1915 | <summary> |
||
1916 | GaussKrugerPulkovo1942 |
||
1917 | </summary> |
||
1918 | </member> |
||
1919 | <member name="M:DotSpatial.Projections.ProjectedCategories.GaussKrugerPulkovo1942.#ctor"> |
||
1920 | <summary> |
||
1921 | Creates a new instance of GaussKrugerPulkovo1942 |
||
1922 | </summary> |
||
1923 | </member> |
||
1924 | <member name="T:DotSpatial.Projections.PhiLam"> |
||
1925 | <summary> |
||
1926 | PhiLam has two double values and is used like a coordinate. |
||
1927 | </summary> |
||
1928 | </member> |
||
1929 | <member name="F:DotSpatial.Projections.PhiLam.Phi"> |
||
1930 | <summary> |
||
1931 | Geodetic Phi coordinate (latitude) |
||
1932 | </summary> |
||
1933 | </member> |
||
1934 | <member name="F:DotSpatial.Projections.PhiLam.Lambda"> |
||
1935 | <summary> |
||
1936 | Geodetic Lambda coordinate (longitude) |
||
1937 | </summary> |
||
1938 | </member> |
||
1939 | <member name="T:DotSpatial.Projections.LinearUnit"> |
||
1940 | <summary> |
||
1941 | Unit |
||
1942 | </summary> |
||
1943 | </member> |
||
1944 | <member name="M:DotSpatial.Projections.LinearUnit.#ctor"> |
||
1945 | <summary> |
||
1946 | Creates a new instance of Unit |
||
1947 | </summary> |
||
1948 | </member> |
||
1949 | <member name="M:DotSpatial.Projections.LinearUnit.ToEsriString"> |
||
1950 | <summary> |
||
1951 | Generates the part of the ESRI well known text for this linear unit |
||
1952 | </summary> |
||
1953 | <returns>A string that contains the name and conversion factor to meters </returns> |
||
1954 | </member> |
||
1955 | <member name="M:DotSpatial.Projections.LinearUnit.ReadEsriString(System.String)"> |
||
1956 | <summary> |
||
1957 | Parses the UNIT member of ESRI well known text into a linear unit |
||
1958 | </summary> |
||
1959 | <param name="esriString"></param> |
||
1960 | </member> |
||
1961 | <member name="M:DotSpatial.Projections.LinearUnit.ReadCode(System.Int32)"> |
||
1962 | <summary> |
||
1963 | Interprets a UOM code. For instance 9001 = meters. |
||
1964 | These codes and ratios were from GDAL unit_of_measure.csv, and I'm not |
||
1965 | sure if the numeric code is used outside of GDAL internal references. |
||
1966 | </summary> |
||
1967 | <param name="uomCode"></param> |
||
1968 | </member> |
||
1969 | <member name="P:DotSpatial.Projections.LinearUnit.Name"> |
||
1970 | <summary> |
||
1971 | Gets or sets the name of this |
||
1972 | </summary> |
||
1973 | </member> |
||
1974 | <member name="P:DotSpatial.Projections.LinearUnit.Meters"> |
||
1975 | <summary> |
||
1976 | Gets or sets the constant to multiply with maps distances to get the distances in meters |
||
1977 | </summary> |
||
1978 | </member> |
||
1979 | <member name="T:DotSpatial.Projections.GeographicCategories.Asia"> |
||
1980 | <summary> |
||
1981 | Asia |
||
1982 | </summary> |
||
1983 | </member> |
||
1984 | <member name="M:DotSpatial.Projections.GeographicCategories.Asia.#ctor"> |
||
1985 | <summary> |
||
1986 | Creates a new instance of Asia |
||
1987 | </summary> |
||
1988 | </member> |
||
1989 | <member name="T:DotSpatial.Projections.Proj"> |
||
1990 | <summary> |
||
1991 | Proj contains frequently used static helper methods for doing projection calculations |
||
1992 | </summary> |
||
1993 | </member> |
||
1994 | <member name="F:DotSpatial.Projections.Proj.ONE_TOL"> |
||
1995 | <summary> |
||
1996 | Effectively 1 but with a tolerance of 1E-14 |
||
1997 | </summary> |
||
1998 | </member> |
||
1999 | <member name="F:DotSpatial.Projections.Proj.ATOL"> |
||
2000 | <summary> |
||
2001 | 1E-50 |
||
2002 | </summary> |
||
2003 | </member> |
||
2004 | <member name="M:DotSpatial.Projections.Proj.Aasin(System.Double)"> |
||
2005 | <summary> |
||
2006 | Tolerant Arcsin |
||
2007 | </summary> |
||
2008 | <param name="v"></param> |
||
2009 | <returns></returns> |
||
2010 | </member> |
||
2011 | <member name="M:DotSpatial.Projections.Proj.Aacos(System.Double)"> |
||
2012 | <summary> |
||
2013 | Tolerant ArcCosine |
||
2014 | </summary> |
||
2015 | <param name="v"></param> |
||
2016 | <returns></returns> |
||
2017 | </member> |
||
2018 | <member name="M:DotSpatial.Projections.Proj.Asqrt(System.Double)"> |
||
2019 | <summary> |
||
2020 | Tollerant Sqrt |
||
2021 | </summary> |
||
2022 | <param name="v"></param> |
||
2023 | <returns></returns> |
||
2024 | </member> |
||
2025 | <member name="M:DotSpatial.Projections.Proj.Aatan2(System.Double,System.Double)"> |
||
2026 | <summary> |
||
2027 | Tollerant Math.Atan method. |
||
2028 | </summary> |
||
2029 | <param name="n"></param> |
||
2030 | <param name="d"></param> |
||
2031 | <returns></returns> |
||
2032 | </member> |
||
2033 | <member name="M:DotSpatial.Projections.Proj.Hypot(System.Double,System.Double)"> |
||
2034 | <summary> |
||
2035 | Calculates the hypotenuse of a triangle: Sqrt(x*x + y*y); |
||
2036 | </summary> |
||
2037 | <param name="x">The length of one orthogonal leg of the triangle</param> |
||
2038 | <param name="y">The length of the other orthogonal leg of the triangle</param> |
||
2039 | <returns>The length of the diagonal.</returns> |
||
2040 | </member> |
||
2041 | <member name="M:DotSpatial.Projections.Proj.Adjlon(System.Double)"> |
||
2042 | <summary> |
||
2043 | |||
2044 | </summary> |
||
2045 | <param name="lon"></param> |
||
2046 | <returns></returns> |
||
2047 | </member> |
||
2048 | <member name="M:DotSpatial.Projections.Proj.Authset(System.Double)"> |
||
2049 | <summary> |
||
2050 | Determines latitude from authalic latitude |
||
2051 | </summary> |
||
2052 | <param name="es">Epsilon squared</param> |
||
2053 | <returns>The array of double values for the apa parameter</returns> |
||
2054 | </member> |
||
2055 | <member name="M:DotSpatial.Projections.Proj.AuthLat(System.Double,System.Double[])"> |
||
2056 | <summary> |
||
2057 | Obtains the authalic latitude |
||
2058 | </summary> |
||
2059 | <param name="beta"></param> |
||
2060 | <param name="apa"></param> |
||
2061 | <returns></returns> |
||
2062 | </member> |
||
2063 | <member name="M:DotSpatial.Projections.Proj.Enfn(System.Double)"> |
||
2064 | <summary> |
||
2065 | Obtains the EN parameters for the Meridional distance |
||
2066 | </summary> |
||
2067 | <param name="es"></param> |
||
2068 | <returns></returns> |
||
2069 | </member> |
||
2070 | <member name="M:DotSpatial.Projections.Proj.Mlfn(System.Double,System.Double,System.Double,System.Double[])"> |
||
2071 | <summary> |
||
2072 | Meridonal length function |
||
2073 | </summary> |
||
2074 | <param name="phi"></param> |
||
2075 | <param name="sphi"></param> |
||
2076 | <param name="cphi"></param> |
||
2077 | <param name="en"></param> |
||
2078 | <returns></returns> |
||
2079 | </member> |
||
2080 | <member name="M:DotSpatial.Projections.Proj.InvMlfn(System.Double,System.Double,System.Double[])"> |
||
2081 | <summary> |
||
2082 | |||
2083 | </summary> |
||
2084 | <param name="arg"></param> |
||
2085 | <param name="es"></param> |
||
2086 | <param name="en"></param> |
||
2087 | <returns></returns> |
||
2088 | </member> |
||
2089 | <member name="M:DotSpatial.Projections.Proj.Qsfn(System.Double,System.Double,System.Double)"> |
||
2090 | <summary> |
||
2091 | |||
2092 | </summary> |
||
2093 | <param name="sinphi"></param> |
||
2094 | <param name="e"></param> |
||
2095 | <param name="oneEs"></param> |
||
2096 | <returns></returns> |
||
2097 | </member> |
||
2098 | <member name="M:DotSpatial.Projections.Proj.Tsfn(System.Double,System.Double,System.Double)"> |
||
2099 | <summary> |
||
2100 | |||
2101 | </summary> |
||
2102 | <param name="phi"></param> |
||
2103 | <param name="sinphi"></param> |
||
2104 | <param name="e"></param> |
||
2105 | <returns></returns> |
||
2106 | </member> |
||
2107 | <member name="M:DotSpatial.Projections.Proj.Msfn(System.Double,System.Double,System.Double)"> |
||
2108 | <summary> |
||
2109 | |||
2110 | </summary> |
||
2111 | <param name="sinphi"></param> |
||
2112 | <param name="cosphi"></param> |
||
2113 | <param name="es"></param> |
||
2114 | <returns></returns> |
||
2115 | </member> |
||
2116 | <member name="M:DotSpatial.Projections.Proj.Phi2(System.Double,System.Double)"> |
||
2117 | <summary> |
||
2118 | |||
2119 | </summary> |
||
2120 | <param name="ts"></param> |
||
2121 | <param name="e"></param> |
||
2122 | <returns></returns> |
||
2123 | </member> |
||
2124 | <member name="M:DotSpatial.Projections.Proj.Zpoly1(System.Double[],System.Double[][],System.Int32)"> |
||
2125 | <summary> |
||
2126 | </summary> |
||
2127 | <param name="z"></param> |
||
2128 | <param name="c"></param> |
||
2129 | <param name="n"></param> |
||
2130 | <returns></returns> |
||
2131 | </member> |
||
2132 | <member name="M:DotSpatial.Projections.Proj.Zpolyd1(System.Double[],System.Double[][],System.Int32,System.Double[]@)"> |
||
2133 | <summary> |
||
2134 | </summary> |
||
2135 | <param name="z"></param> |
||
2136 | <param name="c"></param> |
||
2137 | <param name="n"></param> |
||
2138 | <param name="der"></param> |
||
2139 | <returns></returns> |
||
2140 | </member> |
||
2141 | <member name="T:DotSpatial.Projections.ProjectedCategories.Wisconsin"> |
||
2142 | <summary> |
||
2143 | Wisconsin |
||
2144 | </summary> |
||
2145 | </member> |
||
2146 | <member name="M:DotSpatial.Projections.ProjectedCategories.Wisconsin.#ctor"> |
||
2147 | <summary> |
||
2148 | Creates a new instance of Wisconsin |
||
2149 | </summary> |
||
2150 | </member> |
||
2151 | <member name="T:DotSpatial.Projections.Proj4Meridian"> |
||
2152 | <summary> |
||
2153 | Proj4Meridians |
||
2154 | </summary> |
||
2155 | </member> |
||
2156 | <member name="F:DotSpatial.Projections.Proj4Meridian.Greenwich"> |
||
2157 | <summary> |
||
2158 | Greenwich, England |
||
2159 | </summary> |
||
2160 | </member> |
||
2161 | <member name="F:DotSpatial.Projections.Proj4Meridian.Lisbon"> |
||
2162 | <summary> |
||
2163 | Lisbon, Portugal |
||
2164 | </summary> |
||
2165 | </member> |
||
2166 | <member name="F:DotSpatial.Projections.Proj4Meridian.Paris"> |
||
2167 | <summary> |
||
2168 | Paris, France |
||
2169 | </summary> |
||
2170 | </member> |
||
2171 | <member name="F:DotSpatial.Projections.Proj4Meridian.Bogota"> |
||
2172 | <summary> |
||
2173 | Bogota, Colombia |
||
2174 | </summary> |
||
2175 | </member> |
||
2176 | <member name="F:DotSpatial.Projections.Proj4Meridian.Madrid"> |
||
2177 | <summary> |
||
2178 | Madrid, Spain |
||
2179 | </summary> |
||
2180 | </member> |
||
2181 | <member name="F:DotSpatial.Projections.Proj4Meridian.Rome"> |
||
2182 | <summary> |
||
2183 | Rome, Italy |
||
2184 | </summary> |
||
2185 | </member> |
||
2186 | <member name="F:DotSpatial.Projections.Proj4Meridian.Bern"> |
||
2187 | <summary> |
||
2188 | Berne, Switzerland |
||
2189 | </summary> |
||
2190 | </member> |
||
2191 | <member name="F:DotSpatial.Projections.Proj4Meridian.Jakarta"> |
||
2192 | <summary> |
||
2193 | Jakarta, Indonesia |
||
2194 | </summary> |
||
2195 | </member> |
||
2196 | <member name="F:DotSpatial.Projections.Proj4Meridian.Ferro"> |
||
2197 | <summary> |
||
2198 | Brasil |
||
2199 | </summary> |
||
2200 | </member> |
||
2201 | <member name="F:DotSpatial.Projections.Proj4Meridian.Brussels"> |
||
2202 | <summary> |
||
2203 | Brussels, Belgiuum |
||
2204 | </summary> |
||
2205 | </member> |
||
2206 | <member name="F:DotSpatial.Projections.Proj4Meridian.Stockholm"> |
||
2207 | <summary> |
||
2208 | Stockholm, Sweden |
||
2209 | </summary> |
||
2210 | </member> |
||
2211 | <member name="F:DotSpatial.Projections.Proj4Meridian.Athens"> |
||
2212 | <summary> |
||
2213 | Athens, Greece |
||
2214 | </summary> |
||
2215 | </member> |
||
2216 | <member name="F:DotSpatial.Projections.Proj4Meridian.Oslo"> |
||
2217 | <summary> |
||
2218 | Oslo, Norway |
||
2219 | </summary> |
||
2220 | </member> |
||
2221 | <member name="T:DotSpatial.Projections.GeographicCategories.SouthAmerica"> |
||
2222 | <summary> |
||
2223 | SouthAmerica |
||
2224 | </summary> |
||
2225 | </member> |
||
2226 | <member name="M:DotSpatial.Projections.GeographicCategories.SouthAmerica.#ctor"> |
||
2227 | <summary> |
||
2228 | Creates a new instance of SouthAmerica |
||
2229 | </summary> |
||
2230 | </member> |
||
2231 | <member name="T:DotSpatial.Projections.VanderGrinten1"> |
||
2232 | <summary> |
||
2233 | VanderGrinten1 |
||
2234 | </summary> |
||
2235 | </member> |
||
2236 | <member name="M:DotSpatial.Projections.VanderGrinten1.#ctor"> |
||
2237 | <summary> |
||
2238 | Creates a new instance of VanderGrinten1 |
||
2239 | </summary> |
||
2240 | </member> |
||
2241 | <member name="M:DotSpatial.Projections.VanderGrinten1.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2242 | <inheritdoc /> |
||
2243 | </member> |
||
2244 | <member name="M:DotSpatial.Projections.VanderGrinten1.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2245 | <inheritdoc /> |
||
2246 | </member> |
||
2247 | <member name="T:DotSpatial.Projections.LambertEqualAreaConic"> |
||
2248 | <summary> |
||
2249 | LambertEqualAreaConic |
||
2250 | </summary> |
||
2251 | </member> |
||
2252 | <member name="M:DotSpatial.Projections.LambertEqualAreaConic.#ctor"> |
||
2253 | <summary> |
||
2254 | Creates a new instance of LambertEqualAreaConic |
||
2255 | </summary> |
||
2256 | </member> |
||
2257 | <member name="M:DotSpatial.Projections.LambertEqualAreaConic.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
2258 | <summary> |
||
2259 | Initializes the transform using the parameters from the specified coordinate system information |
||
2260 | </summary> |
||
2261 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
2262 | </member> |
||
2263 | <member name="T:DotSpatial.Projections.LambertConformalConic"> |
||
2264 | <summary> |
||
2265 | LambertConformalConic |
||
2266 | </summary> |
||
2267 | </member> |
||
2268 | <member name="M:DotSpatial.Projections.LambertConformalConic.#ctor"> |
||
2269 | <summary> |
||
2270 | Creates a new instance of the Lambert Conformal Conic projection |
||
2271 | </summary> |
||
2272 | </member> |
||
2273 | <member name="M:DotSpatial.Projections.LambertConformalConic.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2274 | <inheritdoc /> |
||
2275 | </member> |
||
2276 | <member name="M:DotSpatial.Projections.LambertConformalConic.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2277 | <inheritdoc /> |
||
2278 | </member> |
||
2279 | <member name="M:DotSpatial.Projections.LambertConformalConic.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
2280 | <summary> |
||
2281 | Initializes the transform using the parameters from the specified coordinate system information |
||
2282 | </summary> |
||
2283 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
2284 | </member> |
||
2285 | <member name="M:DotSpatial.Projections.LambertConformalConic.OnSpecial(System.Double[],DotSpatial.Projections.ProjectionInfo,DotSpatial.Projections.Factors)"> |
||
2286 | <summary> |
||
2287 | Special factor calculations for a factors calculation |
||
2288 | </summary> |
||
2289 | <param name="lp">lambda-phi</param> |
||
2290 | <param name="p">The projection</param> |
||
2291 | <param name="fac">The Factors</param> |
||
2292 | </member> |
||
2293 | <member name="T:DotSpatial.Projections.ProjectedCategories.StatePlaneOther"> |
||
2294 | <summary> |
||
2295 | StatePlaneOther |
||
2296 | </summary> |
||
2297 | </member> |
||
2298 | <member name="M:DotSpatial.Projections.ProjectedCategories.StatePlaneOther.#ctor"> |
||
2299 | <summary> |
||
2300 | Creates a new instance of StatePlaneOther |
||
2301 | </summary> |
||
2302 | </member> |
||
2303 | <member name="T:DotSpatial.Projections.ProjectedCategories.Nad1983IntlFeet"> |
||
2304 | <summary> |
||
2305 | Nad1983IntlFeet |
||
2306 | </summary> |
||
2307 | </member> |
||
2308 | <member name="M:DotSpatial.Projections.ProjectedCategories.Nad1983IntlFeet.#ctor"> |
||
2309 | <summary> |
||
2310 | Creates a new instance of Nad1983IntlFeet |
||
2311 | </summary> |
||
2312 | </member> |
||
2313 | <member name="T:DotSpatial.Projections.ProjectedCategories.KrugerXian1980"> |
||
2314 | <summary> |
||
2315 | KrugerZian1980 |
||
2316 | </summary> |
||
2317 | </member> |
||
2318 | <member name="M:DotSpatial.Projections.ProjectedCategories.KrugerXian1980.#ctor"> |
||
2319 | <summary> |
||
2320 | Creates a new instance of KrugerZian1980 |
||
2321 | </summary> |
||
2322 | </member> |
||
2323 | <member name="T:DotSpatial.Projections.ProjectedCategories.GaussKrugerPulkovo1995"> |
||
2324 | <summary> |
||
2325 | GaussKrugerPulkovo1995 |
||
2326 | </summary> |
||
2327 | </member> |
||
2328 | <member name="M:DotSpatial.Projections.ProjectedCategories.GaussKrugerPulkovo1995.#ctor"> |
||
2329 | <summary> |
||
2330 | Creates a new instance of GaussKrugerPulkovo1995 |
||
2331 | </summary> |
||
2332 | </member> |
||
2333 | <member name="T:DotSpatial.Projections.Proj4Datum"> |
||
2334 | <summary> |
||
2335 | Proj4Datums |
||
2336 | </summary> |
||
2337 | </member> |
||
2338 | <member name="F:DotSpatial.Projections.Proj4Datum.WGS84"> |
||
2339 | <summary> |
||
2340 | World Geodetic System 1984 |
||
2341 | </summary> |
||
2342 | </member> |
||
2343 | <member name="F:DotSpatial.Projections.Proj4Datum.GGRS87"> |
||
2344 | <summary> |
||
2345 | Greek Geodetic Reference system 1987 |
||
2346 | </summary> |
||
2347 | </member> |
||
2348 | <member name="F:DotSpatial.Projections.Proj4Datum.NAD83"> |
||
2349 | <summary> |
||
2350 | North American Datum 1983 |
||
2351 | </summary> |
||
2352 | </member> |
||
2353 | <member name="F:DotSpatial.Projections.Proj4Datum.NAD27"> |
||
2354 | <summary> |
||
2355 | North American Datum 1927 |
||
2356 | </summary> |
||
2357 | </member> |
||
2358 | <member name="F:DotSpatial.Projections.Proj4Datum.Potsdam"> |
||
2359 | <summary> |
||
2360 | Potsdam Rauenburg 1950 DHDN |
||
2361 | </summary> |
||
2362 | </member> |
||
2363 | <member name="F:DotSpatial.Projections.Proj4Datum.Carthage"> |
||
2364 | <summary> |
||
2365 | Carthage 1934 Tunisia |
||
2366 | </summary> |
||
2367 | </member> |
||
2368 | <member name="F:DotSpatial.Projections.Proj4Datum.Hermannskogel"> |
||
2369 | <summary> |
||
2370 | Hermannskogel |
||
2371 | </summary> |
||
2372 | </member> |
||
2373 | <member name="F:DotSpatial.Projections.Proj4Datum.Ire65"> |
||
2374 | <summary> |
||
2375 | Ireland 1965 |
||
2376 | </summary> |
||
2377 | </member> |
||
2378 | <member name="F:DotSpatial.Projections.Proj4Datum.Nzgd49"> |
||
2379 | <summary> |
||
2380 | New Zealand Grid |
||
2381 | </summary> |
||
2382 | </member> |
||
2383 | <member name="F:DotSpatial.Projections.Proj4Datum.OSGB36"> |
||
2384 | <summary> |
||
2385 | Airy 1830 |
||
2386 | </summary> |
||
2387 | </member> |
||
2388 | <member name="T:DotSpatial.Projections.GeographicCategories.Africa"> |
||
2389 | <summary> |
||
2390 | Africa |
||
2391 | </summary> |
||
2392 | </member> |
||
2393 | <member name="F:DotSpatial.Projections.GeographicCategories.Africa.Abidjan1987"> |
||
2394 | <summary> |
||
2395 | Abidjan 1987 |
||
2396 | </summary> |
||
2397 | </member> |
||
2398 | <member name="M:DotSpatial.Projections.GeographicCategories.Africa.#ctor"> |
||
2399 | <summary> |
||
2400 | Creates a new instance of Africa |
||
2401 | </summary> |
||
2402 | </member> |
||
2403 | <member name="T:DotSpatial.Projections.ProjMatchableEM"> |
||
2404 | <summary> |
||
2405 | MatchableEM |
||
2406 | </summary> |
||
2407 | </member> |
||
2408 | <member name="M:DotSpatial.Projections.ProjMatchableEM.Matches(DotSpatial.Projections.IProjMatchable,DotSpatial.Projections.IProjMatchable)"> |
||
2409 | <summary> |
||
2410 | This tests the public properties from the two objects. If any properties implement |
||
2411 | the IMatchable interface, and do not match, this returns false. If any public |
||
2412 | properties are value types, and they are not equal, then this returns false. |
||
2413 | </summary> |
||
2414 | <param name="self">This matchable item </param> |
||
2415 | <param name="other">The other item to compare to this item</param> |
||
2416 | <returns>Boolean, true if there is a match</returns> |
||
2417 | </member> |
||
2418 | <member name="T:DotSpatial.Projections.ProjectionException"> |
||
2419 | <summary> |
||
2420 | ProjectionErrorCodes |
||
2421 | </summary> |
||
2422 | </member> |
||
2423 | <member name="M:DotSpatial.Projections.ProjectionException.#ctor(System.Int32)"> |
||
2424 | <summary> |
||
2425 | Creates a new projection exception with the appropriate message code |
||
2426 | </summary> |
||
2427 | <param name="errorCode"></param> |
||
2428 | </member> |
||
2429 | <member name="M:DotSpatial.Projections.ProjectionException.#ctor(System.String)"> |
||
2430 | <summary> |
||
2431 | Creates a new projection exception with the specified message |
||
2432 | </summary> |
||
2433 | <param name="message"></param> |
||
2434 | </member> |
||
2435 | <member name="M:DotSpatial.Projections.ProjectionException.GetMessage(System.Int32)"> |
||
2436 | <summary> |
||
2437 | Returns a string message given the correct numeric code. |
||
2438 | </summary> |
||
2439 | <param name="projectionCode"></param> |
||
2440 | <returns></returns> |
||
2441 | </member> |
||
2442 | <member name="P:DotSpatial.Projections.ProjectionException.ErrorCode"> |
||
2443 | <summary> |
||
2444 | Gets the error code that was used when this exception was created |
||
2445 | </summary> |
||
2446 | </member> |
||
2447 | <member name="T:DotSpatial.Projections.ProjectedCategories.World"> |
||
2448 | <summary> |
||
2449 | World |
||
2450 | </summary> |
||
2451 | </member> |
||
2452 | <member name="M:DotSpatial.Projections.ProjectedCategories.World.#ctor"> |
||
2453 | <summary> |
||
2454 | Creates a new instance of World |
||
2455 | </summary> |
||
2456 | </member> |
||
2457 | <member name="T:DotSpatial.Projections.ProjectedCategories.SouthAmerica"> |
||
2458 | <summary> |
||
2459 | SouthAmerica |
||
2460 | </summary> |
||
2461 | </member> |
||
2462 | <member name="M:DotSpatial.Projections.ProjectedCategories.SouthAmerica.#ctor"> |
||
2463 | <summary> |
||
2464 | Creates a new instance of SouthAmerica |
||
2465 | </summary> |
||
2466 | </member> |
||
2467 | <member name="T:DotSpatial.Projections.NadTable"> |
||
2468 | <summary> |
||
2469 | NadRecord is a single entry from an lla file |
||
2470 | </summary> |
||
2471 | </member> |
||
2472 | <member name="F:DotSpatial.Projections.NadTable.DEG_TO_RAD"> |
||
2473 | <summary> |
||
2474 | Converts degree values into radians |
||
2475 | </summary> |
||
2476 | </member> |
||
2477 | <member name="F:DotSpatial.Projections.NadTable.USecToRad"> |
||
2478 | <summary> |
||
2479 | I think this converts micro-seconds of arc to radians |
||
2480 | </summary> |
||
2481 | </member> |
||
2482 | <member name="F:DotSpatial.Projections.NadTable._name"> |
||
2483 | <summary> |
||
2484 | The character based id for this record |
||
2485 | </summary> |
||
2486 | </member> |
||
2487 | <member name="F:DotSpatial.Projections.NadTable._lowerLeft"> |
||
2488 | <summary> |
||
2489 | The lower left coordinate |
||
2490 | </summary> |
||
2491 | </member> |
||
2492 | <member name="F:DotSpatial.Projections.NadTable._cellSize"> |
||
2493 | <summary> |
||
2494 | The delta lambda and delta phi for a single cell |
||
2495 | </summary> |
||
2496 | </member> |
||
2497 | <member name="F:DotSpatial.Projections.NadTable._numLambdas"> |
||
2498 | <summary> |
||
2499 | The total count of coordinates in the lambda direction |
||
2500 | </summary> |
||
2501 | </member> |
||
2502 | <member name="F:DotSpatial.Projections.NadTable._numPhis"> |
||
2503 | <summary> |
||
2504 | The total count of coordinates in the phi direction |
||
2505 | </summary> |
||
2506 | </member> |
||
2507 | <member name="F:DotSpatial.Projections.NadTable._cvs"> |
||
2508 | <summary> |
||
2509 | The set of conversion matrix coefficients for lambda |
||
2510 | </summary> |
||
2511 | </member> |
||
2512 | <member name="M:DotSpatial.Projections.NadTable.#ctor"> |
||
2513 | <summary> |
||
2514 | Creates a blank nad Table |
||
2515 | </summary> |
||
2516 | </member> |
||
2517 | <member name="M:DotSpatial.Projections.NadTable.#ctor(System.String)"> |
||
2518 | <summary> |
||
2519 | This initializes a new table with the assumption that the offset is 0 |
||
2520 | </summary> |
||
2521 | <param name="resourceLocation">The resource location</param> |
||
2522 | </member> |
||
2523 | <member name="M:DotSpatial.Projections.NadTable.#ctor(System.String,System.Int64)"> |
||
2524 | <summary> |
||
2525 | This initializes a new table with the assumption that the offset needs to be specified |
||
2526 | because in gsb files, more than one table is listed, and this is a subtable. |
||
2527 | </summary> |
||
2528 | <param name="resourceLocation">The resource location</param> |
||
2529 | <param name="offset">The offset marking the start of the header in the file</param> |
||
2530 | </member> |
||
2531 | <member name="M:DotSpatial.Projections.NadTable.ReadHeader"> |
||
2532 | <summary> |
||
2533 | Given the resource setup, this causes the file to read the |
||
2534 | </summary> |
||
2535 | </member> |
||
2536 | <member name="M:DotSpatial.Projections.NadTable.FillData"> |
||
2537 | <summary> |
||
2538 | |||
2539 | </summary> |
||
2540 | </member> |
||
2541 | <member name="M:DotSpatial.Projections.NadTable.ReadDouble(System.IO.BinaryReader)"> |
||
2542 | <summary> |
||
2543 | Reads a double in BigEndian format (consistent with ntv1 and ntv2 formats.) |
||
2544 | </summary> |
||
2545 | <param name="br">The binary reader</param> |
||
2546 | <returns>The double value parsed from the binary in big endian byte order.</returns> |
||
2547 | </member> |
||
2548 | <member name="M:DotSpatial.Projections.NadTable.GetDouble(System.Byte[],System.Int32)"> |
||
2549 | <summary> |
||
2550 | Gets the double value from the specified position in the byte array |
||
2551 | Using BigEndian format. |
||
2552 | </summary> |
||
2553 | <param name="array"></param> |
||
2554 | <param name="offset"></param> |
||
2555 | <returns></returns> |
||
2556 | </member> |
||
2557 | <member name="M:DotSpatial.Projections.NadTable.FromSourceName(System.String)"> |
||
2558 | <summary> |
||
2559 | This method parses the extension of a resource location and |
||
2560 | creates the new resource type. |
||
2561 | </summary> |
||
2562 | <param name="resourceLocation"></param> |
||
2563 | <returns></returns> |
||
2564 | </member> |
||
2565 | <member name="P:DotSpatial.Projections.NadTable.Name"> |
||
2566 | <summary> |
||
2567 | Gets or sets the string name for this record |
||
2568 | </summary> |
||
2569 | </member> |
||
2570 | <member name="P:DotSpatial.Projections.NadTable.LowerLeft"> |
||
2571 | <summary> |
||
2572 | Gets or sets the lower left corner in radians |
||
2573 | </summary> |
||
2574 | </member> |
||
2575 | <member name="P:DotSpatial.Projections.NadTable.CellSize"> |
||
2576 | <summary> |
||
2577 | Gets or sets the angular cell size in radians |
||
2578 | </summary> |
||
2579 | </member> |
||
2580 | <member name="P:DotSpatial.Projections.NadTable.NumPhis"> |
||
2581 | <summary> |
||
2582 | Gets or sets the integer count of phi coefficients |
||
2583 | </summary> |
||
2584 | </member> |
||
2585 | <member name="P:DotSpatial.Projections.NadTable.NumLambdas"> |
||
2586 | <summary> |
||
2587 | Gets or sets the integer count of lambda coefficients |
||
2588 | </summary> |
||
2589 | </member> |
||
2590 | <member name="P:DotSpatial.Projections.NadTable.SubGrids"> |
||
2591 | <summary> |
||
2592 | These represent smaller, higher resolution subgrids that should fall within the extents |
||
2593 | of the larger grid. If this list exists, and there is a fit here, it should be used |
||
2594 | in preference to the low-resolution main grid. |
||
2595 | </summary> |
||
2596 | </member> |
||
2597 | <member name="P:DotSpatial.Projections.NadTable.Cvs"> |
||
2598 | <summary> |
||
2599 | Gets or sets the array of lambda coefficients organized |
||
2600 | in a spatial Table (phi major) |
||
2601 | </summary> |
||
2602 | </member> |
||
2603 | <member name="P:DotSpatial.Projections.NadTable.Filled"> |
||
2604 | <summary> |
||
2605 | Gets or sets a boolean indicating whether or not the values have been filled. |
||
2606 | </summary> |
||
2607 | </member> |
||
2608 | <member name="P:DotSpatial.Projections.NadTable.ManifestResourceString"> |
||
2609 | <summary> |
||
2610 | Gets or sets the location this table should look for source data. |
||
2611 | </summary> |
||
2612 | </member> |
||
2613 | <member name="P:DotSpatial.Projections.NadTable.DataOffset"> |
||
2614 | <summary> |
||
2615 | Gets or sets the long integer data offset where the stream should skip to to begin reading data |
||
2616 | </summary> |
||
2617 | </member> |
||
2618 | <member name="P:DotSpatial.Projections.NadTable.Format"> |
||
2619 | <summary> |
||
2620 | Gets or sets the format being used. |
||
2621 | </summary> |
||
2622 | </member> |
||
2623 | <member name="T:DotSpatial.Projections.GeographicCategories.World"> |
||
2624 | <summary> |
||
2625 | World |
||
2626 | </summary> |
||
2627 | </member> |
||
2628 | <member name="M:DotSpatial.Projections.GeographicCategories.World.#ctor"> |
||
2629 | <summary> |
||
2630 | Creates a new instance of World |
||
2631 | </summary> |
||
2632 | </member> |
||
2633 | <member name="T:DotSpatial.Projections.LlaNadTable"> |
||
2634 | <summary> |
||
2635 | Overrides the NadTable methods in the context of an lla resource file. |
||
2636 | </summary> |
||
2637 | </member> |
||
2638 | <member name="M:DotSpatial.Projections.LlaNadTable.#ctor(System.String)"> |
||
2639 | <summary> |
||
2640 | An LlaNadTable constructor |
||
2641 | </summary> |
||
2642 | <param name="resourceLocation">The Manifest Assembly resource location</param> |
||
2643 | </member> |
||
2644 | <member name="M:DotSpatial.Projections.LlaNadTable.ReadHeader"> |
||
2645 | <inheritdoc></inheritdoc> |
||
2646 | </member> |
||
2647 | <member name="M:DotSpatial.Projections.LlaNadTable.FillData"> |
||
2648 | <inheritdoc></inheritdoc> |
||
2649 | </member> |
||
2650 | <member name="T:DotSpatial.Projections.ProjShallowCopy"> |
||
2651 | <summary> |
||
2652 | Normally, cloning an object starts with MemberwiseClone, which |
||
2653 | creates a shallow copy of the object. For any members that |
||
2654 | derive from the Descriptor, however, any public properties |
||
2655 | or fields that implement ICloneable are copied (deep copy behavior). |
||
2656 | This is not always desirable, even if the member CAN be copied. |
||
2657 | This attribute causes the deep copy behavior to skip over |
||
2658 | properties marked with this attribute. |
||
2659 | </summary> |
||
2660 | </member> |
||
2661 | <member name="T:DotSpatial.Projections.PutinsP1"> |
||
2662 | <summary> |
||
2663 | PutinsP1 |
||
2664 | </summary> |
||
2665 | </member> |
||
2666 | <member name="M:DotSpatial.Projections.PutinsP1.#ctor"> |
||
2667 | <summary> |
||
2668 | Creates a new instance of PutinsP1 |
||
2669 | </summary> |
||
2670 | </member> |
||
2671 | <member name="M:DotSpatial.Projections.PutinsP1.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2672 | <inheritdoc /> |
||
2673 | </member> |
||
2674 | <member name="M:DotSpatial.Projections.PutinsP1.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2675 | <inheritdoc /> |
||
2676 | </member> |
||
2677 | <member name="T:DotSpatial.Projections.GeneralSinusoidal"> |
||
2678 | <summary> |
||
2679 | GeneralSinusoidal |
||
2680 | </summary> |
||
2681 | </member> |
||
2682 | <member name="T:DotSpatial.Projections.Sinusoidal"> |
||
2683 | <summary> |
||
2684 | Sinusoidal |
||
2685 | </summary> |
||
2686 | </member> |
||
2687 | <member name="M:DotSpatial.Projections.Sinusoidal.#ctor"> |
||
2688 | <summary> |
||
2689 | Creates a new instance of Sinusoidal |
||
2690 | </summary> |
||
2691 | </member> |
||
2692 | <member name="M:DotSpatial.Projections.Sinusoidal.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2693 | <inheritdoc /> |
||
2694 | </member> |
||
2695 | <member name="M:DotSpatial.Projections.Sinusoidal.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2696 | <inheritdoc /> |
||
2697 | </member> |
||
2698 | <member name="M:DotSpatial.Projections.Sinusoidal.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2699 | <inheritdoc /> |
||
2700 | </member> |
||
2701 | <member name="M:DotSpatial.Projections.Sinusoidal.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2702 | <inheritdoc /> |
||
2703 | </member> |
||
2704 | <member name="M:DotSpatial.Projections.Sinusoidal.Setup"> |
||
2705 | <summary> |
||
2706 | Handles the original configuration of sinusoidal transforms |
||
2707 | </summary> |
||
2708 | </member> |
||
2709 | <member name="M:DotSpatial.Projections.Sinusoidal.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
2710 | <summary> |
||
2711 | Initializes the transform using the parameters from the specified coordinate system information |
||
2712 | </summary> |
||
2713 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
2714 | </member> |
||
2715 | <member name="P:DotSpatial.Projections.Sinusoidal.M"> |
||
2716 | <summary> |
||
2717 | Gets or sets the double M value |
||
2718 | </summary> |
||
2719 | </member> |
||
2720 | <member name="P:DotSpatial.Projections.Sinusoidal.N"> |
||
2721 | <summary> |
||
2722 | Gets or sets the N value |
||
2723 | </summary> |
||
2724 | </member> |
||
2725 | <member name="M:DotSpatial.Projections.GeneralSinusoidal.#ctor"> |
||
2726 | <summary> |
||
2727 | Creates a new instance of GeneralSinusoidal |
||
2728 | </summary> |
||
2729 | </member> |
||
2730 | <member name="M:DotSpatial.Projections.GeneralSinusoidal.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
2731 | <summary> |
||
2732 | Initializes the transform using the parameters from the specified coordinate system information |
||
2733 | </summary> |
||
2734 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
2735 | </member> |
||
2736 | <member name="T:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1983HarnFeet"> |
||
2737 | <summary> |
||
2738 | StatePlaneNad1983HarnFeet |
||
2739 | </summary> |
||
2740 | </member> |
||
2741 | <member name="M:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1983HarnFeet.#ctor"> |
||
2742 | <summary> |
||
2743 | Creates a new instance of StatePlaneNad1983HarnFeet |
||
2744 | </summary> |
||
2745 | </member> |
||
2746 | <member name="T:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1983"> |
||
2747 | <summary> |
||
2748 | StatePlaneNad1983 |
||
2749 | </summary> |
||
2750 | </member> |
||
2751 | <member name="F:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1983.MichiganGeoRef2008"> |
||
2752 | <summary> |
||
2753 | Michigan Geo Ref 2008 |
||
2754 | </summary> |
||
2755 | </member> |
||
2756 | <member name="F:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1983.NAD1983Maine2000CentralZone"> |
||
2757 | <summary> |
||
2758 | </summary> |
||
2759 | </member> |
||
2760 | <member name="M:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1983.#ctor"> |
||
2761 | <summary> |
||
2762 | Creates a new instance of StatePlaneNad1983 |
||
2763 | </summary> |
||
2764 | </member> |
||
2765 | <member name="T:DotSpatial.Projections.ProjectedCategories.GaussKrugerOther"> |
||
2766 | <summary> |
||
2767 | GaussKrugerOther |
||
2768 | </summary> |
||
2769 | </member> |
||
2770 | <member name="M:DotSpatial.Projections.ProjectedCategories.GaussKrugerOther.#ctor"> |
||
2771 | <summary> |
||
2772 | Creates a new instance of GaussKrugerOther |
||
2773 | </summary> |
||
2774 | </member> |
||
2775 | <member name="T:DotSpatial.Projections.GeographicCategories.SolarSystem"> |
||
2776 | <summary> |
||
2777 | SolarSystem |
||
2778 | </summary> |
||
2779 | </member> |
||
2780 | <member name="M:DotSpatial.Projections.GeographicCategories.SolarSystem.#ctor"> |
||
2781 | <summary> |
||
2782 | Creates a new instance of SolarSystem |
||
2783 | </summary> |
||
2784 | </member> |
||
2785 | <member name="T:DotSpatial.Projections.GeographicCategories.CountySystems"> |
||
2786 | <summary> |
||
2787 | CountySystems |
||
2788 | </summary> |
||
2789 | </member> |
||
2790 | <member name="M:DotSpatial.Projections.GeographicCategories.CountySystems.#ctor"> |
||
2791 | <summary> |
||
2792 | Creates a new instance of CountySystems |
||
2793 | </summary> |
||
2794 | </member> |
||
2795 | <member name="T:DotSpatial.Projections.ProjFieldInfoEM"> |
||
2796 | <summary> |
||
2797 | FieldInfo |
||
2798 | </summary> |
||
2799 | </member> |
||
2800 | <member name="M:DotSpatial.Projections.ProjFieldInfoEM.GetFirst(System.Collections.Generic.IEnumerable{System.Reflection.FieldInfo},System.String)"> |
||
2801 | <summary> |
||
2802 | |||
2803 | </summary> |
||
2804 | <param name="self"></param> |
||
2805 | <param name="name"></param> |
||
2806 | <returns></returns> |
||
2807 | </member> |
||
2808 | <member name="M:DotSpatial.Projections.ProjFieldInfoEM.Contains(System.Collections.Generic.IEnumerable{System.Reflection.FieldInfo},System.String)"> |
||
2809 | <summary> |
||
2810 | Determines whether there is a member with the specified name |
||
2811 | </summary> |
||
2812 | <param name="self"></param> |
||
2813 | <param name="name"></param> |
||
2814 | <returns></returns> |
||
2815 | </member> |
||
2816 | <member name="T:DotSpatial.Projections.UniversalTransverseMercator"> |
||
2817 | <summary> |
||
2818 | UniversalTransverseMercator |
||
2819 | </summary> |
||
2820 | </member> |
||
2821 | <member name="T:DotSpatial.Projections.TransverseMercator"> |
||
2822 | <summary> |
||
2823 | TransverseMercator |
||
2824 | </summary> |
||
2825 | </member> |
||
2826 | <member name="M:DotSpatial.Projections.TransverseMercator.#ctor"> |
||
2827 | <summary> |
||
2828 | Creates a new instance of TransverseMercator |
||
2829 | </summary> |
||
2830 | </member> |
||
2831 | <member name="M:DotSpatial.Projections.TransverseMercator.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
2832 | <summary> |
||
2833 | Initializes the transform using the parameters from the specified coordinate system information |
||
2834 | </summary> |
||
2835 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
2836 | </member> |
||
2837 | <member name="M:DotSpatial.Projections.TransverseMercator.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2838 | <summary> |
||
2839 | The forward transform in the special case where there is no flattening of the spherical model of the earth. |
||
2840 | </summary> |
||
2841 | <param name="lp">The input lambda and phi geodetic values organized in an array</param> |
||
2842 | <param name="xy">The output x and y values organized in an array</param> |
||
2843 | <param name="startIndex">The zero based integer start index</param> |
||
2844 | <param name="numPoints">The integer count of the number of xy pairs in the lp and xy arrays</param> |
||
2845 | </member> |
||
2846 | <member name="M:DotSpatial.Projections.TransverseMercator.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2847 | <summary> |
||
2848 | The forward transform where the spheroidal model of the earth has a flattening factor, |
||
2849 | matching more closely with the oblique spheroid of the actual earth |
||
2850 | </summary> |
||
2851 | <param name="lp">The double values for geodetic lambda and phi organized into a one dimensional array</param> |
||
2852 | <param name="xy">The double values for linear x and y organized into a one dimensional array</param> |
||
2853 | <param name="startIndex">The zero based integer start index</param> |
||
2854 | <param name="numPoints">The integer count of the number of xy pairs in the lp and xy arrays</param> |
||
2855 | </member> |
||
2856 | <member name="M:DotSpatial.Projections.TransverseMercator.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2857 | <summary> |
||
2858 | Performs the inverse transform from a single coordinate of linear units to the same coordinate in geodetic lambda and |
||
2859 | phi units in the special case where the shape of the earth is being approximated as a perfect sphere. |
||
2860 | </summary> |
||
2861 | <param name="xy">The double linear input x and y values organized into a 1 dimensional array</param> |
||
2862 | <param name="lp">The double geodetic output lambda and phi values organized into a 1 dimensional array</param> |
||
2863 | <param name="startIndex">The zero based integer start index</param> |
||
2864 | <param name="numPoints">The integer count of the number of xy pairs in the lp and xy arrays</param> |
||
2865 | </member> |
||
2866 | <member name="M:DotSpatial.Projections.TransverseMercator.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2867 | <summary> |
||
2868 | Performs the inverse transfrom from a single coordinate of linear units to the same coordinate in geodetic units |
||
2869 | </summary> |
||
2870 | <param name="xy">The double linear input x and y values organized into a 1 dimensional array</param> |
||
2871 | <param name="lp">The double geodetic output lambda and phi values organized into a 1 dimensional array</param> |
||
2872 | <param name="startIndex">The zero based integer start index</param> |
||
2873 | <param name="numPoints">The integer count of the number of xy pairs in the lp and xy arrays</param> |
||
2874 | </member> |
||
2875 | <member name="M:DotSpatial.Projections.UniversalTransverseMercator.#ctor"> |
||
2876 | <summary> |
||
2877 | Creates a new instance of UniversalTransverseMercator. The only difference |
||
2878 | for this one is that the proj4 name is a little different and when reading |
||
2879 | from proj4, we have to parse the zone and south parameters in order to |
||
2880 | create the transverse mercator projection. |
||
2881 | </summary> |
||
2882 | </member> |
||
2883 | <member name="M:DotSpatial.Projections.UniversalTransverseMercator.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
2884 | <summary> |
||
2885 | Initializes the transform using the parameters from the specified coordinate system information |
||
2886 | </summary> |
||
2887 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
2888 | </member> |
||
2889 | <member name="T:DotSpatial.Projections.Mercator"> |
||
2890 | <summary> |
||
2891 | Mercator |
||
2892 | </summary> |
||
2893 | </member> |
||
2894 | <member name="M:DotSpatial.Projections.Mercator.#ctor"> |
||
2895 | <summary> |
||
2896 | Creates a new instance of Mercator |
||
2897 | </summary> |
||
2898 | </member> |
||
2899 | <member name="M:DotSpatial.Projections.Mercator.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2900 | <inheritdoc /> |
||
2901 | </member> |
||
2902 | <member name="M:DotSpatial.Projections.Mercator.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2903 | <inheritdoc /> |
||
2904 | </member> |
||
2905 | <member name="M:DotSpatial.Projections.Mercator.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2906 | <inheritdoc /> |
||
2907 | </member> |
||
2908 | <member name="M:DotSpatial.Projections.Mercator.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2909 | <inheritdoc /> |
||
2910 | </member> |
||
2911 | <member name="M:DotSpatial.Projections.Mercator.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
2912 | <summary> |
||
2913 | Initializes the transform using the parameters from the specified coordinate system information |
||
2914 | </summary> |
||
2915 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
2916 | </member> |
||
2917 | <member name="T:DotSpatial.Projections.Kavraisky7"> |
||
2918 | <summary> |
||
2919 | Kavraisky6 |
||
2920 | </summary> |
||
2921 | </member> |
||
2922 | <member name="M:DotSpatial.Projections.Kavraisky7.#ctor"> |
||
2923 | <summary> |
||
2924 | Creates a new instance of Kavraisky6 |
||
2925 | </summary> |
||
2926 | </member> |
||
2927 | <member name="M:DotSpatial.Projections.Kavraisky7.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2928 | <inheritdoc /> |
||
2929 | </member> |
||
2930 | <member name="M:DotSpatial.Projections.Kavraisky7.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2931 | <inheritdoc /> |
||
2932 | </member> |
||
2933 | <member name="T:DotSpatial.Projections.GeostationarySatellite"> |
||
2934 | <summary> |
||
2935 | GeostationarySatellite |
||
2936 | </summary> |
||
2937 | </member> |
||
2938 | <member name="M:DotSpatial.Projections.GeostationarySatellite.#ctor"> |
||
2939 | <summary> |
||
2940 | Creates a new instance of GeostationarySatellite |
||
2941 | </summary> |
||
2942 | </member> |
||
2943 | <member name="M:DotSpatial.Projections.GeostationarySatellite.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2944 | <inheritdoc /> |
||
2945 | </member> |
||
2946 | <member name="M:DotSpatial.Projections.GeostationarySatellite.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2947 | <inheritdoc /> |
||
2948 | </member> |
||
2949 | <member name="M:DotSpatial.Projections.GeostationarySatellite.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2950 | <inheritdoc /> |
||
2951 | </member> |
||
2952 | <member name="M:DotSpatial.Projections.GeostationarySatellite.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
2953 | <inheritdoc /> |
||
2954 | </member> |
||
2955 | <member name="M:DotSpatial.Projections.GeostationarySatellite.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
2956 | <summary> |
||
2957 | Initializes the transform using the parameters from the specified coordinate system information |
||
2958 | </summary> |
||
2959 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
2960 | </member> |
||
2961 | <member name="T:DotSpatial.Projections.GaussKruger"> |
||
2962 | <summary> |
||
2963 | Gauss Kruger is basically transverse mercator |
||
2964 | </summary> |
||
2965 | </member> |
||
2966 | <member name="M:DotSpatial.Projections.GaussKruger.#ctor"> |
||
2967 | <summary> |
||
2968 | Creates a new instance of GaussKruger |
||
2969 | </summary> |
||
2970 | </member> |
||
2971 | <member name="T:DotSpatial.Projections.IProjectionCategory"> |
||
2972 | <summary> |
||
2973 | IProjectionCategory |
||
2974 | </summary> |
||
2975 | </member> |
||
2976 | <member name="P:DotSpatial.Projections.IProjectionCategory.MainCategory"> |
||
2977 | <summary> |
||
2978 | Gets or sets the main category for this projection |
||
2979 | </summary> |
||
2980 | </member> |
||
2981 | <member name="P:DotSpatial.Projections.IProjectionCategory.Category"> |
||
2982 | <summary> |
||
2983 | Gets or sets the category for this projection |
||
2984 | </summary> |
||
2985 | </member> |
||
2986 | <member name="P:DotSpatial.Projections.IProjectionCategory.Name"> |
||
2987 | <summary> |
||
2988 | Gets or sets the string name |
||
2989 | </summary> |
||
2990 | </member> |
||
2991 | <member name="P:DotSpatial.Projections.IProjectionCategory.Proj4String"> |
||
2992 | <summary> |
||
2993 | Gets or sets the proj4 string that defines this projection |
||
2994 | </summary> |
||
2995 | </member> |
||
2996 | <member name="T:DotSpatial.Projections.GeographicCategories.Antarctica"> |
||
2997 | <summary> |
||
2998 | Antarctica |
||
2999 | </summary> |
||
3000 | </member> |
||
3001 | <member name="M:DotSpatial.Projections.GeographicCategories.Antarctica.#ctor"> |
||
3002 | <summary> |
||
3003 | Creates a new instance of Antarctica |
||
3004 | </summary> |
||
3005 | </member> |
||
3006 | <member name="T:DotSpatial.Projections.Datum"> |
||
3007 | <summary> |
||
3008 | Datum |
||
3009 | </summary> |
||
3010 | </member> |
||
3011 | <member name="M:DotSpatial.Projections.Datum.#ctor"> |
||
3012 | <summary> |
||
3013 | Creates a new instance of Datum |
||
3014 | </summary> |
||
3015 | </member> |
||
3016 | <member name="M:DotSpatial.Projections.Datum.#ctor(System.String)"> |
||
3017 | <summary> |
||
3018 | uses a string name of a standard datum to create a new instance of the Datum class |
||
3019 | </summary> |
||
3020 | <param name="standardDatum">The string name of the datum to use</param> |
||
3021 | </member> |
||
3022 | <member name="M:DotSpatial.Projections.Datum.#ctor(DotSpatial.Projections.Proj4Datum)"> |
||
3023 | <summary> |
||
3024 | Uses a Proj4Datums enumeration in order to specify a known datum to |
||
3025 | define the spheroid and to WGS calculation method and parameters |
||
3026 | </summary> |
||
3027 | <param name="standardDatum">The Proj4Datums enumeration specifying the known datum</param> |
||
3028 | </member> |
||
3029 | <member name="M:DotSpatial.Projections.Datum.Matches(DotSpatial.Projections.Datum)"> |
||
3030 | <summary> |
||
3031 | Compares two datums to see if they are actually describing the same thing and |
||
3032 | therefore don't need to be transformed. |
||
3033 | </summary> |
||
3034 | <param name="otherDatum">The other datum to compare against</param> |
||
3035 | <returns>The boolean result of the operation.</returns> |
||
3036 | </member> |
||
3037 | <member name="M:DotSpatial.Projections.Datum.ToEsriString"> |
||
3038 | <summary> |
||
3039 | Creates an esri well known text string for the datum part of the string |
||
3040 | </summary> |
||
3041 | <returns>The datum portion of the esri well known text</returns> |
||
3042 | </member> |
||
3043 | <member name="M:DotSpatial.Projections.Datum.ReadEsriString(System.String)"> |
||
3044 | <summary> |
||
3045 | parses the datum from the esri string |
||
3046 | </summary> |
||
3047 | <param name="esriString">The string to parse values from</param> |
||
3048 | </member> |
||
3049 | <member name="M:DotSpatial.Projections.Datum.ReadProj4Params(System.Collections.Generic.Dictionary{System.String,System.String})"> |
||
3050 | <summary> |
||
3051 | Reads the proj4 parameters and parses out the ones that control the |
||
3052 | datum. |
||
3053 | </summary> |
||
3054 | <param name="parameters"></param> |
||
3055 | <remarks>Originally ported from pj_datum_set.c</remarks> |
||
3056 | </member> |
||
3057 | <member name="P:DotSpatial.Projections.Datum.Name"> |
||
3058 | <summary> |
||
3059 | Gets or sets the name of the datum defining the spherical characteristics of the model of the earth |
||
3060 | </summary> |
||
3061 | </member> |
||
3062 | <member name="P:DotSpatial.Projections.Datum.Spheroid"> |
||
3063 | <summary> |
||
3064 | The spheroid of the earth, defining the maximal radius and the flattening factor |
||
3065 | </summary> |
||
3066 | </member> |
||
3067 | <member name="P:DotSpatial.Projections.Datum.ToWGS84"> |
||
3068 | <summary> |
||
3069 | Gets or sets the set of double parameters, (this can either be 3 or 7 parameters) |
||
3070 | used to transform this |
||
3071 | </summary> |
||
3072 | </member> |
||
3073 | <member name="P:DotSpatial.Projections.Datum.DatumType"> |
||
3074 | <summary> |
||
3075 | Gets or sets the datum type, which clarifies how to perform transforms to WGS84 |
||
3076 | </summary> |
||
3077 | </member> |
||
3078 | <member name="P:DotSpatial.Projections.Datum.Description"> |
||
3079 | <summary> |
||
3080 | Gets or sets an english description for this datum |
||
3081 | </summary> |
||
3082 | </member> |
||
3083 | <member name="P:DotSpatial.Projections.Datum.NadGrids"> |
||
3084 | <summary> |
||
3085 | Gets or sets the array of string nadGrid |
||
3086 | </summary> |
||
3087 | </member> |
||
3088 | <member name="T:DotSpatial.Projections.TransformManager"> |
||
3089 | <summary> |
||
3090 | TransformManager |
||
3091 | </summary> |
||
3092 | </member> |
||
3093 | <member name="M:DotSpatial.Projections.TransformManager.#ctor"> |
||
3094 | <summary> |
||
3095 | Creates a new instance of TransformManager |
||
3096 | </summary> |
||
3097 | </member> |
||
3098 | <member name="M:DotSpatial.Projections.TransformManager.GetProj4(System.String)"> |
||
3099 | <summary> |
||
3100 | Given the proj4 string, returns the matching transform eg: tmerc. |
||
3101 | </summary> |
||
3102 | <param name="name">The string name</param> |
||
3103 | <returns>The ITransform that has the matching proj4 name</returns> |
||
3104 | </member> |
||
3105 | <member name="M:DotSpatial.Projections.TransformManager.GetProjection(System.String)"> |
||
3106 | <summary> |
||
3107 | Given the .prj name (ESRI wkt), returns the matching transform |
||
3108 | </summary> |
||
3109 | <param name="name">The string name for the trnasform eg. Transverse_Mercator</param> |
||
3110 | <returns>The ITransform that has the matching ESRI wkt name</returns> |
||
3111 | </member> |
||
3112 | <member name="P:DotSpatial.Projections.TransformManager.Transforms"> |
||
3113 | <summary> |
||
3114 | The entire list of transforms |
||
3115 | </summary> |
||
3116 | </member> |
||
3117 | <member name="P:DotSpatial.Projections.TransformManager.DefaultTransformManager"> |
||
3118 | <summary> |
||
3119 | Gets the default instance of the transform manager |
||
3120 | </summary> |
||
3121 | </member> |
||
3122 | <member name="T:DotSpatial.Projections.ObliqueCylindricalEqualArea"> |
||
3123 | <summary> |
||
3124 | ObliqueCylindricalEqualArea |
||
3125 | </summary> |
||
3126 | </member> |
||
3127 | <member name="M:DotSpatial.Projections.ObliqueCylindricalEqualArea.#ctor"> |
||
3128 | <summary> |
||
3129 | Creates a new instance of ObliqueCylindricalEqualArea |
||
3130 | </summary> |
||
3131 | </member> |
||
3132 | <member name="M:DotSpatial.Projections.ObliqueCylindricalEqualArea.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3133 | <inheritdoc /> |
||
3134 | </member> |
||
3135 | <member name="M:DotSpatial.Projections.ObliqueCylindricalEqualArea.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3136 | <inheritdoc /> |
||
3137 | </member> |
||
3138 | <member name="M:DotSpatial.Projections.ObliqueCylindricalEqualArea.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
3139 | <summary> |
||
3140 | Initializes the transform using the parameters from the specified coordinate system information |
||
3141 | </summary> |
||
3142 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
3143 | </member> |
||
3144 | <member name="T:DotSpatial.Projections.GallStereographic"> |
||
3145 | <summary> |
||
3146 | GallStereographic |
||
3147 | </summary> |
||
3148 | </member> |
||
3149 | <member name="M:DotSpatial.Projections.GallStereographic.#ctor"> |
||
3150 | <summary> |
||
3151 | Creates a new instance of GallStereographic |
||
3152 | </summary> |
||
3153 | </member> |
||
3154 | <member name="M:DotSpatial.Projections.GallStereographic.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3155 | <inheritdoc /> |
||
3156 | </member> |
||
3157 | <member name="M:DotSpatial.Projections.GallStereographic.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3158 | <inheritdoc /> |
||
3159 | </member> |
||
3160 | <member name="T:DotSpatial.Projections.Foucaut"> |
||
3161 | <summary> |
||
3162 | Foucaut is a tweaked version of QuarticAuthalic that uses tan mode. |
||
3163 | </summary> |
||
3164 | </member> |
||
3165 | <member name="M:DotSpatial.Projections.Foucaut.#ctor"> |
||
3166 | <summary> |
||
3167 | Creates a new instance of Foucaut |
||
3168 | </summary> |
||
3169 | </member> |
||
3170 | <member name="M:DotSpatial.Projections.Foucaut.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
3171 | <summary> |
||
3172 | Initializes the transform using the parameters from the specified coordinate system information |
||
3173 | </summary> |
||
3174 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
3175 | </member> |
||
3176 | <member name="T:DotSpatial.Projections.CylindricalEqualArea"> |
||
3177 | <summary> |
||
3178 | CylindricalEqualArea |
||
3179 | </summary> |
||
3180 | </member> |
||
3181 | <member name="M:DotSpatial.Projections.CylindricalEqualArea.#ctor"> |
||
3182 | <summary> |
||
3183 | Creates a new instance of CylindricalEqualArea |
||
3184 | </summary> |
||
3185 | </member> |
||
3186 | <member name="M:DotSpatial.Projections.CylindricalEqualArea.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3187 | <inheritdoc /> |
||
3188 | </member> |
||
3189 | <member name="M:DotSpatial.Projections.CylindricalEqualArea.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3190 | <inheritdoc /> |
||
3191 | </member> |
||
3192 | <member name="M:DotSpatial.Projections.CylindricalEqualArea.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3193 | <inheritdoc /> |
||
3194 | </member> |
||
3195 | <member name="M:DotSpatial.Projections.CylindricalEqualArea.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3196 | <inheritdoc /> |
||
3197 | </member> |
||
3198 | <member name="M:DotSpatial.Projections.CylindricalEqualArea.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
3199 | <summary> |
||
3200 | Initializes the transform using the parameters from the specified coordinate system information |
||
3201 | </summary> |
||
3202 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
3203 | </member> |
||
3204 | <member name="T:DotSpatial.Projections.Bonne"> |
||
3205 | <summary> |
||
3206 | Bonne |
||
3207 | </summary> |
||
3208 | </member> |
||
3209 | <member name="M:DotSpatial.Projections.Bonne.#ctor"> |
||
3210 | <summary> |
||
3211 | Creates a new instance of Bonne |
||
3212 | </summary> |
||
3213 | </member> |
||
3214 | <member name="M:DotSpatial.Projections.Bonne.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3215 | <inheritdoc /> |
||
3216 | </member> |
||
3217 | <member name="M:DotSpatial.Projections.Bonne.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3218 | <inheritdoc /> |
||
3219 | </member> |
||
3220 | <member name="M:DotSpatial.Projections.Bonne.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3221 | <inheritdoc /> |
||
3222 | </member> |
||
3223 | <member name="M:DotSpatial.Projections.Bonne.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3224 | <inheritdoc /> |
||
3225 | </member> |
||
3226 | <member name="M:DotSpatial.Projections.Bonne.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
3227 | <summary> |
||
3228 | Initializes the transform using the parameters from the specified coordinate system information |
||
3229 | </summary> |
||
3230 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
3231 | </member> |
||
3232 | <member name="T:DotSpatial.Projections.ProjectedCategories.StateSystems"> |
||
3233 | <summary> |
||
3234 | StateSystems |
||
3235 | </summary> |
||
3236 | </member> |
||
3237 | <member name="M:DotSpatial.Projections.ProjectedCategories.StateSystems.#ctor"> |
||
3238 | <summary> |
||
3239 | Creates a new instance of StateSystems |
||
3240 | </summary> |
||
3241 | </member> |
||
3242 | <member name="T:DotSpatial.Projections.ProjectedCategories.NationalGridsAustralia"> |
||
3243 | <summary> |
||
3244 | NatGridsAustralia |
||
3245 | </summary> |
||
3246 | </member> |
||
3247 | <member name="M:DotSpatial.Projections.ProjectedCategories.NationalGridsAustralia.#ctor"> |
||
3248 | <summary> |
||
3249 | Creates a new instance of NatGridsAustralia |
||
3250 | </summary> |
||
3251 | </member> |
||
3252 | <member name="T:DotSpatial.Projections.Orthographic"> |
||
3253 | <summary> |
||
3254 | Orthographic |
||
3255 | </summary> |
||
3256 | </member> |
||
3257 | <member name="M:DotSpatial.Projections.Orthographic.#ctor"> |
||
3258 | <summary> |
||
3259 | Creates a new instance of Orthographic |
||
3260 | </summary> |
||
3261 | </member> |
||
3262 | <member name="M:DotSpatial.Projections.Orthographic.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3263 | <inheritdoc /> |
||
3264 | </member> |
||
3265 | <member name="M:DotSpatial.Projections.Orthographic.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3266 | <inheritdoc /> |
||
3267 | </member> |
||
3268 | <member name="M:DotSpatial.Projections.Orthographic.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
3269 | <summary> |
||
3270 | Initializes the transform using the parameters from the specified coordinate system information |
||
3271 | </summary> |
||
3272 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
3273 | </member> |
||
3274 | <member name="T:DotSpatial.Projections.Kavraisky5"> |
||
3275 | <summary> |
||
3276 | Kavraisky5 is just a tweaked version of Quartic Authalic |
||
3277 | </summary> |
||
3278 | </member> |
||
3279 | <member name="M:DotSpatial.Projections.Kavraisky5.#ctor"> |
||
3280 | <summary> |
||
3281 | Creates a new instance of Kavraisky5 |
||
3282 | </summary> |
||
3283 | </member> |
||
3284 | <member name="M:DotSpatial.Projections.Kavraisky5.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
3285 | <summary> |
||
3286 | Initializes the transform using the parameters from the specified coordinate system information |
||
3287 | </summary> |
||
3288 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
3289 | </member> |
||
3290 | <member name="T:DotSpatial.Projections.EquidistantConic"> |
||
3291 | <summary> |
||
3292 | EquidistantConic |
||
3293 | </summary> |
||
3294 | </member> |
||
3295 | <member name="M:DotSpatial.Projections.EquidistantConic.#ctor"> |
||
3296 | <summary> |
||
3297 | Creates a new instance of EquidistantConic |
||
3298 | </summary> |
||
3299 | </member> |
||
3300 | <member name="M:DotSpatial.Projections.EquidistantConic.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3301 | <inheritdoc /> |
||
3302 | </member> |
||
3303 | <member name="M:DotSpatial.Projections.EquidistantConic.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3304 | <inheritdoc /> |
||
3305 | </member> |
||
3306 | <member name="M:DotSpatial.Projections.EquidistantConic.OnSpecial(System.Double[],DotSpatial.Projections.ProjectionInfo,DotSpatial.Projections.Factors)"> |
||
3307 | <summary> |
||
3308 | This exists in the case that we ever develop code to perform the special proj4 calculations |
||
3309 | </summary> |
||
3310 | <param name="lp"></param> |
||
3311 | <param name="p"></param> |
||
3312 | <param name="fac"></param> |
||
3313 | </member> |
||
3314 | <member name="M:DotSpatial.Projections.EquidistantConic.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
3315 | <summary> |
||
3316 | Initializes the transform using the parameters from the specified coordinate system information |
||
3317 | </summary> |
||
3318 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
3319 | </member> |
||
3320 | <member name="T:DotSpatial.Projections.AnalyticModes"> |
||
3321 | <summary> |
||
3322 | AnalyticCodes |
||
3323 | </summary> |
||
3324 | </member> |
||
3325 | <member name="F:DotSpatial.Projections.AnalyticModes.IsAnalXlYl"> |
||
3326 | <summary> |
||
3327 | Derivatives of lon analytic |
||
3328 | </summary> |
||
3329 | </member> |
||
3330 | <member name="F:DotSpatial.Projections.AnalyticModes.IsAnalXpYp"> |
||
3331 | <summary> |
||
3332 | Derivatives of lat analytic |
||
3333 | </summary> |
||
3334 | </member> |
||
3335 | <member name="F:DotSpatial.Projections.AnalyticModes.IsAnalHk"> |
||
3336 | <summary> |
||
3337 | h and k are analytic |
||
3338 | </summary> |
||
3339 | </member> |
||
3340 | <member name="F:DotSpatial.Projections.AnalyticModes.IsAnalConv"> |
||
3341 | <summary> |
||
3342 | convergence analytic |
||
3343 | </summary> |
||
3344 | </member> |
||
3345 | <member name="T:DotSpatial.Projections.ProjectionMessages"> |
||
3346 | <summary> |
||
3347 | A strongly-typed resource class, for looking up localized strings, etc. |
||
3348 | </summary> |
||
3349 | </member> |
||
3350 | <member name="P:DotSpatial.Projections.ProjectionMessages.ResourceManager"> |
||
3351 | <summary> |
||
3352 | Returns the cached ResourceManager instance used by this class. |
||
3353 | </summary> |
||
3354 | </member> |
||
3355 | <member name="P:DotSpatial.Projections.ProjectionMessages.Culture"> |
||
3356 | <summary> |
||
3357 | Overrides the current thread's CurrentUICulture property for all |
||
3358 | resource lookups using this strongly typed resource class. |
||
3359 | </summary> |
||
3360 | </member> |
||
3361 | <member name="P:DotSpatial.Projections.ProjectionMessages.DuplicateTableName"> |
||
3362 | <summary> |
||
3363 | Looks up a localized string similar to The name %S was found for more than one lla Table in the Nad folder.. |
||
3364 | </summary> |
||
3365 | </member> |
||
3366 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err1_NoArguments"> |
||
3367 | <summary> |
||
3368 | Looks up a localized string similar to No arguments in initialization list. |
||
3369 | </summary> |
||
3370 | </member> |
||
3371 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err10_ZeroRecFlattening"> |
||
3372 | <summary> |
||
3373 | Looks up a localized string similar to The reciprocal flattening (1/f) = 0. |
||
3374 | </summary> |
||
3375 | </member> |
||
3376 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err11_LatitudeOutOfBounds"> |
||
3377 | <summary> |
||
3378 | Looks up a localized string similar to The Latitude was greater than 90 or less than -90. |
||
3379 | </summary> |
||
3380 | </member> |
||
3381 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err12_ESquareNegative"> |
||
3382 | <summary> |
||
3383 | Looks up a localized string similar to The square of eccentricity cannot be a negative value.. |
||
3384 | </summary> |
||
3385 | </member> |
||
3386 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err13_NoMajorRadius"> |
||
3387 | <summary> |
||
3388 | Looks up a localized string similar to The given semi-major axis was 0 or not given.. |
||
3389 | </summary> |
||
3390 | </member> |
||
3391 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err14_LatLonOutOfBounds"> |
||
3392 | <summary> |
||
3393 | Looks up a localized string similar to The Latitude or Longitude exceeded limits. |
||
3394 | </summary> |
||
3395 | </member> |
||
3396 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err15_InvalidXY"> |
||
3397 | <summary> |
||
3398 | Looks up a localized string similar to The cartesian X or Y coordinate was invalid. |
||
3399 | </summary> |
||
3400 | </member> |
||
3401 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err16_ImproperDMS"> |
||
3402 | <summary> |
||
3403 | Looks up a localized string similar to The Degree Minute Second value is formed imporperly. |
||
3404 | </summary> |
||
3405 | </member> |
||
3406 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err17_NonConvergentRMeridDist"> |
||
3407 | <summary> |
||
3408 | Looks up a localized string similar to The inverse meridinal distance was non-convergent. |
||
3409 | </summary> |
||
3410 | </member> |
||
3411 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err18_NonConvergentRPhi2"> |
||
3412 | <summary> |
||
3413 | Looks up a localized string similar to The inverse Phi2 value was non-converngent. |
||
3414 | </summary> |
||
3415 | </member> |
||
3416 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err19_TrigException"> |
||
3417 | <summary> |
||
3418 | Looks up a localized string similar to The ArcCosign or ArcSign value was too large.. |
||
3419 | </summary> |
||
3420 | </member> |
||
3421 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err2_NoOptions"> |
||
3422 | <summary> |
||
3423 | Looks up a localized string similar to No options found in 'init' file. |
||
3424 | </summary> |
||
3425 | </member> |
||
3426 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err20_ToleranceConditionError"> |
||
3427 | <summary> |
||
3428 | Looks up a localized string similar to Tolerance Condition Error. |
||
3429 | </summary> |
||
3430 | </member> |
||
3431 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err21_ConicLatitudeError"> |
||
3432 | <summary> |
||
3433 | Looks up a localized string similar to The conic lat_1 value cannot be its -lat_2. |
||
3434 | </summary> |
||
3435 | </member> |
||
3436 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err22_Lat1TooLarge"> |
||
3437 | <summary> |
||
3438 | Looks up a localized string similar to Latitude 1 cannot be greater than or equal to 90. |
||
3439 | </summary> |
||
3440 | </member> |
||
3441 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err23_Lat1TooSmall"> |
||
3442 | <summary> |
||
3443 | Looks up a localized string similar to Latitude 2 cannot be equal to 0. |
||
3444 | </summary> |
||
3445 | </member> |
||
3446 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err24_Lat_tsTooLarge"> |
||
3447 | <summary> |
||
3448 | Looks up a localized string similar to The lat_ts parameter cannot be greater than or equal to 90. |
||
3449 | </summary> |
||
3450 | </member> |
||
3451 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err25_NoControlPtSeparation"> |
||
3452 | <summary> |
||
3453 | Looks up a localized string similar to There was no distance between the control points. |
||
3454 | </summary> |
||
3455 | </member> |
||
3456 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err26_ProjectionNotRotated"> |
||
3457 | <summary> |
||
3458 | Looks up a localized string similar to Projection not selected to be rotated. |
||
3459 | </summary> |
||
3460 | </member> |
||
3461 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err27_WorMTooSmall"> |
||
3462 | <summary> |
||
3463 | Looks up a localized string similar to W <= 0 or M <= 0. |
||
3464 | </summary> |
||
3465 | </member> |
||
3466 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err28_LsatOutOfBounds"> |
||
3467 | <summary> |
||
3468 | Looks up a localized string similar to lsat not in 1-5 range. |
||
3469 | </summary> |
||
3470 | </member> |
||
3471 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err29_PathNotInRange"> |
||
3472 | <summary> |
||
3473 | Looks up a localized string similar to Path not in range. |
||
3474 | </summary> |
||
3475 | </member> |
||
3476 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err3_NoColon"> |
||
3477 | <summary> |
||
3478 | Looks up a localized string similar to No colon in init= string. |
||
3479 | </summary> |
||
3480 | </member> |
||
3481 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err30_HTooSmall"> |
||
3482 | <summary> |
||
3483 | Looks up a localized string similar to H was negative or 0. |
||
3484 | </summary> |
||
3485 | </member> |
||
3486 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err31_KTooSmall"> |
||
3487 | <summary> |
||
3488 | Looks up a localized string similar to K was less than 0. |
||
3489 | </summary> |
||
3490 | </member> |
||
3491 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err32_LatOutOfBounds"> |
||
3492 | <summary> |
||
3493 | Looks up a localized string similar to The central latitude was 0 or 90 or alpha = 90. |
||
3494 | </summary> |
||
3495 | </member> |
||
3496 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err33_InvalidLatitudes"> |
||
3497 | <summary> |
||
3498 | Looks up a localized string similar to Lat_1 = lat_2 or lat_1 = 0 or lat_2 = 90. |
||
3499 | </summary> |
||
3500 | </member> |
||
3501 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err34_EllipticalRequired"> |
||
3502 | <summary> |
||
3503 | Looks up a localized string similar to Elliptical Usage Required. |
||
3504 | </summary> |
||
3505 | </member> |
||
3506 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err35_InvalidUTMZone"> |
||
3507 | <summary> |
||
3508 | Looks up a localized string similar to The UTM zone parameter was invalid. |
||
3509 | </summary> |
||
3510 | </member> |
||
3511 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err36_TchebyException"> |
||
3512 | <summary> |
||
3513 | Looks up a localized string similar to The arguments were out of range for Tcheby eval. |
||
3514 | </summary> |
||
3515 | </member> |
||
3516 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err37_ProjNotFound"> |
||
3517 | <summary> |
||
3518 | Looks up a localized string similar to Failed to find projection to be rotated. |
||
3519 | </summary> |
||
3520 | </member> |
||
3521 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err38_CorrectionNotFound"> |
||
3522 | <summary> |
||
3523 | Looks up a localized string similar to Failed to load NAD27-83 correction file. |
||
3524 | </summary> |
||
3525 | </member> |
||
3526 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err39_NorMnotSpecified"> |
||
3527 | <summary> |
||
3528 | Looks up a localized string similar to Both n and m must be specified and > 0. |
||
3529 | </summary> |
||
3530 | </member> |
||
3531 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err4_NotNamed"> |
||
3532 | <summary> |
||
3533 | Looks up a localized string similar to Projection not named. |
||
3534 | </summary> |
||
3535 | </member> |
||
3536 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err40_InvalidN"> |
||
3537 | <summary> |
||
3538 | Looks up a localized string similar to N<= 0, n > 1 or not specified. |
||
3539 | </summary> |
||
3540 | </member> |
||
3541 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err41_Lat1OrLat2Missing"> |
||
3542 | <summary> |
||
3543 | Looks up a localized string similar to lat_1 or lat_2 not specified. |
||
3544 | </summary> |
||
3545 | </member> |
||
3546 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err42_Lat1EqualsLat2"> |
||
3547 | <summary> |
||
3548 | Looks up a localized string similar to |lat_1| =|lat_2| . |
||
3549 | </summary> |
||
3550 | </member> |
||
3551 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err43_MeanLatError"> |
||
3552 | <summary> |
||
3553 | Looks up a localized string similar to lat_0 is pi/2 from mean lat. |
||
3554 | </summary> |
||
3555 | </member> |
||
3556 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err44_CoordinateUnreadable"> |
||
3557 | <summary> |
||
3558 | Looks up a localized string similar to Failed to parse coordinate system definition. |
||
3559 | </summary> |
||
3560 | </member> |
||
3561 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err45_GeocentricMissingZ"> |
||
3562 | <summary> |
||
3563 | Looks up a localized string similar to Geocentric transformation missing z or ellips. |
||
3564 | </summary> |
||
3565 | </member> |
||
3566 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err46_UknownPMID"> |
||
3567 | <summary> |
||
3568 | Looks up a localized string similar to Uknown prime meridian conversion ID. |
||
3569 | </summary> |
||
3570 | </member> |
||
3571 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err5_UknownProjection"> |
||
3572 | <summary> |
||
3573 | Looks up a localized string similar to UnknownProjectionId. |
||
3574 | </summary> |
||
3575 | </member> |
||
3576 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err6_EffectiveEccentricity1"> |
||
3577 | <summary> |
||
3578 | Looks up a localized string similar to Effective eccentricity = 1. |
||
3579 | </summary> |
||
3580 | </member> |
||
3581 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err7_UknownUnitID"> |
||
3582 | <summary> |
||
3583 | Looks up a localized string similar to Unkown unit conversion ID. |
||
3584 | </summary> |
||
3585 | </member> |
||
3586 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err8_Invalidboolean"> |
||
3587 | <summary> |
||
3588 | Looks up a localized string similar to Invalid boolean parameter argument. |
||
3589 | </summary> |
||
3590 | </member> |
||
3591 | <member name="P:DotSpatial.Projections.ProjectionMessages.Err9_UknownEllipse"> |
||
3592 | <summary> |
||
3593 | Looks up a localized string similar to The elliptical parameter ellps= was unkown. |
||
3594 | </summary> |
||
3595 | </member> |
||
3596 | <member name="P:DotSpatial.Projections.ProjectionMessages.IndexMismatch"> |
||
3597 | <summary> |
||
3598 | Looks up a localized string similar to There was an index mismatch problem with the specified file.. |
||
3599 | </summary> |
||
3600 | </member> |
||
3601 | <member name="P:DotSpatial.Projections.ProjectionMessages.InverseShiftFailed"> |
||
3602 | <summary> |
||
3603 | Looks up a localized string similar to Inverse grid shift iteration faield, presumably at grid edge. Using first approximation.. |
||
3604 | </summary> |
||
3605 | </member> |
||
3606 | <member name="P:DotSpatial.Projections.ProjectionMessages.InvShiftConvergeFailed"> |
||
3607 | <summary> |
||
3608 | Looks up a localized string similar to Inverse grid shift iterator failed to converge.. |
||
3609 | </summary> |
||
3610 | </member> |
||
3611 | <member name="T:DotSpatial.Projections.ProjectedCategories.UtmNad1927"> |
||
3612 | <summary> |
||
3613 | UtmNad1927 |
||
3614 | </summary> |
||
3615 | </member> |
||
3616 | <member name="M:DotSpatial.Projections.ProjectedCategories.UtmNad1927.#ctor"> |
||
3617 | <summary> |
||
3618 | Creates a new instance of UtmNad1927 |
||
3619 | </summary> |
||
3620 | </member> |
||
3621 | <member name="T:DotSpatial.Projections.ProjectedCategories.TransverseMercatorSystems"> |
||
3622 | <summary> |
||
3623 | TransverseMercator |
||
3624 | </summary> |
||
3625 | </member> |
||
3626 | <member name="M:DotSpatial.Projections.ProjectedCategories.TransverseMercatorSystems.#ctor"> |
||
3627 | <summary> |
||
3628 | Creates a new instance of TransverseMercator |
||
3629 | </summary> |
||
3630 | </member> |
||
3631 | <member name="T:DotSpatial.Projections.ProjectedCategories.NationalGridsNewZealand"> |
||
3632 | <summary> |
||
3633 | NationalGridsNewZealand |
||
3634 | </summary> |
||
3635 | </member> |
||
3636 | <member name="M:DotSpatial.Projections.ProjectedCategories.NationalGridsNewZealand.#ctor"> |
||
3637 | <summary> |
||
3638 | Creates a new instance of NationalGridsNewZealand |
||
3639 | </summary> |
||
3640 | </member> |
||
3641 | <member name="T:DotSpatial.Projections.GeographicSystems"> |
||
3642 | <summary> |
||
3643 | GeographicSystems |
||
3644 | </summary> |
||
3645 | </member> |
||
3646 | <member name="M:DotSpatial.Projections.GeographicSystems.#ctor"> |
||
3647 | <summary> |
||
3648 | Creates a new instance of GeographicSystems |
||
3649 | </summary> |
||
3650 | </member> |
||
3651 | <member name="M:DotSpatial.Projections.GeographicSystems.GetCategory(System.String)"> |
||
3652 | <summary> |
||
3653 | Given the string name, this will return the specified coordinate category |
||
3654 | </summary> |
||
3655 | <param name="name"></param> |
||
3656 | <returns></returns> |
||
3657 | </member> |
||
3658 | <member name="P:DotSpatial.Projections.GeographicSystems.Names"> |
||
3659 | <summary> |
||
3660 | Gets an array of all the names of the coordinate system categories |
||
3661 | in this collection of systems. |
||
3662 | </summary> |
||
3663 | </member> |
||
3664 | <member name="T:DotSpatial.Projections.KnownTransform"> |
||
3665 | <summary> |
||
3666 | KnownTransforms |
||
3667 | </summary> |
||
3668 | </member> |
||
3669 | <member name="F:DotSpatial.Projections.KnownTransform.Aitoff"> |
||
3670 | <summary> |
||
3671 | Aitoff |
||
3672 | </summary> |
||
3673 | </member> |
||
3674 | <member name="F:DotSpatial.Projections.KnownTransform.Albers_Equal_Area"> |
||
3675 | <summary> |
||
3676 | Albers Equal Area |
||
3677 | </summary> |
||
3678 | </member> |
||
3679 | <member name="F:DotSpatial.Projections.KnownTransform.Azimuthal_Equidistant"> |
||
3680 | <summary> |
||
3681 | Azimuthal Equidistant |
||
3682 | </summary> |
||
3683 | </member> |
||
3684 | <member name="F:DotSpatial.Projections.KnownTransform.Bipolar_Oblique_Conformal_Conic"> |
||
3685 | <summary> |
||
3686 | Bipolar Oblique Conformal Conic |
||
3687 | </summary> |
||
3688 | </member> |
||
3689 | <member name="F:DotSpatial.Projections.KnownTransform.Bonne"> |
||
3690 | <summary> |
||
3691 | Bonne |
||
3692 | </summary> |
||
3693 | </member> |
||
3694 | <member name="F:DotSpatial.Projections.KnownTransform.Cassini"> |
||
3695 | <summary> |
||
3696 | Cassini |
||
3697 | </summary> |
||
3698 | </member> |
||
3699 | <member name="F:DotSpatial.Projections.KnownTransform.Craster_Parabolic"> |
||
3700 | <summary> |
||
3701 | Craster Parabolic |
||
3702 | </summary> |
||
3703 | </member> |
||
3704 | <member name="F:DotSpatial.Projections.KnownTransform.Cylindrical_Equal_Area"> |
||
3705 | <summary> |
||
3706 | Cylindrical Equal Area |
||
3707 | </summary> |
||
3708 | </member> |
||
3709 | <member name="F:DotSpatial.Projections.KnownTransform.Eckert_I"> |
||
3710 | <summary> |
||
3711 | Eckert 1 |
||
3712 | </summary> |
||
3713 | </member> |
||
3714 | <member name="F:DotSpatial.Projections.KnownTransform.Eckert_II"> |
||
3715 | <summary> |
||
3716 | Eckert 2 |
||
3717 | </summary> |
||
3718 | </member> |
||
3719 | <member name="F:DotSpatial.Projections.KnownTransform.Eckert_III"> |
||
3720 | <summary> |
||
3721 | Eckert 3 |
||
3722 | </summary> |
||
3723 | </member> |
||
3724 | <member name="F:DotSpatial.Projections.KnownTransform.Eckert_IV"> |
||
3725 | <summary> |
||
3726 | Eckert 4 |
||
3727 | </summary> |
||
3728 | </member> |
||
3729 | <member name="F:DotSpatial.Projections.KnownTransform.Eckert_V"> |
||
3730 | <summary> |
||
3731 | Eckert 5 |
||
3732 | </summary> |
||
3733 | </member> |
||
3734 | <member name="F:DotSpatial.Projections.KnownTransform.Eckert_VI"> |
||
3735 | <summary> |
||
3736 | Eckert 6 |
||
3737 | </summary> |
||
3738 | </member> |
||
3739 | <member name="F:DotSpatial.Projections.KnownTransform.Elliptical_Transform"> |
||
3740 | <summary> |
||
3741 | Elliptical Transform |
||
3742 | </summary> |
||
3743 | </member> |
||
3744 | <member name="F:DotSpatial.Projections.KnownTransform.Equidistant_Conic"> |
||
3745 | <summary> |
||
3746 | Equidistant Conic |
||
3747 | </summary> |
||
3748 | </member> |
||
3749 | <member name="F:DotSpatial.Projections.KnownTransform.Equidistant_Cylindrical"> |
||
3750 | <summary> |
||
3751 | Equidistant_Cylindrical |
||
3752 | </summary> |
||
3753 | </member> |
||
3754 | <member name="F:DotSpatial.Projections.KnownTransform.Foucaut"> |
||
3755 | <summary> |
||
3756 | Foucaut |
||
3757 | </summary> |
||
3758 | </member> |
||
3759 | <member name="F:DotSpatial.Projections.KnownTransform.Gall_Stereographic"> |
||
3760 | <summary> |
||
3761 | Gall Stereographic |
||
3762 | </summary> |
||
3763 | </member> |
||
3764 | <member name="F:DotSpatial.Projections.KnownTransform.General_Sinusoidal"> |
||
3765 | <summary> |
||
3766 | General Sinusoidal |
||
3767 | </summary> |
||
3768 | </member> |
||
3769 | <member name="F:DotSpatial.Projections.KnownTransform.Geostationary_Satellite"> |
||
3770 | <summary> |
||
3771 | Geostationary Satellite |
||
3772 | </summary> |
||
3773 | </member> |
||
3774 | <member name="F:DotSpatial.Projections.KnownTransform.Gnomonic"> |
||
3775 | <summary> |
||
3776 | Gnomonic |
||
3777 | </summary> |
||
3778 | </member> |
||
3779 | <member name="F:DotSpatial.Projections.KnownTransform.Goode_Homolosine"> |
||
3780 | <summary> |
||
3781 | Goode Homolosine |
||
3782 | </summary> |
||
3783 | </member> |
||
3784 | <member name="F:DotSpatial.Projections.KnownTransform.Hammer_Aitoff"> |
||
3785 | <summary> |
||
3786 | Hammer Aitoff |
||
3787 | </summary> |
||
3788 | </member> |
||
3789 | <member name="F:DotSpatial.Projections.KnownTransform.Kavraisky_V"> |
||
3790 | <summary> |
||
3791 | Kavraisky 5 |
||
3792 | </summary> |
||
3793 | </member> |
||
3794 | <member name="F:DotSpatial.Projections.KnownTransform.Kavraisky_VII"> |
||
3795 | <summary> |
||
3796 | Kavraisky 7 |
||
3797 | </summary> |
||
3798 | </member> |
||
3799 | <member name="F:DotSpatial.Projections.KnownTransform.Krovak"> |
||
3800 | <summary> |
||
3801 | Krovak |
||
3802 | </summary> |
||
3803 | </member> |
||
3804 | <member name="F:DotSpatial.Projections.KnownTransform.Lambert_Azimuthal_Equal_Area"> |
||
3805 | <summary> |
||
3806 | Lambert Azimuthal Equal Area |
||
3807 | </summary> |
||
3808 | </member> |
||
3809 | <member name="F:DotSpatial.Projections.KnownTransform.Lambert_Conformal_Conic"> |
||
3810 | <summary> |
||
3811 | Lambert Conformal Conic |
||
3812 | </summary> |
||
3813 | </member> |
||
3814 | <member name="F:DotSpatial.Projections.KnownTransform.Lambert_Equal_Area_Conic"> |
||
3815 | <summary> |
||
3816 | Lambert Equal Area Conic |
||
3817 | </summary> |
||
3818 | </member> |
||
3819 | <member name="F:DotSpatial.Projections.KnownTransform.LongLat"> |
||
3820 | <summary> |
||
3821 | Latitude / Longitude |
||
3822 | </summary> |
||
3823 | </member> |
||
3824 | <member name="F:DotSpatial.Projections.KnownTransform.Loximuthal"> |
||
3825 | <summary> |
||
3826 | Loximuthal |
||
3827 | </summary> |
||
3828 | </member> |
||
3829 | <member name="F:DotSpatial.Projections.KnownTransform.McBryde_Thomas_Flat_Polar_Sine"> |
||
3830 | <summary> |
||
3831 | McBryde Thomas Flat Polar Sine |
||
3832 | </summary> |
||
3833 | </member> |
||
3834 | <member name="F:DotSpatial.Projections.KnownTransform.Mercator"> |
||
3835 | <summary> |
||
3836 | Mercator |
||
3837 | </summary> |
||
3838 | </member> |
||
3839 | <member name="F:DotSpatial.Projections.KnownTransform.Miller_Cylindrical"> |
||
3840 | <summary> |
||
3841 | Miller Cylindrical |
||
3842 | </summary> |
||
3843 | </member> |
||
3844 | <member name="F:DotSpatial.Projections.KnownTransform.Mollweide"> |
||
3845 | <summary> |
||
3846 | Mollweide |
||
3847 | </summary> |
||
3848 | </member> |
||
3849 | <member name="F:DotSpatial.Projections.KnownTransform.New_Zealand_Map_Grid"> |
||
3850 | <summary> |
||
3851 | New Zealand Map Grid |
||
3852 | </summary> |
||
3853 | </member> |
||
3854 | <member name="F:DotSpatial.Projections.KnownTransform.Oblique_Cylindrical_Equal_Area"> |
||
3855 | <summary> |
||
3856 | Oblique Cylindrical Equal Area |
||
3857 | </summary> |
||
3858 | </member> |
||
3859 | <member name="F:DotSpatial.Projections.KnownTransform.Oblique_Mercator"> |
||
3860 | <summary> |
||
3861 | Oblique Mercator |
||
3862 | </summary> |
||
3863 | </member> |
||
3864 | <member name="F:DotSpatial.Projections.KnownTransform.Oblique_Stereographic_Alternative"> |
||
3865 | <summary> |
||
3866 | Oblique Stereographic Alternative |
||
3867 | </summary> |
||
3868 | </member> |
||
3869 | <member name="F:DotSpatial.Projections.KnownTransform.Orthographic"> |
||
3870 | <summary> |
||
3871 | Orthographic |
||
3872 | </summary> |
||
3873 | </member> |
||
3874 | <member name="F:DotSpatial.Projections.KnownTransform.Polyconic"> |
||
3875 | <summary> |
||
3876 | Polyconic |
||
3877 | </summary> |
||
3878 | </member> |
||
3879 | <member name="F:DotSpatial.Projections.KnownTransform.Putins_P1"> |
||
3880 | <summary> |
||
3881 | PutinsP1 |
||
3882 | </summary> |
||
3883 | </member> |
||
3884 | <member name="F:DotSpatial.Projections.KnownTransform.Quartic_Authalic"> |
||
3885 | <summary> |
||
3886 | Quartic Authalic |
||
3887 | </summary> |
||
3888 | </member> |
||
3889 | <member name="F:DotSpatial.Projections.KnownTransform.Robinson"> |
||
3890 | <summary> |
||
3891 | Robinson |
||
3892 | </summary> |
||
3893 | </member> |
||
3894 | <member name="F:DotSpatial.Projections.KnownTransform.Sinusoidal"> |
||
3895 | <summary> |
||
3896 | Sinusoidal |
||
3897 | </summary> |
||
3898 | </member> |
||
3899 | <member name="F:DotSpatial.Projections.KnownTransform.Stereographic"> |
||
3900 | <summary> |
||
3901 | Stereographic |
||
3902 | </summary> |
||
3903 | </member> |
||
3904 | <member name="F:DotSpatial.Projections.KnownTransform.Swiss_Oblique_Mercator"> |
||
3905 | <summary> |
||
3906 | Swiss Oblique Mercator |
||
3907 | </summary> |
||
3908 | </member> |
||
3909 | <member name="F:DotSpatial.Projections.KnownTransform.Transverse_Mercator"> |
||
3910 | <summary> |
||
3911 | Transverse Mercator |
||
3912 | </summary> |
||
3913 | </member> |
||
3914 | <member name="F:DotSpatial.Projections.KnownTransform.Two_Point_Equidistant"> |
||
3915 | <summary> |
||
3916 | Two Point Equidistant |
||
3917 | </summary> |
||
3918 | </member> |
||
3919 | <member name="F:DotSpatial.Projections.KnownTransform.Universal_Polar_Stereographic"> |
||
3920 | <summary> |
||
3921 | Universal Polar Stereographic |
||
3922 | </summary> |
||
3923 | </member> |
||
3924 | <member name="F:DotSpatial.Projections.KnownTransform.Universal_Transverse_Mercator"> |
||
3925 | <summary> |
||
3926 | Universal Transverse Mercator |
||
3927 | </summary> |
||
3928 | </member> |
||
3929 | <member name="F:DotSpatial.Projections.KnownTransform.Vander_Grinten_I"> |
||
3930 | <summary> |
||
3931 | Vander Grinten 1 |
||
3932 | </summary> |
||
3933 | </member> |
||
3934 | <member name="F:DotSpatial.Projections.KnownTransform.Wagner_IV"> |
||
3935 | <summary> |
||
3936 | Wagner 4 |
||
3937 | </summary> |
||
3938 | </member> |
||
3939 | <member name="F:DotSpatial.Projections.KnownTransform.Wagner_V"> |
||
3940 | <summary> |
||
3941 | Wagner 5 |
||
3942 | </summary> |
||
3943 | </member> |
||
3944 | <member name="F:DotSpatial.Projections.KnownTransform.Wagner6"> |
||
3945 | <summary> |
||
3946 | Wagner 6 |
||
3947 | </summary> |
||
3948 | </member> |
||
3949 | <member name="F:DotSpatial.Projections.KnownTransform.Winkel_I"> |
||
3950 | <summary> |
||
3951 | Winkel 1 |
||
3952 | </summary> |
||
3953 | </member> |
||
3954 | <member name="F:DotSpatial.Projections.KnownTransform.Winkel_II"> |
||
3955 | <summary> |
||
3956 | Winkel 2 |
||
3957 | </summary> |
||
3958 | </member> |
||
3959 | <member name="F:DotSpatial.Projections.KnownTransform.Winkel_Tripel"> |
||
3960 | <summary> |
||
3961 | Winkel Tripel |
||
3962 | </summary> |
||
3963 | </member> |
||
3964 | <member name="T:DotSpatial.Projections.HotineObliqueMercatorAzimuthCenter"> |
||
3965 | <summary> |
||
3966 | HotineObliqueMercatorAzimuthalCenter - Used to properly direct the Swiss Oblique Mercator |
||
3967 | when it appears as Hotine Oblique Mercator Azimuthal Center. At current, the Azimuth |
||
3968 | parameter is ignored as I don't know how to send it into Proj4. |
||
3969 | </summary> |
||
3970 | </member> |
||
3971 | <member name="M:DotSpatial.Projections.HotineObliqueMercatorAzimuthCenter.#ctor"> |
||
3972 | <summary> |
||
3973 | Creates a new instance of HotineObliqueMercatorAzimuthalCenter |
||
3974 | </summary> |
||
3975 | </member> |
||
3976 | <member name="T:DotSpatial.Projections.HammerAitoff"> |
||
3977 | <summary> |
||
3978 | HammerAitoff |
||
3979 | </summary> |
||
3980 | </member> |
||
3981 | <member name="M:DotSpatial.Projections.HammerAitoff.#ctor"> |
||
3982 | <summary> |
||
3983 | Creates a new instance of HammerAitoff |
||
3984 | </summary> |
||
3985 | </member> |
||
3986 | <member name="M:DotSpatial.Projections.HammerAitoff.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
3987 | <inheritdoc /> |
||
3988 | </member> |
||
3989 | <member name="M:DotSpatial.Projections.HammerAitoff.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
3990 | <summary> |
||
3991 | Initializes the transform using the parameters from the specified coordinate system information |
||
3992 | </summary> |
||
3993 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
3994 | </member> |
||
3995 | <member name="T:DotSpatial.Projections.ProjectedCategories.GaussKrugerBeijing1954"> |
||
3996 | <summary> |
||
3997 | GaussKrugerBeijing1954 |
||
3998 | </summary> |
||
3999 | </member> |
||
4000 | <member name="M:DotSpatial.Projections.ProjectedCategories.GaussKrugerBeijing1954.#ctor"> |
||
4001 | <summary> |
||
4002 | Creates a new instance of GaussKrugerBeijing1954 |
||
4003 | </summary> |
||
4004 | </member> |
||
4005 | <member name="T:DotSpatial.Projections.NadTables"> |
||
4006 | <summary> |
||
4007 | NadTables |
||
4008 | </summary> |
||
4009 | </member> |
||
4010 | <member name="M:DotSpatial.Projections.NadTables.#ctor"> |
||
4011 | <summary> |
||
4012 | Creates a new instance of NadTables |
||
4013 | </summary> |
||
4014 | </member> |
||
4015 | <member name="P:DotSpatial.Projections.NadTables.Tables"> |
||
4016 | <summary> |
||
4017 | Gets an array of the lla tables that have been added as a resource |
||
4018 | </summary> |
||
4019 | </member> |
||
4020 | <member name="T:DotSpatial.Projections.MeridionalDistance"> |
||
4021 | <summary> |
||
4022 | MeridinalDistance |
||
4023 | </summary> |
||
4024 | </member> |
||
4025 | <member name="M:DotSpatial.Projections.MeridionalDistance.GetEn(System.Double)"> |
||
4026 | <summary> |
||
4027 | Formerly pj_enfn from Proj4 |
||
4028 | </summary> |
||
4029 | <param name="es"></param> |
||
4030 | <returns></returns> |
||
4031 | </member> |
||
4032 | <member name="M:DotSpatial.Projections.MeridionalDistance.MeridionalLength(System.Double,System.Double,System.Double,System.Double[])"> |
||
4033 | <summary> |
||
4034 | Formerly pj_mlfn |
||
4035 | Given geodetic angular displacement phi, this calculates the equivalent meridional distance |
||
4036 | </summary> |
||
4037 | <param name="phi">The geodetic angular displacement</param> |
||
4038 | <param name="sphi"></param> |
||
4039 | <param name="cphi"></param> |
||
4040 | <param name="en"></param> |
||
4041 | <returns></returns> |
||
4042 | </member> |
||
4043 | <member name="M:DotSpatial.Projections.MeridionalDistance.AngularDistance(System.Double,System.Double,System.Double[])"> |
||
4044 | <summary> |
||
4045 | Formerly pj_inv_mlfn |
||
4046 | Given the linear distance, this calculates the equivalent geodetic angular displacement |
||
4047 | </summary> |
||
4048 | <param name="arg"></param> |
||
4049 | <param name="es"></param> |
||
4050 | <param name="en"></param> |
||
4051 | <returns></returns> |
||
4052 | </member> |
||
4053 | <member name="T:DotSpatial.Projections.GridShift"> |
||
4054 | <summary> |
||
4055 | GridShift |
||
4056 | </summary> |
||
4057 | </member> |
||
4058 | <member name="M:DotSpatial.Projections.GridShift.Apply(System.String[],System.Boolean,System.Double[],System.Int32,System.Int64)"> |
||
4059 | <summary> |
||
4060 | Applies either a forward or backward gridshift based on the specified name |
||
4061 | </summary> |
||
4062 | <param name="names"></param> |
||
4063 | <param name="inverse"></param> |
||
4064 | <param name="xy"></param> |
||
4065 | <param name="startIndex"></param> |
||
4066 | <param name="numPoints"></param> |
||
4067 | </member> |
||
4068 | <member name="M:DotSpatial.Projections.GridShift.NadInterpolate(DotSpatial.Projections.PhiLam,DotSpatial.Projections.NadTable)"> |
||
4069 | <summary> |
||
4070 | |||
4071 | </summary> |
||
4072 | <param name="t"></param> |
||
4073 | <param name="ct"></param> |
||
4074 | <returns></returns> |
||
4075 | </member> |
||
4076 | <member name="M:DotSpatial.Projections.GridShift.GetValue(System.Int32,System.Int32,DotSpatial.Projections.NadTable)"> |
||
4077 | <summary> |
||
4078 | Checks the edges to make sure that we are not attempting to interpolate |
||
4079 | from cells that don't exist. |
||
4080 | </summary> |
||
4081 | <param name="iPhi">The cell index in the phi direction</param> |
||
4082 | <param name="iLam">The cell index in the lambda direction</param> |
||
4083 | <param name="table">The Table with the values</param> |
||
4084 | <returns>A PhiLam that has the shift coefficeints.</returns> |
||
4085 | </member> |
||
4086 | <member name="T:DotSpatial.Projections.ProjCloneableEM"> |
||
4087 | <summary> |
||
4088 | CloneableEM |
||
4089 | </summary> |
||
4090 | </member> |
||
4091 | <member name="M:DotSpatial.Projections.ProjCloneableEM.Copy``1(``0)"> |
||
4092 | <summary> |
||
4093 | The type parameter T is optional, so the intended use would be like: |
||
4094 | ObjectType copy = myObject.Copy(); |
||
4095 | </summary> |
||
4096 | <typeparam name="T">The type of the object</typeparam> |
||
4097 | <param name="original">The original object</param> |
||
4098 | <returns>A new object of the same type as the type being copied.</returns> |
||
4099 | </member> |
||
4100 | <member name="T:DotSpatial.Projections.AuxiliarySphereType"> |
||
4101 | <summary> |
||
4102 | AuxiliarySphereTypes |
||
4103 | </summary> |
||
4104 | </member> |
||
4105 | <member name="F:DotSpatial.Projections.AuxiliarySphereType.NotSpecified"> |
||
4106 | <summary> |
||
4107 | This indicates that this parameter should not appear in the projection string. |
||
4108 | </summary> |
||
4109 | </member> |
||
4110 | <member name="F:DotSpatial.Projections.AuxiliarySphereType.SemimajorAxis"> |
||
4111 | <summary> |
||
4112 | Use semimajor axis or radius of the geographic coordinate system |
||
4113 | </summary> |
||
4114 | </member> |
||
4115 | <member name="F:DotSpatial.Projections.AuxiliarySphereType.SemiminorAxis"> |
||
4116 | <summary> |
||
4117 | Use semiminor axis or radius |
||
4118 | </summary> |
||
4119 | </member> |
||
4120 | <member name="F:DotSpatial.Projections.AuxiliarySphereType.Authalic"> |
||
4121 | <summary> |
||
4122 | Calculate and use authalic radius |
||
4123 | </summary> |
||
4124 | </member> |
||
4125 | <member name="F:DotSpatial.Projections.AuxiliarySphereType.AuthalicWithConvertedLatitudes"> |
||
4126 | <summary> |
||
4127 | Use authalic radius and convert geodetic latitudes to authalic latitudes |
||
4128 | </summary> |
||
4129 | </member> |
||
4130 | <member name="T:DotSpatial.Projections.Winkel2"> |
||
4131 | <summary> |
||
4132 | Winkel2 |
||
4133 | </summary> |
||
4134 | </member> |
||
4135 | <member name="M:DotSpatial.Projections.Winkel2.#ctor"> |
||
4136 | <summary> |
||
4137 | Creates a new instance of Winkel2 |
||
4138 | </summary> |
||
4139 | </member> |
||
4140 | <member name="M:DotSpatial.Projections.Winkel2.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
4141 | <summary> |
||
4142 | Initializes the transform using the parameters from the specified coordinate system information |
||
4143 | </summary> |
||
4144 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
4145 | </member> |
||
4146 | <member name="M:DotSpatial.Projections.Winkel2.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4147 | <inheritdoc /> |
||
4148 | </member> |
||
4149 | <member name="T:DotSpatial.Projections.StereographicNorthPole"> |
||
4150 | <summary> |
||
4151 | StereographicNorthPole |
||
4152 | </summary> |
||
4153 | </member> |
||
4154 | <member name="T:DotSpatial.Projections.Stereographic"> |
||
4155 | <summary> |
||
4156 | Stereographic |
||
4157 | </summary> |
||
4158 | </member> |
||
4159 | <member name="M:DotSpatial.Projections.Stereographic.#ctor"> |
||
4160 | <summary> |
||
4161 | Creates a new instance of Stereographic |
||
4162 | </summary> |
||
4163 | </member> |
||
4164 | <member name="M:DotSpatial.Projections.Stereographic.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4165 | <inheritdoc /> |
||
4166 | </member> |
||
4167 | <member name="M:DotSpatial.Projections.Stereographic.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4168 | <inheritdoc /> |
||
4169 | </member> |
||
4170 | <member name="M:DotSpatial.Projections.Stereographic.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4171 | <inheritdoc /> |
||
4172 | </member> |
||
4173 | <member name="M:DotSpatial.Projections.Stereographic.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4174 | <inheritdoc /> |
||
4175 | </member> |
||
4176 | <member name="M:DotSpatial.Projections.Stereographic.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
4177 | <summary> |
||
4178 | Initializes the transform using the parameters from the specified coordinate system information |
||
4179 | </summary> |
||
4180 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
4181 | </member> |
||
4182 | <member name="M:DotSpatial.Projections.StereographicNorthPole.#ctor"> |
||
4183 | <summary> |
||
4184 | Creates a new instance of StereographicNorthPole |
||
4185 | </summary> |
||
4186 | </member> |
||
4187 | <member name="T:DotSpatial.Projections.Gnomonic"> |
||
4188 | <summary> |
||
4189 | Gnomonic |
||
4190 | </summary> |
||
4191 | </member> |
||
4192 | <member name="M:DotSpatial.Projections.Gnomonic.#ctor"> |
||
4193 | <summary> |
||
4194 | Creates a new instance of Gnomonic |
||
4195 | </summary> |
||
4196 | </member> |
||
4197 | <member name="M:DotSpatial.Projections.Gnomonic.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4198 | <inheritdoc /> |
||
4199 | </member> |
||
4200 | <member name="M:DotSpatial.Projections.Gnomonic.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4201 | <inheritdoc /> |
||
4202 | </member> |
||
4203 | <member name="M:DotSpatial.Projections.Gnomonic.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
4204 | <summary> |
||
4205 | Initializes the transform using the parameters from the specified coordinate system information |
||
4206 | </summary> |
||
4207 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
4208 | </member> |
||
4209 | <member name="T:DotSpatial.Projections.Factors"> |
||
4210 | <summary> |
||
4211 | Factors |
||
4212 | </summary> |
||
4213 | </member> |
||
4214 | <member name="F:DotSpatial.Projections.Factors.Xl"> |
||
4215 | <summary> |
||
4216 | derivatives of x for lambda |
||
4217 | </summary> |
||
4218 | </member> |
||
4219 | <member name="F:DotSpatial.Projections.Factors.Xp"> |
||
4220 | <summary> |
||
4221 | derivatives of x for phi |
||
4222 | </summary> |
||
4223 | </member> |
||
4224 | <member name="F:DotSpatial.Projections.Factors.Yl"> |
||
4225 | <summary> |
||
4226 | derivatives of y for lambda |
||
4227 | </summary> |
||
4228 | </member> |
||
4229 | <member name="F:DotSpatial.Projections.Factors.Yp"> |
||
4230 | <summary> |
||
4231 | derivatives of y for phi |
||
4232 | </summary> |
||
4233 | </member> |
||
4234 | <member name="F:DotSpatial.Projections.Factors.H"> |
||
4235 | <summary> |
||
4236 | Meridinal scale |
||
4237 | </summary> |
||
4238 | </member> |
||
4239 | <member name="F:DotSpatial.Projections.Factors.K"> |
||
4240 | <summary> |
||
4241 | parallel scale |
||
4242 | </summary> |
||
4243 | </member> |
||
4244 | <member name="F:DotSpatial.Projections.Factors.Omega"> |
||
4245 | <summary> |
||
4246 | Angular distortion |
||
4247 | </summary> |
||
4248 | </member> |
||
4249 | <member name="F:DotSpatial.Projections.Factors.Thetap"> |
||
4250 | <summary> |
||
4251 | theta prime |
||
4252 | </summary> |
||
4253 | </member> |
||
4254 | <member name="F:DotSpatial.Projections.Factors.Conv"> |
||
4255 | <summary> |
||
4256 | Convergence |
||
4257 | </summary> |
||
4258 | </member> |
||
4259 | <member name="F:DotSpatial.Projections.Factors.S"> |
||
4260 | <summary> |
||
4261 | Areal scale factor |
||
4262 | </summary> |
||
4263 | </member> |
||
4264 | <member name="F:DotSpatial.Projections.Factors.A"> |
||
4265 | <summary> |
||
4266 | max scale error |
||
4267 | </summary> |
||
4268 | </member> |
||
4269 | <member name="F:DotSpatial.Projections.Factors.B"> |
||
4270 | <summary> |
||
4271 | min scale error |
||
4272 | </summary> |
||
4273 | </member> |
||
4274 | <member name="F:DotSpatial.Projections.Factors.Code"> |
||
4275 | <summary> |
||
4276 | Info as to analytics |
||
4277 | </summary> |
||
4278 | </member> |
||
4279 | <member name="T:DotSpatial.Projections.MercatorAuxiliarySphere"> |
||
4280 | <summary> |
||
4281 | Mercator |
||
4282 | </summary> |
||
4283 | </member> |
||
4284 | <member name="M:DotSpatial.Projections.MercatorAuxiliarySphere.#ctor"> |
||
4285 | <summary> |
||
4286 | Creates a new instance of Mercator |
||
4287 | </summary> |
||
4288 | </member> |
||
4289 | <member name="M:DotSpatial.Projections.MercatorAuxiliarySphere.EllipticalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4290 | <inheritdoc /> |
||
4291 | </member> |
||
4292 | <member name="M:DotSpatial.Projections.MercatorAuxiliarySphere.SphericalForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4293 | <inheritdoc /> |
||
4294 | </member> |
||
4295 | <member name="M:DotSpatial.Projections.MercatorAuxiliarySphere.EllipticalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4296 | <inheritdoc /> |
||
4297 | </member> |
||
4298 | <member name="M:DotSpatial.Projections.MercatorAuxiliarySphere.SphericalInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4299 | <inheritdoc /> |
||
4300 | </member> |
||
4301 | <member name="M:DotSpatial.Projections.MercatorAuxiliarySphere.Np(System.Double)"> |
||
4302 | <summary> |
||
4303 | n' is a calculation based on the eccentricity |
||
4304 | </summary> |
||
4305 | <param name="phi"></param> |
||
4306 | </member> |
||
4307 | <member name="M:DotSpatial.Projections.MercatorAuxiliarySphere.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
4308 | <summary> |
||
4309 | Initializes the transform using the parameters from the specified coordinate system information |
||
4310 | </summary> |
||
4311 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
4312 | </member> |
||
4313 | <member name="T:DotSpatial.Projections.ProjectedCategories.UtmOther"> |
||
4314 | <summary> |
||
4315 | UtmOther |
||
4316 | </summary> |
||
4317 | </member> |
||
4318 | <member name="M:DotSpatial.Projections.ProjectedCategories.UtmOther.#ctor"> |
||
4319 | <summary> |
||
4320 | Creates a new instance of UtmOther |
||
4321 | </summary> |
||
4322 | </member> |
||
4323 | <member name="T:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1983Feet"> |
||
4324 | <summary> |
||
4325 | StatePlaneNad1983Feet |
||
4326 | </summary> |
||
4327 | </member> |
||
4328 | <member name="M:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1983Feet.#ctor"> |
||
4329 | <summary> |
||
4330 | Creates a new instance of StatePlaneNad1983Feet |
||
4331 | </summary> |
||
4332 | </member> |
||
4333 | <member name="T:DotSpatial.Projections.ProjectedCategories.SpheroidBased"> |
||
4334 | <summary> |
||
4335 | SpheroidBased |
||
4336 | </summary> |
||
4337 | </member> |
||
4338 | <member name="F:DotSpatial.Projections.ProjectedCategories.SpheroidBased.Lambert2"> |
||
4339 | <summary> |
||
4340 | Lambert 2 (Central France) |
||
4341 | </summary> |
||
4342 | </member> |
||
4343 | <member name="F:DotSpatial.Projections.ProjectedCategories.SpheroidBased.Lambert2Wide"> |
||
4344 | <summary> |
||
4345 | Lambert 2 (Étendu) |
||
4346 | </summary> |
||
4347 | </member> |
||
4348 | <member name="M:DotSpatial.Projections.ProjectedCategories.SpheroidBased.#ctor"> |
||
4349 | <summary> |
||
4350 | Creates a new instance of SpheroidBased |
||
4351 | </summary> |
||
4352 | </member> |
||
4353 | <member name="T:DotSpatial.Projections.ProjectedCategories.NationalGrids"> |
||
4354 | <summary> |
||
4355 | NationalGrids |
||
4356 | </summary> |
||
4357 | </member> |
||
4358 | <member name="M:DotSpatial.Projections.ProjectedCategories.NationalGrids.#ctor"> |
||
4359 | <summary> |
||
4360 | Creates a new instance of NationalGrids |
||
4361 | </summary> |
||
4362 | </member> |
||
4363 | <member name="T:DotSpatial.Projections.ProjectedCategories.Europe"> |
||
4364 | <summary> |
||
4365 | Europe |
||
4366 | </summary> |
||
4367 | </member> |
||
4368 | <member name="M:DotSpatial.Projections.ProjectedCategories.Europe.#ctor"> |
||
4369 | <summary> |
||
4370 | Creates a new instance of Europe |
||
4371 | </summary> |
||
4372 | </member> |
||
4373 | <member name="T:DotSpatial.Projections.GridShiftTableFormat"> |
||
4374 | <summary> |
||
4375 | GridShiftTableFormats |
||
4376 | </summary> |
||
4377 | </member> |
||
4378 | <member name="F:DotSpatial.Projections.GridShiftTableFormat.DAT"> |
||
4379 | <summary> |
||
4380 | The data format used by ntv1 |
||
4381 | </summary> |
||
4382 | </member> |
||
4383 | <member name="F:DotSpatial.Projections.GridShiftTableFormat.GSB"> |
||
4384 | <summary> |
||
4385 | The data format used by ntv2 and many others |
||
4386 | </summary> |
||
4387 | </member> |
||
4388 | <member name="F:DotSpatial.Projections.GridShiftTableFormat.LLA"> |
||
4389 | <summary> |
||
4390 | The data format use by several other grid types |
||
4391 | </summary> |
||
4392 | </member> |
||
4393 | <member name="T:DotSpatial.Projections.DatNadTable"> |
||
4394 | <summary> |
||
4395 | Handles the specific case of dat files like the ntv1 file format. |
||
4396 | </summary> |
||
4397 | </member> |
||
4398 | <member name="M:DotSpatial.Projections.DatNadTable.#ctor(System.String)"> |
||
4399 | <summary> |
||
4400 | Creates a new instance of GsbNadTable |
||
4401 | </summary> |
||
4402 | </member> |
||
4403 | <member name="M:DotSpatial.Projections.DatNadTable.ReadHeader"> |
||
4404 | <inheritdoc></inheritdoc> |
||
4405 | </member> |
||
4406 | <member name="M:DotSpatial.Projections.DatNadTable.FillData"> |
||
4407 | <inheritdoc></inheritdoc> |
||
4408 | </member> |
||
4409 | <member name="T:DotSpatial.Projections.Winkel1"> |
||
4410 | <summary> |
||
4411 | Winkel1 |
||
4412 | </summary> |
||
4413 | </member> |
||
4414 | <member name="M:DotSpatial.Projections.Winkel1.#ctor"> |
||
4415 | <summary> |
||
4416 | Creates a new instance of Winkel1 |
||
4417 | </summary> |
||
4418 | </member> |
||
4419 | <member name="M:DotSpatial.Projections.Winkel1.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
4420 | <summary> |
||
4421 | Initializes the transform using the parameters from the specified coordinate system information |
||
4422 | </summary> |
||
4423 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
4424 | </member> |
||
4425 | <member name="M:DotSpatial.Projections.Winkel1.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4426 | <inheritdoc /> |
||
4427 | </member> |
||
4428 | <member name="M:DotSpatial.Projections.Winkel1.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4429 | <inheritdoc /> |
||
4430 | </member> |
||
4431 | <member name="T:DotSpatial.Projections.Gauss"> |
||
4432 | <summary> |
||
4433 | Gauss |
||
4434 | </summary> |
||
4435 | </member> |
||
4436 | <member name="M:DotSpatial.Projections.Gauss.#ctor(System.Double,System.Double,System.Double@,System.Double@)"> |
||
4437 | <summary> |
||
4438 | Creates a new instance of Gauss |
||
4439 | </summary> |
||
4440 | </member> |
||
4441 | <member name="M:DotSpatial.Projections.Gauss.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4442 | <inheritdoc /> |
||
4443 | </member> |
||
4444 | <member name="M:DotSpatial.Projections.Gauss.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4445 | <inheritdoc /> |
||
4446 | </member> |
||
4447 | <member name="T:DotSpatial.Projections.Eckert6"> |
||
4448 | <summary> |
||
4449 | Eckert6 |
||
4450 | </summary> |
||
4451 | </member> |
||
4452 | <member name="M:DotSpatial.Projections.Eckert6.#ctor"> |
||
4453 | <summary> |
||
4454 | Creates a new instance of Eckert6 |
||
4455 | </summary> |
||
4456 | </member> |
||
4457 | <member name="M:DotSpatial.Projections.Eckert6.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
4458 | <summary> |
||
4459 | Initializes the transform using the parameters from the specified coordinate system information |
||
4460 | </summary> |
||
4461 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
4462 | </member> |
||
4463 | <member name="T:DotSpatial.Projections.CrasterParabolic"> |
||
4464 | <summary> |
||
4465 | CrasterParabolic |
||
4466 | </summary> |
||
4467 | </member> |
||
4468 | <member name="M:DotSpatial.Projections.CrasterParabolic.#ctor"> |
||
4469 | <summary> |
||
4470 | Creates a new instance of CrasterParabolic |
||
4471 | </summary> |
||
4472 | </member> |
||
4473 | <member name="M:DotSpatial.Projections.CrasterParabolic.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4474 | <inheritdoc /> |
||
4475 | </member> |
||
4476 | <member name="M:DotSpatial.Projections.CrasterParabolic.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4477 | <inheritdoc /> |
||
4478 | </member> |
||
4479 | <member name="T:DotSpatial.Projections.ProjectionNames"> |
||
4480 | <summary> |
||
4481 | A strongly-typed resource class, for looking up localized strings, etc. |
||
4482 | </summary> |
||
4483 | </member> |
||
4484 | <member name="P:DotSpatial.Projections.ProjectionNames.ResourceManager"> |
||
4485 | <summary> |
||
4486 | Returns the cached ResourceManager instance used by this class. |
||
4487 | </summary> |
||
4488 | </member> |
||
4489 | <member name="P:DotSpatial.Projections.ProjectionNames.Culture"> |
||
4490 | <summary> |
||
4491 | Overrides the current thread's CurrentUICulture property for all |
||
4492 | resource lookups using this strongly typed resource class. |
||
4493 | </summary> |
||
4494 | </member> |
||
4495 | <member name="P:DotSpatial.Projections.ProjectionNames.Michigan"> |
||
4496 | <summary> |
||
4497 | Looks up a localized string similar to Michigan GeoRef (2008). |
||
4498 | </summary> |
||
4499 | </member> |
||
4500 | <member name="T:DotSpatial.Projections.ProjectedCategories.Polar"> |
||
4501 | <summary> |
||
4502 | Polar |
||
4503 | </summary> |
||
4504 | </member> |
||
4505 | <member name="M:DotSpatial.Projections.ProjectedCategories.Polar.#ctor"> |
||
4506 | <summary> |
||
4507 | Creates a new instance of Polar |
||
4508 | </summary> |
||
4509 | </member> |
||
4510 | <member name="T:DotSpatial.Projections.ProjectedCategories.NationalGridsCanada"> |
||
4511 | <summary> |
||
4512 | NationalGridsCanada |
||
4513 | </summary> |
||
4514 | </member> |
||
4515 | <member name="M:DotSpatial.Projections.ProjectedCategories.NationalGridsCanada.#ctor"> |
||
4516 | <summary> |
||
4517 | Creates a new instance of NationalGridsCanada |
||
4518 | </summary> |
||
4519 | </member> |
||
4520 | <member name="T:DotSpatial.Projections.ProjectedCategories.Asia"> |
||
4521 | <summary> |
||
4522 | Asia |
||
4523 | </summary> |
||
4524 | </member> |
||
4525 | <member name="M:DotSpatial.Projections.ProjectedCategories.Asia.#ctor"> |
||
4526 | <summary> |
||
4527 | Creates a new instance of Asia |
||
4528 | </summary> |
||
4529 | </member> |
||
4530 | <member name="T:DotSpatial.Projections.Proj4Ellipsoid"> |
||
4531 | <summary> |
||
4532 | Proj4Ellipsoids |
||
4533 | </summary> |
||
4534 | </member> |
||
4535 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Custom"> |
||
4536 | <summary> |
||
4537 | Custom will use the a parameter for the major axis and the |
||
4538 | rf parameter for the flattening divisor |
||
4539 | </summary> |
||
4540 | </member> |
||
4541 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Merit_1983"> |
||
4542 | <summary> |
||
4543 | MERIT 1983 |
||
4544 | </summary> |
||
4545 | </member> |
||
4546 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.SovietGeodeticSystem_1985"> |
||
4547 | <summary> |
||
4548 | Soviet Geodetic System 85 |
||
4549 | </summary> |
||
4550 | </member> |
||
4551 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.GRS_1980"> |
||
4552 | <summary> |
||
4553 | Geodetic Reference System 1980(IUGG, 1980) |
||
4554 | </summary> |
||
4555 | </member> |
||
4556 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.IAU_1976"> |
||
4557 | <summary> |
||
4558 | International Astronomical Union 1976 |
||
4559 | </summary> |
||
4560 | </member> |
||
4561 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Airy_1830"> |
||
4562 | <summary> |
||
4563 | Sir George Biddell Airy 1830 (Britain) |
||
4564 | </summary> |
||
4565 | </member> |
||
4566 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.AppPhysics_1965"> |
||
4567 | <summary> |
||
4568 | App. Physics. 1965 |
||
4569 | </summary> |
||
4570 | </member> |
||
4571 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.NavalWeaponsLab_1965"> |
||
4572 | <summary> |
||
4573 | Naval Weapons Lab., 1965 |
||
4574 | </summary> |
||
4575 | </member> |
||
4576 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.AiryModified"> |
||
4577 | <summary> |
||
4578 | Modified Airy |
||
4579 | </summary> |
||
4580 | </member> |
||
4581 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Andrae_1876"> |
||
4582 | <summary> |
||
4583 | Andrae 1876 (Den., Iclnd.) |
||
4584 | </summary> |
||
4585 | </member> |
||
4586 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Austrailia_SouthAmerica"> |
||
4587 | <summary> |
||
4588 | Austrailian National and South American 1969 |
||
4589 | </summary> |
||
4590 | </member> |
||
4591 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.GRS_1967"> |
||
4592 | <summary> |
||
4593 | Geodetic Reference System 67 (IUGG 1967) |
||
4594 | </summary> |
||
4595 | </member> |
||
4596 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Bessel_1841"> |
||
4597 | <summary> |
||
4598 | Bessel 1841 |
||
4599 | </summary> |
||
4600 | </member> |
||
4601 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.BesselNamibia"> |
||
4602 | <summary> |
||
4603 | Bessel 1841 (Namibia) |
||
4604 | </summary> |
||
4605 | </member> |
||
4606 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Clarke_1866"> |
||
4607 | <summary> |
||
4608 | Clarke 1866 |
||
4609 | </summary> |
||
4610 | </member> |
||
4611 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.ClarkeModified_1880"> |
||
4612 | <summary> |
||
4613 | Clarke 1880 Modified |
||
4614 | </summary> |
||
4615 | </member> |
||
4616 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.CPM_1799"> |
||
4617 | <summary> |
||
4618 | Comm. des Poids et Mesures 1799 |
||
4619 | </summary> |
||
4620 | </member> |
||
4621 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Delambre_1810"> |
||
4622 | <summary> |
||
4623 | Delambre 1810 (Belgium) |
||
4624 | </summary> |
||
4625 | </member> |
||
4626 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Engelis_1985"> |
||
4627 | <summary> |
||
4628 | Engelis 1985 |
||
4629 | </summary> |
||
4630 | </member> |
||
4631 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Everest_1830"> |
||
4632 | <summary> |
||
4633 | Everest 1830 |
||
4634 | </summary> |
||
4635 | </member> |
||
4636 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Everest_1948"> |
||
4637 | <summary> |
||
4638 | Everest 1948 |
||
4639 | </summary> |
||
4640 | </member> |
||
4641 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Everest_1956"> |
||
4642 | <summary> |
||
4643 | Everest 1956 |
||
4644 | </summary> |
||
4645 | </member> |
||
4646 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Everest_1969"> |
||
4647 | <summary> |
||
4648 | Everest 1969 |
||
4649 | </summary> |
||
4650 | </member> |
||
4651 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Everest_SS"> |
||
4652 | <summary> |
||
4653 | Everest (Sabah and Sarawak) |
||
4654 | </summary> |
||
4655 | </member> |
||
4656 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Everest_Pakistan"> |
||
4657 | <summary> |
||
4658 | Everest (Pakistan) |
||
4659 | </summary> |
||
4660 | </member> |
||
4661 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Fischer_1960"> |
||
4662 | <summary> |
||
4663 | Fischer (Mercury Datum) 1960 |
||
4664 | </summary> |
||
4665 | </member> |
||
4666 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.FischerModified_1960"> |
||
4667 | <summary> |
||
4668 | Modified Fischer 1960 |
||
4669 | </summary> |
||
4670 | </member> |
||
4671 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Fischer_1968"> |
||
4672 | <summary> |
||
4673 | Fischer 1968 |
||
4674 | </summary> |
||
4675 | </member> |
||
4676 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Helmert_1906"> |
||
4677 | <summary> |
||
4678 | Helmert 1906 |
||
4679 | </summary> |
||
4680 | </member> |
||
4681 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Hough"> |
||
4682 | <summary> |
||
4683 | Hough |
||
4684 | </summary> |
||
4685 | </member> |
||
4686 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Indonesian_1974"> |
||
4687 | <summary> |
||
4688 | Indonesian 1974 |
||
4689 | </summary> |
||
4690 | </member> |
||
4691 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.International_1909"> |
||
4692 | <summary> |
||
4693 | International 1909 |
||
4694 | </summary> |
||
4695 | </member> |
||
4696 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Krassovsky_1942"> |
||
4697 | <summary> |
||
4698 | Krassovsky 1942 |
||
4699 | </summary> |
||
4700 | </member> |
||
4701 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Kaula_1961"> |
||
4702 | <summary> |
||
4703 | Kaula 1961 |
||
4704 | </summary> |
||
4705 | </member> |
||
4706 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Lerch_1979"> |
||
4707 | <summary> |
||
4708 | Lerch 1979 |
||
4709 | </summary> |
||
4710 | </member> |
||
4711 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Maupertius_1738"> |
||
4712 | <summary> |
||
4713 | Maupertius 1738 |
||
4714 | </summary> |
||
4715 | </member> |
||
4716 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.InternationalNew_1967"> |
||
4717 | <summary> |
||
4718 | New International 1967 |
||
4719 | </summary> |
||
4720 | </member> |
||
4721 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Plessis_1817"> |
||
4722 | <summary> |
||
4723 | Plessis 1817 (France) |
||
4724 | </summary> |
||
4725 | </member> |
||
4726 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.SoutheastAsia"> |
||
4727 | <summary> |
||
4728 | Southeast Asia |
||
4729 | </summary> |
||
4730 | </member> |
||
4731 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Walbeck"> |
||
4732 | <summary> |
||
4733 | Walbekc (Germany) |
||
4734 | </summary> |
||
4735 | </member> |
||
4736 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.WGS_1960"> |
||
4737 | <summary> |
||
4738 | World Geodetic System 1960 |
||
4739 | </summary> |
||
4740 | </member> |
||
4741 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.WGS_1966"> |
||
4742 | <summary> |
||
4743 | World Geodetic System 1966 |
||
4744 | </summary> |
||
4745 | </member> |
||
4746 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.WGS_1972"> |
||
4747 | <summary> |
||
4748 | World Geodetic System 1972 |
||
4749 | </summary> |
||
4750 | </member> |
||
4751 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.WGS_1984"> |
||
4752 | <summary> |
||
4753 | World Geodetic System 1984 |
||
4754 | </summary> |
||
4755 | </member> |
||
4756 | <member name="F:DotSpatial.Projections.Proj4Ellipsoid.Sphere"> |
||
4757 | <summary> |
||
4758 | Normal Sphere |
||
4759 | </summary> |
||
4760 | </member> |
||
4761 | <member name="T:DotSpatial.Projections.KnownCoordinateSystems"> |
||
4762 | <summary> |
||
4763 | KnownCoordinateSystems |
||
4764 | </summary> |
||
4765 | </member> |
||
4766 | <member name="F:DotSpatial.Projections.KnownCoordinateSystems.Geographic"> |
||
4767 | <summary> |
||
4768 | Geographic systems operate in angular units, but can use different |
||
4769 | spheroid definitions or angular offsets. |
||
4770 | </summary> |
||
4771 | </member> |
||
4772 | <member name="F:DotSpatial.Projections.KnownCoordinateSystems.Projected"> |
||
4773 | <summary> |
||
4774 | Projected systems are systems that use linear units like meters or feet |
||
4775 | rather than angular units like degrees or radians |
||
4776 | </summary> |
||
4777 | </member> |
||
4778 | <member name="T:DotSpatial.Projections.GeographicCategories.SpheroidBased"> |
||
4779 | <summary> |
||
4780 | SpheroidBased |
||
4781 | </summary> |
||
4782 | </member> |
||
4783 | <member name="M:DotSpatial.Projections.GeographicCategories.SpheroidBased.#ctor"> |
||
4784 | <summary> |
||
4785 | Creates a new instance of SpheroidBased |
||
4786 | </summary> |
||
4787 | </member> |
||
4788 | <member name="T:DotSpatial.Projections.GeographicCategories.NorthAmerica"> |
||
4789 | <summary> |
||
4790 | NorthAmerica |
||
4791 | </summary> |
||
4792 | </member> |
||
4793 | <member name="M:DotSpatial.Projections.GeographicCategories.NorthAmerica.#ctor"> |
||
4794 | <summary> |
||
4795 | Creates a new instance of NorthAmerica |
||
4796 | </summary> |
||
4797 | </member> |
||
4798 | <member name="T:DotSpatial.Projections.GsbNadTable"> |
||
4799 | <summary> |
||
4800 | This is a special case of a NadTable and has specific reading techniques that need to be handled |
||
4801 | </summary> |
||
4802 | </member> |
||
4803 | <member name="M:DotSpatial.Projections.GsbNadTable.#ctor(System.String,System.Int64)"> |
||
4804 | <summary> |
||
4805 | Creates a new instance of GsbNadTable |
||
4806 | </summary> |
||
4807 | </member> |
||
4808 | <member name="M:DotSpatial.Projections.GsbNadTable.ReadHeader"> |
||
4809 | <inheritdoc/> |
||
4810 | </member> |
||
4811 | <member name="M:DotSpatial.Projections.GsbNadTable.Initialize"> |
||
4812 | <summary> |
||
4813 | This handles the creation of the |
||
4814 | </summary> |
||
4815 | </member> |
||
4816 | <member name="M:DotSpatial.Projections.GsbNadTable.FillData"> |
||
4817 | <inheritdoc/> |
||
4818 | </member> |
||
4819 | <member name="M:DotSpatial.Projections.GsbNadTable.GetDouble(System.Byte[],System.Int32)"> |
||
4820 | <summary> |
||
4821 | Gets the double value from the specified position in the byte array |
||
4822 | Using BigEndian format. |
||
4823 | </summary> |
||
4824 | <param name="array"></param> |
||
4825 | <param name="offset"></param> |
||
4826 | <returns></returns> |
||
4827 | </member> |
||
4828 | <member name="T:DotSpatial.Projections.WinkelTripel"> |
||
4829 | <summary> |
||
4830 | WinkelTripel |
||
4831 | </summary> |
||
4832 | </member> |
||
4833 | <member name="M:DotSpatial.Projections.WinkelTripel.#ctor"> |
||
4834 | <summary> |
||
4835 | Creates a new instance of WinkelTripel |
||
4836 | </summary> |
||
4837 | </member> |
||
4838 | <member name="M:DotSpatial.Projections.WinkelTripel.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4839 | <inheritdoc /> |
||
4840 | </member> |
||
4841 | <member name="M:DotSpatial.Projections.WinkelTripel.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
4842 | <summary> |
||
4843 | Initializes the transform using the parameters from the specified coordinate system information |
||
4844 | </summary> |
||
4845 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
4846 | </member> |
||
4847 | <member name="T:DotSpatial.Projections.TwoPointEquidistant"> |
||
4848 | <summary> |
||
4849 | TwoPointEquidistant |
||
4850 | </summary> |
||
4851 | </member> |
||
4852 | <member name="M:DotSpatial.Projections.TwoPointEquidistant.#ctor"> |
||
4853 | <summary> |
||
4854 | Creates a new instance of TwoPointEquidistant |
||
4855 | </summary> |
||
4856 | </member> |
||
4857 | <member name="M:DotSpatial.Projections.TwoPointEquidistant.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
4858 | <summary> |
||
4859 | Initializes the transform using the parameters from the specified coordinate system information |
||
4860 | </summary> |
||
4861 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
4862 | </member> |
||
4863 | <member name="M:DotSpatial.Projections.TwoPointEquidistant.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4864 | <inheritdoc /> |
||
4865 | </member> |
||
4866 | <member name="M:DotSpatial.Projections.TwoPointEquidistant.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4867 | <inheritdoc /> |
||
4868 | </member> |
||
4869 | <member name="T:DotSpatial.Projections.Eckert5"> |
||
4870 | <summary> |
||
4871 | Eckert5 |
||
4872 | </summary> |
||
4873 | </member> |
||
4874 | <member name="M:DotSpatial.Projections.Eckert5.#ctor"> |
||
4875 | <summary> |
||
4876 | Creates a new instance of Eckert5 |
||
4877 | </summary> |
||
4878 | </member> |
||
4879 | <member name="M:DotSpatial.Projections.Eckert5.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4880 | <inheritdoc /> |
||
4881 | </member> |
||
4882 | <member name="M:DotSpatial.Projections.Eckert5.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4883 | <inheritdoc /> |
||
4884 | </member> |
||
4885 | <member name="T:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1927"> |
||
4886 | <summary> |
||
4887 | StatePlaneNad1927 |
||
4888 | </summary> |
||
4889 | </member> |
||
4890 | <member name="M:DotSpatial.Projections.ProjectedCategories.StatePlaneNad1927.#ctor"> |
||
4891 | <summary> |
||
4892 | Creates a new instance of StatePlaneNad1927 |
||
4893 | </summary> |
||
4894 | </member> |
||
4895 | <member name="T:DotSpatial.Projections.ProjectedCategories.NationalGridsNorway"> |
||
4896 | <summary> |
||
4897 | NationalGridsNorway |
||
4898 | </summary> |
||
4899 | </member> |
||
4900 | <member name="M:DotSpatial.Projections.ProjectedCategories.NationalGridsNorway.#ctor"> |
||
4901 | <summary> |
||
4902 | Creates a new instance of NationalGridsNorway |
||
4903 | </summary> |
||
4904 | </member> |
||
4905 | <member name="T:DotSpatial.Projections.UniversalPolarStereographic"> |
||
4906 | <summary> |
||
4907 | UniversalPolarStereographic |
||
4908 | </summary> |
||
4909 | </member> |
||
4910 | <member name="M:DotSpatial.Projections.UniversalPolarStereographic.#ctor"> |
||
4911 | <summary> |
||
4912 | Creates a new instance of UniversalPolarStereographic |
||
4913 | </summary> |
||
4914 | </member> |
||
4915 | <member name="M:DotSpatial.Projections.UniversalPolarStereographic.OnInit(DotSpatial.Projections.ProjectionInfo)"> |
||
4916 | <summary> |
||
4917 | Initializes the transform using the parameters from the specified coordinate system information |
||
4918 | </summary> |
||
4919 | <param name="projInfo">A ProjectionInfo class contains all the standard and custom parameters needed to initialize this transform</param> |
||
4920 | </member> |
||
4921 | <member name="T:DotSpatial.Projections.Eckert4"> |
||
4922 | <summary> |
||
4923 | Eckert4 |
||
4924 | </summary> |
||
4925 | </member> |
||
4926 | <member name="M:DotSpatial.Projections.Eckert4.#ctor"> |
||
4927 | <summary> |
||
4928 | Creates a new instance of Eckert4 |
||
4929 | </summary> |
||
4930 | </member> |
||
4931 | <member name="M:DotSpatial.Projections.Eckert4.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4932 | <inheritdoc /> |
||
4933 | </member> |
||
4934 | <member name="M:DotSpatial.Projections.Eckert4.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
4935 | <inheritdoc /> |
||
4936 | </member> |
||
4937 | <member name="T:DotSpatial.Projections.Reproject"> |
||
4938 | <summary> |
||
4939 | Reproject |
||
4940 | </summary> |
||
4941 | </member> |
||
4942 | <member name="M:DotSpatial.Projections.Reproject.ReprojectPoints(System.Double[],System.Double[],DotSpatial.Projections.ProjectionInfo,DotSpatial.Projections.ProjectionInfo,System.Int32,System.Int32)"> |
||
4943 | <summary> |
||
4944 | |||
4945 | </summary> |
||
4946 | <param name="xy">The xy array should be in interleaved set of xy coordinates like [x1, y1, x2, y2, ... xn, yn]</param> |
||
4947 | <param name="z">The z array is the array of all the z values</param> |
||
4948 | <param name="source"></param> |
||
4949 | <param name="dest"></param> |
||
4950 | <param name="startIndex"></param> |
||
4951 | <param name="numPoints"></param> |
||
4952 | </member> |
||
4953 | <member name="T:DotSpatial.Projections.ProjectedCategories.UtmWgs1984"> |
||
4954 | <summary> |
||
4955 | UtmWgs1984 |
||
4956 | </summary> |
||
4957 | </member> |
||
4958 | <member name="M:DotSpatial.Projections.ProjectedCategories.UtmWgs1984.#ctor"> |
||
4959 | <summary> |
||
4960 | Creates a new instance of UtmWgs1984 |
||
4961 | </summary> |
||
4962 | </member> |
||
4963 | <member name="T:DotSpatial.Projections.ProjectedCategories.NorthAmerica"> |
||
4964 | <summary> |
||
4965 | NorthAmerica |
||
4966 | </summary> |
||
4967 | </member> |
||
4968 | <member name="M:DotSpatial.Projections.ProjectedCategories.NorthAmerica.#ctor"> |
||
4969 | <summary> |
||
4970 | Creates a new instance of NorthAmerica |
||
4971 | </summary> |
||
4972 | </member> |
||
4973 | <member name="T:DotSpatial.Projections.GeographicInfo"> |
||
4974 | <summary> |
||
4975 | GeographicInfo |
||
4976 | </summary> |
||
4977 | </member> |
||
4978 | <member name="M:DotSpatial.Projections.GeographicInfo.#ctor"> |
||
4979 | <summary> |
||
4980 | Creates a new instance of GeographicInfo |
||
4981 | </summary> |
||
4982 | </member> |
||
4983 | <member name="M:DotSpatial.Projections.GeographicInfo.ToEsriString"> |
||
4984 | <summary> |
||
4985 | Generates an esri string from the information in this geographic info class, including the name, datum, meridian, and unit. |
||
4986 | </summary> |
||
4987 | <returns></returns> |
||
4988 | </member> |
||
4989 | <member name="M:DotSpatial.Projections.GeographicInfo.ReadEsriString(System.String)"> |
||
4990 | <summary> |
||
4991 | Reads an esri string in order to parse the datum, meridian and unit as well as the name. |
||
4992 | </summary> |
||
4993 | <param name="esriString">The string to parse</param> |
||
4994 | </member> |
||
4995 | <member name="M:DotSpatial.Projections.GeographicInfo.ReadProj4Parameters(System.Collections.Generic.Dictionary{System.String,System.String})"> |
||
4996 | <summary> |
||
4997 | Reads in parameters from the proj4 string that control the datum and prime meridian |
||
4998 | </summary> |
||
4999 | <param name="parameters">The dictionary of all the parameter names and values in string form</param> |
||
5000 | </member> |
||
5001 | <member name="P:DotSpatial.Projections.GeographicInfo.Datum"> |
||
5002 | <summary> |
||
5003 | Gets or sets the datum |
||
5004 | eg: D_WGS_1984 |
||
5005 | </summary> |
||
5006 | </member> |
||
5007 | <member name="P:DotSpatial.Projections.GeographicInfo.Meridian"> |
||
5008 | <summary> |
||
5009 | Gets or sets the prime meridian longitude of the 0 mark, relative to Greenwitch |
||
5010 | </summary> |
||
5011 | </member> |
||
5012 | <member name="P:DotSpatial.Projections.GeographicInfo.Name"> |
||
5013 | <summary> |
||
5014 | Gets or sets the geographic coordinate system name |
||
5015 | eg: GCS_WGS_1984 |
||
5016 | </summary> |
||
5017 | </member> |
||
5018 | <member name="P:DotSpatial.Projections.GeographicInfo.Unit"> |
||
5019 | <summary> |
||
5020 | Gets or sets the units |
||
5021 | </summary> |
||
5022 | </member> |
||
5023 | <member name="T:DotSpatial.Projections.GeographicCategories.Oceans"> |
||
5024 | <summary> |
||
5025 | Oceans |
||
5026 | </summary> |
||
5027 | </member> |
||
5028 | <member name="M:DotSpatial.Projections.GeographicCategories.Oceans.#ctor"> |
||
5029 | <summary> |
||
5030 | Creates a new instance of Oceans |
||
5031 | </summary> |
||
5032 | </member> |
||
5033 | <member name="T:DotSpatial.Projections.Eckert3"> |
||
5034 | <summary> |
||
5035 | Eckert3 |
||
5036 | </summary> |
||
5037 | </member> |
||
5038 | <member name="M:DotSpatial.Projections.Eckert3.#ctor"> |
||
5039 | <summary> |
||
5040 | Creates a new instance of Eckert3 |
||
5041 | </summary> |
||
5042 | </member> |
||
5043 | <member name="M:DotSpatial.Projections.Eckert3.OnForward(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
5044 | <inheritdoc /> |
||
5045 | </member> |
||
5046 | <member name="M:DotSpatial.Projections.Eckert3.OnInverse(System.Double[],System.Double[],System.Int32,System.Int32)"> |
||
5047 | <inheritdoc /> |
||
5048 | </member> |
||
5049 | <member name="T:DotSpatial.Projections.ProjectedCategories.UtmWgs1972"> |
||
5050 | <summary> |
||
5051 | UtmWgs1972 |
||
5052 | </summary> |
||
5053 | </member> |
||
5054 | <member name="M:DotSpatial.Projections.ProjectedCategories.UtmWgs1972.#ctor"> |
||
5055 | <summary> |
||
5056 | Creates a new instance of UtmWgs1972 |
||
5057 | </summary> |
||
5058 | </member> |
||
5059 | <member name="T:DotSpatial.Projections.DatumType"> |
||
5060 | <summary> |
||
5061 | DatumTypes |
||
5062 | </summary> |
||
5063 | </member> |
||
5064 | <member name="F:DotSpatial.Projections.DatumType.Unknown"> |
||
5065 | <summary> |
||
5066 | The datum type is not with a well defined ellips or grid-shift |
||
5067 | </summary> |
||
5068 | </member> |
||
5069 | <member name="F:DotSpatial.Projections.DatumType.Param3"> |
||
5070 | <summary> |
||
5071 | The datum transform to WGS84 can be defined using 3 double parameters |
||
5072 | </summary> |
||
5073 | </member> |
||
5074 | <member name="F:DotSpatial.Projections.DatumType.Param7"> |
||
5075 | <summary> |
||
5076 | The datum transform to WGS84 can be defined using 7 double parameters |
||
5077 | </summary> |
||
5078 | </member> |
||
5079 | <member name="F:DotSpatial.Projections.DatumType.GridShift"> |
||
5080 | <summary> |
||
5081 | The transform requires a special nad gridshift |
||
5082 | </summary> |
||
5083 | </member> |
||
5084 | <member name="F:DotSpatial.Projections.DatumType.WGS84"> |
||
5085 | <summary> |
||
5086 | The datum is already the WGS84 datum |
||
5087 | </summary> |
||
5088 | </member> |
||
5089 | </members> |
||
5090 | </doc> |