kiwi-postgis  Version 0.1.0.0
WKBRastDatatype Class Reference
Inheritance diagram for WKBRastDatatype:
Collaboration diagram for WKBRastDatatype:

Public Member Functions

GridCoverage read (String geometryLiteral)
 
String toString ()
 
String unparse (GridCoverage geom)
 

Static Public Attributes

static final String URI = POSTGIS.WKBRaster
 
static final WKBRastDatatype INSTANCE = new WKBRastDatatype()
 

Member Function Documentation

◆ read()

GridCoverage read ( String  geometryLiteral)

Referenced by RastFromWKB.construct().

19  {
20  /*WKBRasterReader reader2=new WKBRasterReader();
21  GridCoverage coverage=reader2.readCoverage(geometryLiteral.getBytes(), authorityFactory);
22  return coverage;
23  */
24  return null;
25  }

◆ toString()

String toString ( )
28  {
29  return "WKBRasterDatatype{" + URI + '}';
30  }

◆ unparse()

String unparse ( GridCoverage  geom)

Referenced by AsBinary.operation().

33  {
34  /*
35  WKBRasterWriter writer=new WKBRasterWriter();
36  String rasterWKB;
37  try {
38  rasterWKB = writer.write(geom).toString();
39  return rasterWKB.toString();
40  } catch (IOException | FactoryException e) {
41  throw new AssertionError(e.getMessage());
42  }*/
43  return null;
44  }

Member Data Documentation

◆ INSTANCE

◆ URI

final String URI = POSTGIS.WKBRaster
static