Tabnine Logo
WKTWriter.appendMultiPointText
Code IndexAdd Tabnine to your IDE (free)

How to use
appendMultiPointText
method
in
com.vividsolutions.jts.io.WKTWriter

Best Java code snippets using com.vividsolutions.jts.io.WKTWriter.appendMultiPointText (Showing top 2 results out of 315)

origin: com.vividsolutions/jts

/**
 *  Converts a <code>MultiPoint</code> to &lt;MultiPoint Tagged Text&gt;
 *  format, then appends it to the writer.
 *
 *@param  multipoint  the <code>MultiPoint</code> to process
 *@param  writer      the output writer to append to
 */
private void appendMultiPointTaggedText(MultiPoint multipoint, int level, Writer writer)
 throws IOException
{
 writer.write("MULTIPOINT ");
 appendMultiPointText(multipoint, level, writer);
}
origin: com.vividsolutions/jts-core

/**
 *  Converts a <code>MultiPoint</code> to &lt;MultiPoint Tagged Text&gt;
 *  format, then appends it to the writer.
 *
 *@param  multipoint  the <code>MultiPoint</code> to process
 *@param  writer      the output writer to append to
 */
private void appendMultiPointTaggedText(MultiPoint multipoint, int level, Writer writer)
 throws IOException
{
 writer.write("MULTIPOINT ");
 appendMultiPointText(multipoint, level, writer);
}
com.vividsolutions.jts.ioWKTWriterappendMultiPointText

Javadoc

Converts a MultiPoint to <MultiPoint Text> format, then appends it to the writer.

Popular methods of WKTWriter

  • write
    Converts a Geometry to its Well-known Text representation.
  • <init>
    Creates a writer that writes Geometrys with the given output dimension (2 or 3). If the specified ou
  • writeFormatted
    Converts a Geometry to its Well-known Text representation.
  • appendCoordinate
    Appends the i'th coordinate from the sequence to the writer
  • appendGeometryCollectionTaggedText
    Converts a GeometryCollection to format, then appends it to the wri
  • appendGeometryCollectionText
    Converts a GeometryCollection to format, then appends it to the writer.
  • appendGeometryTaggedText
    Converts a Geometry to format, then appends it to the writer.
  • appendLineStringTaggedText
    Converts a LineString to format, then appends it to the writer.
  • appendLineStringText
    Converts a LineString to format, then appends it to the writer.
  • appendLinearRingTaggedText
    Converts a LinearRing to format, then appends it to the writer.
  • appendMultiLineStringTaggedText
    Converts a MultiLineString to format, then appends it to the writer.
  • appendMultiLineStringText
    Converts a MultiLineString to format, then appends it to the writer.
  • appendMultiLineStringTaggedText,
  • appendMultiLineStringText,
  • appendMultiPointTaggedText,
  • appendMultiPolygonTaggedText,
  • appendMultiPolygonText,
  • appendPointTaggedText,
  • appendPointText,
  • appendPolygonTaggedText,
  • appendPolygonText

Popular in Java

  • Making http post requests using okhttp
  • getContentResolver (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getExternalFilesDir (Context)
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now