Provides access to members that control the properties of all spheroids.
Description
Defines a spheroid object. You can retrieve any of the three values that define a spheroid: the semimajor or semiminor axes or the flattening. The axes are in meters.
Members
Name | Description | |
---|---|---|
Abbreviation | The abbreviated name of this spatial reference component. | |
Alias | The alias of this spatial reference component. | |
FactoryCode | The factory code (WKID) of the spatial reference. | |
Flattening | The flattening ratio of this spheroid. | |
Name | The name of this spatial reference component. | |
Remarks | The comment string of this spatial reference component. | |
SemiMajorAxis | The semi-major axis length of this spheroid. | |
SemiMinorAxis | The semi-minor axis length of this spheroid. |
ISpheroid.Flattening Property
The flattening ratio of this spheroid.
Public ReadOnly Property Flattening As Double
public double Flattening {get;}
ISpheroid.SemiMajorAxis Property
The semi-major axis length of this spheroid.
Public ReadOnly Property SemiMajorAxis As Double
public double SemiMajorAxis {get;}
private void PrintSpheroid(ISpheroid spheroid)
{
System.Windows.Forms.MessageBox.Show(spheroid.SemiMajorAxis.ToString());
}
ISpheroid.SemiMinorAxis Property
The semi-minor axis length of this spheroid.
Public ReadOnly Property SemiMinorAxis As Double
public double SemiMinorAxis {get;}
private void PrintSpheroid(ISpheroid spheroid)
{
System.Windows.Forms.MessageBox.Show(spheroid.SemiMinorAxis.ToString());
}
Inherited Interfaces
Interfaces | Description |
---|---|
ISpatialReferenceInfo | Provides access to members that control the properties common to all components of a spatial reference system. |
Classes that implement ISpheroid
Classes | Description |
---|---|
Spheroid | Creates a spheroid. |