Package org.geotools.data.hana.metadata
Class Srs
- Object
-
- Srs
-
public class Srs extends Object
Metadata to create a new spatial reference system in SAP HANA.- Author:
- Stefan Uhrig, SAP SE
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Srs.Type
-
Constructor Summary
Constructors Constructor Description Srs(String name, int srid, String organization, int organizationId, String wkt, String proj4, String linearUom, String angularUom, Srs.Type type, Double majorAxis, Double minorAxis, Double inverseFlattening, double minX, double maxX, double minY, double maxY)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAngularUom()
Double
getInverseFlattening()
String
getLinearUom()
Double
getMajorAxis()
double
getMaxX()
double
getMaxY()
Double
getMinorAxis()
double
getMinX()
double
getMinY()
String
getName()
String
getOrganization()
int
getOrganizationId()
String
getProj4()
int
getSrid()
Srs.Type
getType()
String
getWkt()
-
-
-
Method Detail
-
getName
public String getName()
-
getSrid
public int getSrid()
-
getOrganization
public String getOrganization()
-
getOrganizationId
public int getOrganizationId()
-
getWkt
public String getWkt()
-
getProj4
public String getProj4()
-
getLinearUom
public String getLinearUom()
-
getAngularUom
public String getAngularUom()
-
getType
public Srs.Type getType()
-
getMajorAxis
public Double getMajorAxis()
-
getMinorAxis
public Double getMinorAxis()
-
getInverseFlattening
public Double getInverseFlattening()
-
getMinX
public double getMinX()
-
getMaxX
public double getMaxX()
-
getMinY
public double getMinY()
-
getMaxY
public double getMaxY()
-
-