ProjectedSpatialReferenceSystemParameters Class

Summary: Parameters to create projected SRS. Some of parameters have defaults.
Some parameters have reasonable defaults, so you don’t have to assign only them.
If you assign to those parameters, a default value will be used.
ProjectedSpatialReferenceSystemParameters.projection_method_name and ProjectedSpatialReferenceSystemParameters.base don’t have defaults -
you have to assign some non value to this properties.

Module: aspose.gis.spatialreferencing

Full Name: aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystemParameters

Aspose.PSD Version: 25.9.0

Constructors

NameDescription
ProjectedSpatialReferenceSystemParameters()Creates new instance.

Properties

NameTypeAccessDescription
axises_orderProjectedAxisesOrderr/wOrder of axises. Defaults to ProjectedAxisesOrder.XY.
baseGeographicSpatialReferenceSystemr/wBase geographic SRS (SRS to which projection is applied).
You MUST set this property to not value in order to create valid SRS,
this property does not have any default.
linear_unitUnitr/wUnits to be used in this SRS. Default is Unit.meter.
namestringr/wName of projected SRS. Default is “Unnamed”.
projection_method_identifierIdentifierr/wIdentifier of projection method. There is no default value, you might set this parameter to not value,
if you want attach identifier to projection. If you do so - its up to you to ensure that identifier in consistent projection method
name (projection method name will not change when you set this property).
projection_method_namestringr/wName of projection method. There is no default and you MUST set this parameter to not value, since
projected SRS with no projection name is useless.
x_axisAxisr/wAxis that describes X (horizontal) dimension. Defaults to axis with east direction.
y_axisAxisr/wAxis that describes Y (vertical) dimension. Defaults to axis with north direction.

Methods

NameDescription
add_projection_parameter(parameter_name, value)Adds projection parameter to this SRS. If parameter with such name already was added - update it.
get_projection_parameter(parameter_name)Gets projection parameter with specified name.

Constructor: ProjectedSpatialReferenceSystemParameters()

 ProjectedSpatialReferenceSystemParameters() 

Creates new instance.

Method: add_projection_parameter(parameter_name, value)

 add_projection_parameter(parameter_name, value) 

Adds projection parameter to this SRS. If parameter with such name already was added - update it.

Parameters:

ParameterTypeDescription
parameter_namestringName of projection parameter.
valuedoubleValue of parameter. Unit of value should be in ProjectedSpatialReferenceSystemParameters.linear_unit
or GeographicSpatialReferenceSystem.angular_unit of ProjectedSpatialReferenceSystemParameters.base.

Method: get_projection_parameter(parameter_name)

 get_projection_parameter(parameter_name) 

Gets projection parameter with specified name.

Parameters:

ParameterTypeDescription
parameter_namestringName of parameter.

Returns

TypeDescription
doubleProjection parameter value.