- All Implemented Interfaces:
Serializable
,Cloneable
,Localized
Parser and formatter for Well Known Text (WKT) strings.
This format handles a pair of
Parser
and Formatter
,
used by the parse(…)
and format(…)
methods respectively.
WKTFormat
objects allow the following configuration:
- The preferred authority of object name to
format (see
Formatter.getNameAuthority()
for more information). - The symbols to use (curly braces or brackets, etc).
- The transliterator to use for replacing Unicode characters by ASCII ones.
- Whether ANSI X3.64 colors are allowed or not (default is not).
- The indentation.
String expansion
Because the strings to be parsed by this class are long and tend to contain repetitive substrings,WKTFormat
provides a mechanism for performing string substitutions before the parsing take place.
Long strings can be assigned short names by calls to the addFragment(String, String)
method.
After fragments have been added, any call to a parsing method will replace all occurrences (except in
quoted text) of tokens like $foo
by the WKT fragment named "foo".
Example
In the example below, the$WGS84
substring which appear in the argument given to the
parseObject(…)
method will be expanded into the full GeodeticCRS[“WGS84”, …]
string before the parsing proceed.
Note that the parsing of WKT fragment does not always produce the same object. In particular, the default linear and angular units depend on the context in which the WKT fragment appears.addFragment("deg", "AngleUnit[“degree”, 0.0174532925199433]");
…etc…
addFragment("lat", "Axis[“Latitude”, NORTH, $deg]");
addFragment("lon", "Axis[“Longitude”, EAST, $deg]");
addFragment("MyBaseCRS", "GeodeticCRS[“WGS84”, Datum[], CS[
…etc…], $lat, $lon]");
…etc…
Object crs = parseObject("ProjectedCRS[“Mercator_1SP”, $MyBaseCRS,]");
Limitations
- The WKT format is not lossless!
Objects formatted by
WKTFormat
are not guaranteed to be identical after parsing. Some metadata may be lost or altered, but the coordinate operations between two CRS should produce the same numerical results provided that the two CRS were formatted independently (do not rely onGeneralDerivedCRS.getConversionFromBase()
for instance). - Instances of this class are not synchronized for multi-threading.
It is recommended to create separated format instances for each thread.
If multiple threads access a
WKTFormat
concurrently, it must be synchronized externally. - Serialized objects of this class are not guaranteed to be compatible with future Apache SIS releases. Serialization support is appropriate for short term storage or RMI between applications running the same version of Apache SIS.
- Since:
- 0.4
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class Format
Format.Field
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
The indentation value to give to thesetIndentation(int)
method for formatting the complete object on a single line. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addFragment
(String name, String wkt) Adds a fragment of Well Know Text (WKT).clone()
Returns a clone of this format.protected Format
createFormat
(Class<?> valueType) Creates a new format to use for parsing and formatting values of the given type.void
format
(Object object, Appendable toAppendTo) Formats the specified object as a Well Know Text.Returns the colors to use for syntax coloring, ornull
if none.Returns the convention for parsing and formatting WKT elements.<T extends Factory>
TgetFactory
(Class<T> type) Returns one of the factories used by thisWKTFormat
for parsing WKT.Returns the name of all WKT fragments known to thisWKTFormat
.int
Returns the current indentation to be used for formatting objects.Returns whether WKT keywords should be written with upper cases or camel cases.Returns whether to use short or long WKT keywords.getLocale
(Locale.Category category) Returns the locale for the given category.int
Returns the maximum number of elements to show in lists of values.Returns the preferred authority to look for when fetching identified object names and identifiers.Returns the symbols used for parsing and formatting WKT.Returns a mapper between Java character sequences and the characters to write in WKT.Returns the type of objects formatted by this class.If warnings occurred during the last WKT parsing or formatting, returns the warnings.parse
(CharSequence wkt, ParsePosition pos) Creates an object from the given character sequence.void
setColors
(Colors colors) Sets the colors to use for syntax coloring.void
setConvention
(Convention convention) Sets the convention for parsing and formatting WKT elements.<T extends Factory>
voidsetFactory
(Class<T> type, T factory) Sets one of the factories to be used by thisWKTFormat
for parsing WKT.void
setIndentation
(int indentation) Sets a new indentation to be used for formatting objects.void
setKeywordCase
(KeywordCase keywordCase) Sets whether WKT keywords should be written with upper cases or camel cases.void
setKeywordStyle
(KeywordStyle keywordStyle) Sets whether to use short or long WKT keywords.void
setMaximumListElements
(int limit) Sets a new limit for the number of elements to show in lists.void
setNameAuthority
(Citation authority) Sets the preferred authority for choosing the projection and parameter names.void
setSymbols
(Symbols symbols) Sets the symbols used for parsing and formatting WKT.void
setTransliterator
(Transliterator transliterator) Sets the mapper between Java character sequences and the characters to write in WKT.Methods inherited from class CompoundFormat
format, getFormat, getLocale, getTimeZone, parseObject, parseObject
Methods inherited from class Format
format, formatToCharacterIterator
-
Field Details
-
SINGLE_LINE
public static final int SINGLE_LINEThe indentation value to give to thesetIndentation(int)
method for formatting the complete object on a single line.- See Also:
-
-
Constructor Details
-
WKTFormat
Creates a format for the given locale and timezone. The given locale will be used forInternationalString
localization; this is not the locale for number format.- Parameters:
locale
- the locale for the newFormat
, ornull
forLocale.ROOT
.timezone
- the timezone, ornull
for UTC.
-
-
Method Details
-
getLocale
Returns the locale for the given category. This method implements the following mapping:Locale.Category.FORMAT
: the value ofSymbols.getLocale()
, normally fixed toLocale.ROOT
, used for number formatting.Locale.Category.DISPLAY
: thelocale
given at construction time, used forInternationalString
localization.
- Overrides:
getLocale
in classCompoundFormat<Object>
- Parameters:
category
- the category for which a locale is desired.- Returns:
- the locale for the given category (never
null
).
-
getSymbols
Returns the symbols used for parsing and formatting WKT. This method returns an unmodifiable instance. Modifications, if desired, should be applied on a clone of the returned object.- Returns:
- the current set of symbols used for parsing and formatting WKT.
-
setSymbols
Sets the symbols used for parsing and formatting WKT.- Parameters:
symbols
- the new set of symbols to use for parsing and formatting WKT.
-
getTransliterator
Returns a mapper between Java character sequences and the characters to write in WKT. The intent is to specify how to write characters that are not allowed in WKT strings according ISO 19162 specification. Return values can be:Transliterator.DEFAULT
for performing replacements like "é" → "e" in all WKT elements exceptREMARKS["…"]
.Transliterator.IDENTITY
for preserving non-ASCII characters.- Any other user supplied mapping.
- Returns:
- the mapper between Java character sequences and the characters to write in WKT.
- Since:
- 0.6
-
setTransliterator
Sets the mapper between Java character sequences and the characters to write in WKT.If this method is never invoked, or if this method is invoked with a
null
value, then the default mapper isTransliterator.DEFAULT
except for WKT formatted according the internal convention.- Parameters:
transliterator
- the new mapper to use, ornull
for restoring the default value.- Since:
- 0.6
-
getKeywordCase
Returns whether WKT keywords should be written with upper cases or camel cases.- Returns:
- the case to use for formatting keywords.
-
setKeywordCase
Sets whether WKT keywords should be written with upper cases or camel cases.- Parameters:
keywordCase
- the case to use for formatting keywords.
-
getKeywordStyle
Returns whether to use short or long WKT keywords.- Returns:
- the style used for formatting keywords.
- Since:
- 0.6
-
setKeywordStyle
Sets whether to use short or long WKT keywords.- Parameters:
keywordStyle
- the style to use for formatting keywords.- Since:
- 0.6
-
getColors
Returns the colors to use for syntax coloring, ornull
if none. This method returns an unmodifiable instance. Modifications, if desired, should be applied on a clone of the returned object. By default there is no syntax coloring.- Returns:
- the colors for syntax coloring, or
null
if none.
-
setColors
Sets the colors to use for syntax coloring. This property applies only when formatting text.Newly created
WKTFormat
s have no syntax coloring. If a non-null argument likeColors.DEFAULT
is given to this method, then theformat(…)
method tries to highlight most of the elements that are relevant toUtilities.equalsIgnoreMetadata(Object, Object)
.- Parameters:
colors
- the colors for syntax coloring, ornull
if none.
-
getConvention
Returns the convention for parsing and formatting WKT elements. The default value isConvention.WKT2
.- Returns:
- the convention to use for formatting WKT elements (never
null
).
-
setConvention
Sets the convention for parsing and formatting WKT elements.- Parameters:
convention
- the new convention to use for parsing and formatting WKT elements.
-
getNameAuthority
Returns the preferred authority to look for when fetching identified object names and identifiers. The difference between various authorities are most easily seen in projection and parameter names. If no authority has been explicitly set, then this method returns the default authority for the current convention.Example
The following table shows the names given by various organizations or projects for the same projection:Projection name examples Authority Projection name EPSG Mercator (variant A) OGC Mercator_1SP GEOTIFF CT_Mercator - Returns:
- the organization, standard or project to look for when fetching projection and parameter names.
- See Also:
-
setNameAuthority
Sets the preferred authority for choosing the projection and parameter names. If non-null, the given priority will have precedence over the authority usually associated to the convention. Anull
value restore the default behavior.- Parameters:
authority
- the new authority, ornull
for inferring it from the convention.- See Also:
-
getIndentation
public int getIndentation()Returns the current indentation to be used for formatting objects. The -1 value means that the whole WKT is to be formatted on a single line.- Returns:
- the current indentation.
-
setIndentation
public void setIndentation(int indentation) Sets a new indentation to be used for formatting objects. The -1 value means that the whole WKT is to be formatted on a single line.- Parameters:
indentation
- the new indentation to use.- See Also:
-
getMaximumListElements
public int getMaximumListElements()Returns the maximum number of elements to show in lists of values. If a list length is greater than this limit, then only the first and last elements will be shown together with a message saying that some elements were omitted. This limit is useful in particular withMathTransform
parameter values ofdouble[]
type, since those parameters may be large interpolation tables.- Returns:
- the current lists size limit, or
Integer.MAX_VALUE
if unlimited. - Since:
- 1.0
-
setMaximumListElements
public void setMaximumListElements(int limit) Sets a new limit for the number of elements to show in lists. If this method is never invoked, then the default is unlimited.- Parameters:
limit
- the new lists size limit, orInteger.MAX_VALUE
if unlimited.- Since:
- 1.0
-
getFactory
Returns one of the factories used by thisWKTFormat
for parsing WKT. The giventype
argument can be one of the following values:CRSFactory.class
CSFactory.class
DatumFactory.class
MathTransformFactory.class
CoordinateOperationFactory.class
- Type Parameters:
T
- the compile-time type of thetype
argument.- Parameters:
type
- the factory type.- Returns:
- the factory used by this
WKTFormat
for the given type. - Throws:
IllegalArgumentException
- if thetype
argument is not one of the valid values.
-
setFactory
Sets one of the factories to be used by thisWKTFormat
for parsing WKT. The giventype
argument can be one of the following values:CRSFactory.class
CSFactory.class
DatumFactory.class
MathTransformFactory.class
CoordinateOperationFactory.class
Limitation
The current implementation does not serialize the given factories, because they are usually notSerializable
. The factories used byWKTFormat
instances after deserialization are the default ones.- Type Parameters:
T
- the compile-time type of thetype
argument.- Parameters:
type
- the factory type.factory
- the factory to be used by thisWKTFormat
for the given type.- Throws:
IllegalArgumentException
- if thetype
argument is not one of the valid values.
-
getValueType
Returns the type of objects formatted by this class. This method has to returnObject.class
since it is the only common parent to all object types accepted by this formatter.- Specified by:
getValueType
in classCompoundFormat<Object>
- Returns:
Object.class
-
getFragmentNames
Returns the name of all WKT fragments known to thisWKTFormat
. The returned collection is initially empty. WKT fragments can be added by call toaddFragment(String, String)
.The returned collection is modifiable. In particular, a call to
Set.clear()
removes all fragments from thisWKTFormat
.- Returns:
- the name of all fragments known to this
WKTFormat
.
-
addFragment
Adds a fragment of Well Know Text (WKT). Thewkt
argument given to this method can contains itself other fragments specified in some previous calls to this method.Example
If the following method is invoked:addFragment("MyEllipsoid", "Ellipsoid[“Bessel 1841”, 6377397.155, 299.1528128, ID[“EPSG”,“7004”]]");
WKTFormat
instance can refer to the above fragment as below (WKT after the ellipsoid omitted for brevity):Object crs = parseObject("GeodeticCRS[“Tokyo”, Datum[“Tokyo”, $MyEllipsoid], …]");
getFragmentNames().remove(name)
.- Parameters:
name
- the name to assign to the WKT fragment (case-sensitive). Must be a valid Unicode identifier.wkt
- the Well Know Text (WKT) fragment represented by the given identifier.- Throws:
IllegalArgumentException
- if the given name is not a valid Unicode identifier or if a fragment is already associated to that name.ParseException
- if an error occurred while parsing the given WKT.
-
parse
Creates an object from the given character sequence. The parsing begins at the index given by thepos
argument. After successful parsing,ParsePosition.getIndex()
gives the position after the last parsed character. In case of error,ParseException.getErrorOffset()
gives the position of the first illegal character.- Specified by:
parse
in classCompoundFormat<Object>
- Parameters:
wkt
- the character sequence for the object to parse.pos
- index of the first character to parse (on input) or after last parsed character (on output).- Returns:
- the parsed object (never
null
). - Throws:
ParseException
- if an error occurred while parsing the WKT.
-
format
Formats the specified object as a Well Know Text. The formatter accepts at least the following types:FormattableObject
,IdentifiedObject
,MathTransform
,GeographicBoundingBox
,VerticalExtent
,TemporalExtent
,Envelope
,Position
andUnit
.- Specified by:
format
in classCompoundFormat<Object>
- Parameters:
object
- the object to format.toAppendTo
- where the text is to be appended.- Throws:
IOException
- if an error occurred while writing totoAppendTo
.- See Also:
-
createFormat
Creates a new format to use for parsing and formatting values of the given type. This method is invoked the first time that a format is needed for the given type. ThevalueType
can be any types declared in the parent class.- Overrides:
createFormat
in classCompoundFormat<Object>
- Parameters:
valueType
- the base type of values to parse or format.- Returns:
- the format to use for parsing of formatting values of the given type, or
null
if none.
-
getWarnings
If warnings occurred during the last WKT parsing or formatting, returns the warnings. Otherwise returnsnull
. The warnings are cleared every time a new object is parsed or formatted.- Returns:
- the warnings of the last parsing of formatting operation, or
null
if none. - Since:
- 0.6
-
clone
Returns a clone of this format. The clone has the same configuration (including any added fragments), except the warnings.- Overrides:
clone
in classCompoundFormat<Object>
- Returns:
- a clone of this format.
-