GeodeticDatum.AlternativeDatumShiftsForArea Methods
Returns a collection of alternative datum shifts for this datum and a given area.
Overload List
Name | Description | |
---|---|---|
Public method | AlternativeDatumShiftsForArea(System.String areaName) | Returns a collection of datum shifts for this datum and a named area, excluding grid file datum shifts. (The datum shifts are represented by DatumShiftInfo instances.) |
Public method | AlternativeDatumShiftsForArea(RectangleSet areaBounds) | Returns a collection of datum shifts for this datum and the given area bounds, excluding grid file datum shifts. (They are represented by DatumShiftInfo instances.) |
Public method | AlternativeDatumShiftsForArea(System.String areaName, System.String gridFileRootPath) | Returns a collection of datum shifts for this datum and a named area, including grid file datum shifts. (The datum shifts are represented by DatumShiftInfo instances.) |
Public method | AlternativeDatumShiftsForArea(RectangleSet areaBounds, System.String gridFileRootPath) | Returns a collection of datum shifts for this datum and the given area bounds, including grid file datum shifts. (The datum shifts are represented by DatumShiftInfo instances.) |
AlternativeDatumShiftsForArea(System.String areaName)
Returns a collection of datum shifts for this datum and a named area, excluding grid file datum shifts. (The datum shifts are represented by DatumShiftInfo instances.)Syntax
public DatumShiftInfoCollection AlternativeDatumShiftsForArea (
System.String areaName
)
Parameters
The (English) name of the desired area of use for the datum shifts.
Return Value
A collection of datum shifts from this datum to Wgs84, which can be used in the given area. (They are represented by DatumShiftInfo instances.)
Remarks
The method assumes that the Authority and AuthorityCode of the geodetic datum are correct. These properties are read-only and cannot be set in the public GeodeticDatum constructor, but they will usually be set in the geodetic datum component of a Crs extracted from dataset files or constructed via Crs.FromAuthorityAndCode.
When you have chosen the DatumShiftInfo you want to use in the list of alternatives, you can get the corresponding datum shift via the DatumShift.FromInfo method.
Most of the returned datum shifts will come from the EPSG database, but some may come from other sources.
For some geodetic datums, Carmenta does not know any published datum shift at all; then this method will return an identity datum shift to Wgs84. Such a datum shift simply assumes that longitude/latitude in the geodetic datum are the same as in Wgs84, and can be wrong by up to about 1 km.
When this method searches for the areaName in the area descriptions of datum shifts, the search is case-sensitive and does not have to match a whole word. For example, if the areaName is Kansas, it will not match the area description Arkansas that has a lowercase k, but if the areaName is India, it will match the area description Indiana.
This method will not return any representation of a GridFileDatumShift. To get them too, you must use the overloaded variant that takes a gridFileRootPath parameter (the expected location of the grid files).
AlternativeDatumShiftsForArea(RectangleSet areaBounds)
Returns a collection of datum shifts for this datum and the given area bounds, excluding grid file datum shifts. (They are represented by DatumShiftInfo instances.)Syntax
public DatumShiftInfoCollection AlternativeDatumShiftsForArea (
RectangleSet areaBounds
)
Parameters
The bounding rectangle(s) of the desired area of use for the datum shifts. Must be expressed in Wgs84LongLat.
Return Value
A collection of datum shifts from this datum to Wgs84, which can be used in the given area. (They are represented by DatumShiftInfo instances.)
Remarks
The method assumes that the Authority and AuthorityCode of the geodetic datum are correct. These properties are read-only and cannot be set in the public GeodeticDatum constructor, but they will usually be set in the geodetic datum component of a Crs extracted from dataset files or constructed via Crs.FromAuthorityAndCode.
When you have chosen the DatumShiftInfo you want to use in the list of alternatives, you can get the corresponding datum shift via the DatumShift.FromInfo method.
Most of the returned datum shifts will come from the EPSG database, but some may come from other sources.
For some geodetic datums, Carmenta does not know any published datum shift at all; then this method will return an identity datum shift to Wgs84. Such a datum shift simply assumes that longitude/latitude in the geodetic datum are the same as in Wgs84, and can be wrong by up to about 1 km.
This method will not return any representation of a GridFileDatumShift. To get them too, you must use the overloaded variant that takes a gridFileRootPath parameter (the expected location of the grid files).
AlternativeDatumShiftsForArea(System.String areaName, System.String gridFileRootPath)
Returns a collection of datum shifts for this datum and a named area, including grid file datum shifts. (The datum shifts are represented by DatumShiftInfo instances.)Syntax
public DatumShiftInfoCollection AlternativeDatumShiftsForArea (
System.String areaName,
System.String gridFileRootPath
)
Parameters
The (English) name of the desired area of use for the datum shifts.
The expected location of grid shift files (NTv2 or CTable format).
Return Value
A collection of datum shifts from this datum to Wgs84, which can be used in the given area. (They are represented by DatumShiftInfo instances.)
Remarks
The method assumes that the Authority and AuthorityCode of the geodetic datum are correct. These properties are read-only and cannot be set in the public GeodeticDatum constructor, but they will usually be set in the geodetic datum component of a Crs extracted from dataset files or constructed via Crs.FromAuthorityAndCode.
When you have chosen the DatumShiftInfo you want to use in the list of alternatives, you can get the corresponding datum shift via the DatumShift.FromInfo method.
Most of the returned datum shifts will come from the EPSG database, but some may come from other sources.
For some geodetic datums, Carmenta does not know any published datum shift at all; then this method will return an identity datum shift to Wgs84. Such a datum shift simply assumes that longitude/latitude in the geodetic datum are the same as in Wgs84, and can be wrong by up to about 1 km.
When this method searches for the areaName in the area descriptions of datum shifts, the search is case-sensitive and does not have to match a whole word. For example, if the areaName is Kansas, it will not match the area description Arkansas that has a lowercase k, but if the areaName is India, it will match the area description Indiana.
This method can return a DatumShiftInfo that represents a GridFileDatumShift. The DatumShiftInfo.FileStatus will then tell whether the required grid file is found under the gridFileRootPath. If not, you must try to download it from the DatumShiftInfo.InformationSource before you construct the GridFileDatumShift.
AlternativeDatumShiftsForArea(RectangleSet areaBounds, System.String gridFileRootPath)
Returns a collection of datum shifts for this datum and the given area bounds, including grid file datum shifts. (The datum shifts are represented by DatumShiftInfo instances.)Syntax
public DatumShiftInfoCollection AlternativeDatumShiftsForArea (
RectangleSet areaBounds,
System.String gridFileRootPath
)
Parameters
The bounding rectangle(s) of the desired area of use for the datum shifts. Must be expressed in Wgs84LongLat.
The expected location of grid shift files (NTv2 or CTable format).
Return Value
A collection of datum shifts from this datum to Wgs84, which can be used in the given area. (They are represented by DatumShiftInfo instances.)
Remarks
The method assumes that the Authority and AuthorityCode of the geodetic datum are correct. These properties are read-only and cannot be set in the public GeodeticDatum constructor, but they will usually be set in the geodetic datum component of a Crs extracted from dataset files or constructed via Crs.FromAuthorityAndCode.
When you have chosen the DatumShiftInfo you want to use in the list of alternatives, you can get the corresponding datum shift via the DatumShift.FromInfo method.
Most of the returned datum shifts will come from the EPSG database, but some may come from other sources.
For some geodetic datums, Carmenta does not know any published datum shift at all; then this method will return an identity datum shift to Wgs84. Such a datum shift simply assumes that longitude/latitude in the geodetic datum are the same as in Wgs84, and can be wrong by up to about 1 km.
This method can return a DatumShiftInfo that represents a GridFileDatumShift. The DatumShiftInfo.FileStatus will then tell whether the required grid file is found under the gridFileRootPath. If not, you must try to download it from the DatumShiftInfo.InformationSource before you construct the GridFileDatumShift.
Platforms
Windows, Linux, Android