1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
|
/**
* \file NETGeographicLib/GeoCoords.h
* \brief Header for NETGeographicLib::GeoCoords class
*
* NETGeographicLib is copyright (c) Scott Heiman (2013)
* GeographicLib is Copyright (c) Charles Karney (2010-2012)
* <charles@karney.com> and licensed under the MIT/X11 License.
* For more information, see
* http://geographiclib.sourceforge.net/
**********************************************************************/
#pragma once
namespace NETGeographicLib
{
/**
* \brief .NET wrapper for GeographicLib::GeoCoords.
*
* This class allows .NET applications to access GeographicLib::GeoCoords.
*
* This class stores a geographic position which may be set via the
* constructors or Reset via
* - latitude and longitude
* - UTM or UPS coordinates
* - a string representation of these or an MGRS coordinate string
*
* The state consists of the latitude and longitude and the supplied UTM or
* UPS coordinates (possibly derived from the MGRS coordinates). If latitude
* and longitude were given then the UTM/UPS coordinates follows the standard
* conventions.
*
* The mutable state consists of the UTM or UPS coordinates for a alternate
* zone. A method SetAltZone is provided to set the alternate UPS/UTM zone.
*
* Methods are provided to return the geographic coordinates, the input UTM
* or UPS coordinates (and associated meridian convergence and scale), or
* alternate UTM or UPS coordinates (and their associated meridian
* convergence and scale).
*
* Once the input string has been parsed, you can print the result out in any
* of the formats, decimal degrees, degrees minutes seconds, MGRS, UTM/UPS.
*
* C# Example:
* \include example-GeoCoords.cs
* Managed C++ Example:
* \include example-GeoCoords.cpp
* Visual Basic Example:
* \include example-GeoCoords.vb
*
* <B>INTERFACE DIFFERENCES:</B><BR>
* The following functions are implemented as properties: MajorRadius,
* Flattening, Latitude, Longitude, Easting, Northing, Convergence,
* Scale, Northp, Hemisphere, Zone, AltZone, AltEasting, AltNorthing,
* AltConvergence, and AltScale.
**********************************************************************/
public ref class GeoCoords
{
private:
// pointer to the unmanaged GeographicLib::GeoCoords
GeographicLib::GeoCoords* m_pGeoCoords;
// The finalizer frees unmanaged memory when the object is destroyed.
!GeoCoords();
public:
/** \name Initializing the GeoCoords object
**********************************************************************/
///@{
/**
* The default constructor is equivalent to \e latitude = 90°,
* \e longitude = 0°.
**********************************************************************/
GeoCoords();
/**
* Construct from a string.
*
* @param[in] s 1-element, 2-element, or 3-element string representation of
* the position.
* @param[in] centerp governs the interpretation of MGRS coordinates (see
* below).
* @param[in] swaplatlong governs the interpretation of geographic
* coordinates (see below).
* @exception GeographicErr if the \e s is malformed (see below).
*
* Parse as a string and interpret it as a geographic position. The input
* string is broken into space (or comma) separated pieces and Basic
* decision on which format is based on number of components
* -# MGRS
* -# "Lat Long" or "Long Lat"
* -# "Zone Easting Northing" or "Easting Northing Zone"
*
* The following inputs are approximately the same (Ar Ramadi Bridge, Iraq)
* - Latitude and Longitude
* - 33.44 43.27
* - N33d26.4' E43d16.2'
* - 43d16'12"E 33d26'24"N
* - 43:16:12E 33:26:24
* - MGRS
* - 38SLC30
* - 38SLC391014
* - 38SLC3918701405
* - 37SHT9708
* - UTM
* - 38N 339188 3701405
* - 897039 3708229 37N
*
* <b>Latitude and Longitude parsing</b>: Latitude precedes longitude,
* unless a N, S, E, W hemisphere designator is used on one or both
* coordinates. If \e swaplatlong = true (default is false), then
* longitude precedes latitude in the absence of a hemisphere designator.
* Thus (with \e swaplatlong = false)
* - 40 -75
* - N40 W75
* - -75 N40
* - 75W 40N
* - E-75 -40S
* .
* are all the same position. The coordinates may be given in
* decimal degrees, degrees and decimal minutes, degrees, minutes,
* seconds, etc. Use d, ', and " to mark off the degrees,
* minutes and seconds. Various alternative symbols for degrees, minutes,
* and seconds are allowed. Alternatively, use : to separate these
* components. (See DMS::Decode for details.) Thus
* - 40d30'30"
* - 40d30'30
* - 40°30'30
* - 40d30.5'
* - 40d30.5
* - 40:30:30
* - 40:30.5
* - 40.508333333
* .
* all specify the same angle. The leading sign applies to all components
* so -1d30 is -(1+30/60) = -1.5. Latitudes must be in the range
* [−90°, 90°] and longitudes in the range
* [−540°, 540°). Internally longitudes are reduced
* to the range [−180°, 180°).
*
* <b>UTM/UPS parsing</b>: For UTM zones (−80° ≤ Lat <
* 84°), the zone designator is made up of a zone number (for 1 to 60)
* and a hemisphere letter (N or S), e.g., 38N. The latitude zone designer
* ([C--M] in the southern hemisphere and [N--X] in the northern) should
* NOT be used. (This is part of the MGRS coordinate.) The zone
* designator for the poles (where UPS is employed) is a hemisphere letter
* by itself, i.e., N or S.
*
* <b>MGRS parsing</b> interprets the grid references as square area at the
* specified precision (1m, 10m, 100m, etc.). If \e centerp = true (the
* default), the center of this square is then taken to be the precise
* position; thus:
* - 38SMB = 38N 450000 3650000
* - 38SMB4484 = 38N 444500 3684500
* - 38SMB44148470 = 38N 444145 3684705
* .
* Otherwise, the "south-west" corner of the square is used, i.e.,
* - 38SMB = 38N 400000 3600000
* - 38SMB4484 = 38N 444000 3684000
* - 38SMB44148470 = 38N 444140 3684700
**********************************************************************/
GeoCoords(System::String^ s, bool centerp, bool swaplatlong );
/**
* Construct from geographic coordinates.
*
* @param[in] latitude (degrees).
* @param[in] longitude (degrees).
* @param[in] zone if specified, force the UTM/UPS representation to use a
* specified zone using the rules given in UTMUPS::zonespec.
* @exception GeographicErr if \e latitude is not in [−90°,
* 90°].
* @exception GeographicErr if \e longitude is not in [−540°,
* 540°).
* @exception GeographicErr if \e zone cannot be used for this location.
**********************************************************************/
GeoCoords(double latitude, double longitude, int zone );
/**
* Construct from UTM/UPS coordinates.
*
* @param[in] zone UTM zone (zero means UPS).
* @param[in] northp hemisphere (true means north, false means south).
* @param[in] easting (meters).
* @param[in] northing (meters).
* @exception GeographicErr if \e zone, \e easting, or \e northing is
* outside its allowed range.
**********************************************************************/
GeoCoords(int zone, bool northp, double easting, double northing);
/**
* The destructor calls the finalizer.
**********************************************************************/
~GeoCoords() { this->!GeoCoords(); }
/**
* Reset the location from a string. See
* GeoCoords(const std::string& s, bool centerp, bool swaplatlong).
*
* @param[in] s 1-element, 2-element, or 3-element string representation of
* the position.
* @param[in] centerp governs the interpretation of MGRS coordinates.
* @param[in] swaplatlong governs the interpretation of geographic
* coordinates.
* @exception GeographicErr if the \e s is malformed.
**********************************************************************/
void Reset( System::String^ s, bool centerp, bool swaplatlong);
/**
* Reset the location in terms of geographic coordinates. See
* GeoCoords(double latitude, double longitude, int zone).
*
* @param[in] latitude (degrees).
* @param[in] longitude (degrees).
* @param[in] zone if specified, force the UTM/UPS representation to use a
* specified zone using the rules given in UTMUPS::zonespec.
* @exception GeographicErr if \e latitude is not in [−90°,
* 90°].
* @exception GeographicErr if \e longitude is not in [−540°,
* 540°).
* @exception GeographicErr if \e zone cannot be used for this location.
**********************************************************************/
void Reset(double latitude, double longitude, int zone ) ;
/**
* Reset the location in terms of UPS/UPS coordinates. See
* GeoCoords(int zone, bool northp, double easting, double northing).
*
* @param[in] zone UTM zone (zero means UPS).
* @param[in] northp hemisphere (true means north, false means south).
* @param[in] easting (meters).
* @param[in] northing (meters).
* @exception GeographicErr if \e zone, \e easting, or \e northing is
* outside its allowed range.
**********************************************************************/
void Reset(int zone, bool northp, double easting, double northing);
///@}
/** \name Querying the GeoCoords object
**********************************************************************/
///@{
/**
* @return latitude (degrees)
**********************************************************************/
property double Latitude { double get(); }
/**
* @return longitude (degrees)
**********************************************************************/
property double Longitude { double get(); }
/**
* @return easting (meters)
**********************************************************************/
property double Easting { double get(); }
/**
* @return northing (meters)
**********************************************************************/
property double Northing { double get(); }
/**
* @return meridian convergence (degrees) for the UTM/UPS projection.
**********************************************************************/
property double Convergence { double get(); }
/**
* @return scale for the UTM/UPS projection.
**********************************************************************/
property double Scale { double get(); }
/**
* @return hemisphere (false means south, true means north).
**********************************************************************/
property bool Northp { bool get(); }
/**
* @return hemisphere letter N or S.
**********************************************************************/
property char Hemisphere { char get(); }
/**
* @return the zone corresponding to the input (return 0 for UPS).
**********************************************************************/
property int Zone { int get(); }
/**
* Gets/Sets the current alternate zone (0 = UPS).
* @exception GeographicErr if \e zone cannot be used for this location.
*
* See UTMUPS::zonespec for more information on the interpretation of \e
* zone. Note that \e zone == UTMUPS::STANDARD (the default) use the
* standard UPS or UTM zone, UTMUPS::MATCH does nothing retaining the
* existing alternate representation. Before this is called the alternate
* zone is the input zone.
**********************************************************************/
property int AltZone
{
int get();
void set( int zone );
}
///@}
/**
* @return easting (meters) for alternate zone.
**********************************************************************/
property double AltEasting { double get(); }
/**
* @return northing (meters) for alternate zone.
**********************************************************************/
property double AltNorthing { double get(); }
/**
* @return meridian convergence (degrees) for alternate zone.
**********************************************************************/
property double AltConvergence { double get(); }
/**
* @return scale for alternate zone.
**********************************************************************/
property double AltScale { double get(); }
///@}
/** \name String representations of the GeoCoords object
**********************************************************************/
///@{
/**
* String representation with latitude and longitude as signed decimal
* degrees.
*
* @param[in] prec precision (relative to about 1m).
* @param[in] swaplatlong if true give longitude first (default = false)
* @exception std::bad_alloc if memory for the string can't be allocated.
* @return decimal latitude/longitude string representation.
*
* Precision specifies accuracy of representation as follows:
* - prec = −5 (min), 1°
* - prec = 0, 10<sup>−5</sup>° (about 1m)
* - prec = 3, 10<sup>−8</sup>°
* - prec = 9 (max), 10<sup>−14</sup>°
**********************************************************************/
System::String^ GeoRepresentation(int prec, bool swaplatlong );
/**
* String representation with latitude and longitude as degrees, minutes,
* seconds, and hemisphere.
*
* @param[in] prec precision (relative to about 1m)
* @param[in] swaplatlong if true give longitude first (default = false)
* @param[in] dmssep if non-null, use as the DMS separator character
* (instead of d, ', " delimiters).
* @exception std::bad_alloc if memory for the string can't be allocated.
* @return DMS latitude/longitude string representation.
*
* Precision specifies accuracy of representation as follows:
* - prec = −5 (min), 1°
* - prec = −4, 0.1°
* - prec = −3, 1'
* - prec = −2, 0.1'
* - prec = −1, 1"
* - prec = 0, 0.1" (about 3m)
* - prec = 1, 0.01"
* - prec = 10 (max), 10<sup>−11</sup>"
**********************************************************************/
System::String^ DMSRepresentation(int prec, bool swaplatlong,
char dmssep );
/**
* MGRS string.
*
* @param[in] prec precision (relative to about 1m).
* @exception std::bad_alloc if memory for the string can't be allocated.
* @return MGRS string.
*
* This gives the coordinates of the enclosing grid square with size given
* by the precision. Thus 38N 444180 3684790 converted to a MGRS
* coordinate at precision −2 (100m) is 38SMB441847 and not
* 38SMB442848. \e prec specifies the precision of the MGRS string as
* follows:
* - prec = −5 (min), 100km
* - prec = −4, 10km
* - prec = −3, 1km
* - prec = −2, 100m
* - prec = −1, 10m
* - prec = 0, 1m
* - prec = 1, 0.1m
* - prec = 6 (max), 1μm
**********************************************************************/
System::String^ MGRSRepresentation(int prec);
/**
* UTM/UPS string.
*
* @param[in] prec precision (relative to about 1m)
* @param[in] abbrev if true (the default) use abbreviated (n/s) notation
* for hemisphere; otherwise spell out the hemisphere (north/south)
* @exception std::bad_alloc if memory for the string can't be allocated.
* @return UTM/UPS string representation: zone designator, easting, and
* northing.
*
* Precision specifies accuracy of representation as follows:
* - prec = −5 (min), 100km
* - prec = −3, 1km
* - prec = 0, 1m
* - prec = 3, 1mm
* - prec = 6, 1μm
* - prec = 9 (max), 1nm
**********************************************************************/
System::String^ UTMUPSRepresentation(int prec, bool abbrev);
/**
* UTM/UPS string with hemisphere override.
*
* @param[in] northp hemisphere override
* @param[in] prec precision (relative to about 1m)
* @param[in] abbrev if true (the default) use abbreviated (n/s) notation
* for hemisphere; otherwise spell out the hemisphere (north/south)
* @exception GeographicErr if the hemisphere override attempts to change
* UPS N to UPS S or vice versa.
* @exception std::bad_alloc if memory for the string can't be allocated.
* @return UTM/UPS string representation: zone designator, easting, and
* northing.
**********************************************************************/
System::String^ UTMUPSRepresentation(bool northp, int prec, bool abbrev);
/**
* MGRS string for the alternate zone. See GeoCoords::MGRSRepresentation.
*
* @param[in] prec precision (relative to about 1m).
* @exception std::bad_alloc if memory for the string can't be allocated.
* @return MGRS string.
**********************************************************************/
System::String^ AltMGRSRepresentation(int prec);
/**
* UTM/UPS string for the alternate zone. See
* GeoCoords::UTMUPSRepresentation.
*
* @param[in] prec precision (relative to about 1m)
* @param[in] abbrev if true (the default) use abbreviated (n/s) notation
* for hemisphere; otherwise spell out the hemisphere (north/south)
* @exception std::bad_alloc if memory for the string can't be allocated.
* @return UTM/UPS string representation: zone designator, easting, and
* northing.
**********************************************************************/
System::String^ AltUTMUPSRepresentation(int prec, bool abbrev);
/**
* UTM/UPS string for the alternate zone, with hemisphere override.
*
* @param[in] northp hemisphere override
* @param[in] prec precision (relative to about 1m)
* @param[in] abbrev if true (the default) use abbreviated (n/s) notation
* for hemisphere; otherwise spell out the hemisphere (north/south)
* @exception GeographicErr if the hemisphere override attempts to change
* UPS n to UPS s or vice verse.
* @exception std::bad_alloc if memory for the string can't be allocated.
* @return UTM/UPS string representation: zone designator, easting, and
* northing.
**********************************************************************/
System::String^ AltUTMUPSRepresentation(bool northp, int prec, bool abbrev);
///@}
/** \name Inspector functions
**********************************************************************/
///@{
/**
* @return \e a the equatorial radius of the WGS84 ellipsoid (meters).
*
* (The WGS84 value is returned because the UTM and UPS projections are
* based on this ellipsoid.)
**********************************************************************/
property double MajorRadius { double get(); }
/**
* @return \e f the flattening of the WGS84 ellipsoid.
*
* (The WGS84 value is returned because the UTM and UPS projections are
* based on this ellipsoid.)
**********************************************************************/
property double Flattening { double get(); }
///@}
};
} //namespace NETGeographicLib
|