TopoJsonDriverSupportsSpatialReferenceSystem Method |
Determines, whether specified spatial reference system is supported by the driver.
Namespace:
Aspose.Gis.Formats.TopoJson
Assembly:
Aspose.GIS (in Aspose.GIS.dll) Version: 20.3.0.0 (20.03)
Syntaxpublic override bool SupportsSpatialReferenceSystem(
SpatialReferenceSystem spatialReferenceSystem
)
Public Overrides Function SupportsSpatialReferenceSystem (
spatialReferenceSystem As SpatialReferenceSystem
) As Boolean
public:
virtual bool SupportsSpatialReferenceSystem(
SpatialReferenceSystem^ spatialReferenceSystem
) override
abstract SupportsSpatialReferenceSystem :
spatialReferenceSystem : SpatialReferenceSystem -> bool
override SupportsSpatialReferenceSystem :
spatialReferenceSystem : SpatialReferenceSystem -> bool
Parameters
- spatialReferenceSystem
- Type: Aspose.Gis.SpatialReferencingSpatialReferenceSystem
Spatial reference system.
Return Value
Type:
Boolean
Boolean value, indicating whether specified spatial reference system is supported by the driver.
Remarks
For TopoJSON, the only supported spatial reference system is 'null', since there is no way to store
spatial reference system information in TopoJSON file and TopoJSON specification does not specify what
is the spatial reference system of geometries in TopoJSON file.
See Also