Package org.bremersee.geojson
Class AbstractGeoJsonCrs
- java.lang.Object
-
- org.bremersee.geojson.AbstractGeoJsonCrs
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
GeoJsonLinkedCrs,GeoJsonNamedCrs
public class AbstractGeoJsonCrs extends Object implements Serializable
Abstract base class for the coordinate reference system (CRS) of a GeoJSON object.The specification of coordinate reference systems has been removed, see rfc7946 appendix B, the "crs" member is no longer used.
- Author:
- Christian Bremer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractGeoJsonCrs()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)protected Map<String,Object>getProperties()Properties that store information about the coordinate reference system (CRS).inthashCode()protected voidsetProperties(Map<String,Object> properties)Set the properties the properties that store information about the coordinate reference system (CRS).StringtoString()
-
-
-
Method Detail
-
getProperties
protected final Map<String,Object> getProperties()
Properties that store information about the coordinate reference system (CRS).- Returns:
- the properties that store information about the coordinate reference system (CRS)
-
setProperties
protected final void setProperties(Map<String,Object> properties)
Set the properties the properties that store information about the coordinate reference system (CRS).- Parameters:
properties- the properties that store information about the coordinate reference system
-
-