Làm cách nào để tôi có được các đơn vị (mét / feet) từ một đối tượng ISpatialReference trong ArcObjects?
Làm cách nào để tôi có được các đơn vị (mét / feet) từ một đối tượng ISpatialReference trong ArcObjects?
Câu trả lời:
Các đơn vị tuyến tính có thể được lấy từ tham chiếu không gian chỉ khi nó là một hệ tọa độ dự kiến. Vì vậy, bạn cần truyền tham chiếu không gian đến IProjectionCoordinateSystem và truy cập vào thuộc tính IProjectionCoordinateSystem.CoordinateUnit của nó .
Nhưng nếu tham chiếu không gian là một hệ tọa độ địa lý, các đơn vị của nó có góc cạnh và được truy cập tương tự thông qua IGeographicCoordinateSystem.CoordineUnit .
IFields fields = featureClass.Fields;
ISpatialReference spatialReference = fields.get_Field(fields.FindField(featureClass.ShapeFieldName)).GeometryDef.SpatialReference;
if (spatialReference is IProjectedCoordinateSystem)
{
IProjectedCoordinateSystem projectedCoordinateSystem = (IProjectedCoordinateSystem)spatialReference;
return projectedCoordinateSystem.CoordinateUnit.Name;
}
if (spatialReference is IGeographicCoordinateSystem)
{
IGeographicCoordinateSystem geographicCoordinateSystem = (IGeographicCoordinateSystem)spatialReference;
return geographicCoordinateSystem.CoordinateUnit.Name;
}