rdf4j-postgis  Version 0.1.0.0
MVTDatatype Class Reference
Inheritance diagram for MVTDatatype:
Collaboration diagram for MVTDatatype:

Public Member Functions

String toString ()
 This method Un-parses the JTS Geometry to the GML literal. More...
 
String unparse (Geometry geom)
 
Geometry read (String literalValue)
 

Static Public Attributes

static final String URI = POSTGIS.MVT
 The default GML type URI. More...
 
static final MVTDatatype INSTANCE = new MVTDatatype()
 A static instance of GMLDatatype. More...
 
static final String KML_PREFIX = "mvt"
 XML element tag "gml" is defined for the convenience of GML generation. More...
 

Member Function Documentation

◆ read()

Geometry read ( String  literalValue)

Reimplemented from VectorLiteral.

93  {
94  // TODO Auto-generated method stub
95  return null;
96  }

◆ toString()

String toString ( )

This method Un-parses the JTS Geometry to the GML literal.

Parameters
geometry- the JTS Geometry to be un-parsed
Returns
GML - the returned GML Literal.
Notice that the Spatial Reference System "urn:ogc:def:crs:OGC::CRS84" is predefined in the returned GML literal.
82  {
83  return "MVTDatatype{" + URI + '}';
84  }
static final String URI
The default GML type URI.
Definition: MVTDatatype.java:24

References MVTDatatype.URI.

◆ unparse()

String unparse ( Geometry  geom)

Reimplemented from VectorLiteral.

87  {
88  // TODO Auto-generated method stub
89  return null;
90  }

Referenced by AsMVT.operation().

Member Data Documentation

◆ INSTANCE

final MVTDatatype INSTANCE = new MVTDatatype()
static

A static instance of GMLDatatype.

Referenced by AsMVT.operation().

◆ KML_PREFIX

final String KML_PREFIX = "mvt"
static

XML element tag "gml" is defined for the convenience of GML generation.

◆ URI

final String URI = POSTGIS.MVT
static

The default GML type URI.

Referenced by MVTDatatype.toString().