Codota Logo
MultiPoint.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.postgis.MultiPoint
constructor

Best Java code snippets using org.postgis.MultiPoint.<init> (Showing top 7 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: postgis/postgis-java

private MultiPoint parseMultiPoint(ValueGetter data) {
  Point[] points = new Point[data.getInt()];
  parseGeometryArray(data, points);
  return new MultiPoint(points);
}
origin: net.postgis/postgis-jdbc

private MultiPoint parseMultiPoint(ValueGetter data) {
  Point[] points = new Point[data.getInt()];
  parseGeometryArray(data, points);
  return new MultiPoint(points);
}
origin: com.mysema.querydsl/querydsl-sql

private static org.postgis.MultiPoint convert(MultiPoint multiPoint) {
  org.postgis.Point[] pgPoints = convertPoints(multiPoint);
  org.postgis.MultiPoint pgMultiPoint = new org.postgis.MultiPoint(pgPoints);
  pgMultiPoint.setSrid(multiPoint.getSRID());
  return pgMultiPoint;
}
origin: com.querydsl/querydsl-sql-spatial

private static org.postgis.MultiPoint convert(MultiPoint multiPoint) {
  org.postgis.Point[] pgPoints = convertPoints(multiPoint);
  org.postgis.MultiPoint pgMultiPoint = new org.postgis.MultiPoint(pgPoints);
  pgMultiPoint.setSrid(multiPoint.getSRID());
  return pgMultiPoint;
}
origin: net.postgis/postgis-jdbc

  result = new MultiLineString(value, haveM);
} else if (value.startsWith("MULTIPOINT")) {
  result = new MultiPoint(value, haveM);
} else if (value.startsWith("POLYGON")) {
  result = new Polygon(value, haveM);
origin: postgis/postgis-java

  result = new MultiLineString(value, haveM);
} else if (value.startsWith("MULTIPOINT")) {
  result = new MultiPoint(value, haveM);
} else if (value.startsWith("POLYGON")) {
  result = new Polygon(value, haveM);
origin: org.hibernatespatial/hibernate-spatial-postgis

private MultiPoint convertJTSMultiPoint(
    com.vividsolutions.jts.geom.MultiPoint multiPoint) {
  Point[] pgPoints = new Point[multiPoint.getNumGeometries()];
  for (int i = 0; i < pgPoints.length; i++) {
    pgPoints[i] = convertJTSPoint((com.vividsolutions.jts.geom.Point) multiPoint
        .getGeometryN(i));
  }
  MultiPoint mp = new MultiPoint(pgPoints);
  mp.setSrid(multiPoint.getSRID());
  return mp;
}
org.postgisMultiPoint<init>

Popular methods of MultiPoint

  • numPoints
  • getPoint
  • setSrid
  • getFirstPoint
  • getPoints

Popular in Java

  • Reactive rest calls using spring rest template
  • setRequestProperty (URLConnection)
  • startActivity (Activity)
  • getApplicationContext (Context)
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • ArrayList (java.util)
    Resizable-array implementation of the List interface. Implements all optional list operations, and p
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • BoxLayout (javax.swing)
  • JComboBox (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now