简介

  1. JTS是加拿大的 Vivid Solutions公司做的一套开放源码的 Java API。它提供了一套空间数据操作的核心算法。为在兼容OGC标准的空间对象模型中进行基础的几何操作提供2D空间谓词API。

操作

  1. 表示Geometry对象
    1. Geometry类型介绍见另一篇文章:WKT WKB和GeoJSON
    2. package com.alibaba.autonavi;
      
      import com.vividsolutions.jts.geom.Coordinate;
      import com.vividsolutions.jts.geom.Geometry;
      import com.vividsolutions.jts.geom.GeometryCollection;
      import com.vividsolutions.jts.geom.GeometryFactory;
      import com.vividsolutions.jts.geom.LineString;
      import com.vividsolutions.jts.geom.LinearRing;
      import com.vividsolutions.jts.geom.Point;
      import com.vividsolutions.jts.geom.Polygon;
      import com.vividsolutions.jts.geom.MultiPolygon;
      import com.vividsolutions.jts.geom.MultiLineString;
      import com.vividsolutions.jts.geom.MultiPoint;
      import com.vividsolutions.jts.io.ParseException;
      import com.vividsolutions.jts.io.WKTReader; public class GeometryDemo { private GeometryFactory geometryFactory = new GeometryFactory(); /**
      * create a point
      * @return
      */
      public Point createPoint(){
      Coordinate coord = new Coordinate(109.013388, 32.715519);
      Point point = geometryFactory.createPoint( coord );
      return point;
      } /**
      * create a point by WKT
      * @return
      * @throws ParseException
      */
      public Point createPointByWKT() throws ParseException{
      WKTReader reader = new WKTReader( geometryFactory );
      Point point = (Point) reader.read("POINT (109.013388 32.715519)");
      return point;
      } /**
      * create multiPoint by wkt
      * @return
      */
      public MultiPoint createMulPointByWKT()throws ParseException{
      WKTReader reader = new WKTReader( geometryFactory );
      MultiPoint mpoint = (MultiPoint) reader.read("MULTIPOINT(109.013388 32.715519,119.32488 31.435678)");
      return mpoint;
      }
      /**
      *
      * create a line
      * @return
      */
      public LineString createLine(){
      Coordinate[] coords = new Coordinate[] {new Coordinate(2, 2), new Coordinate(2, 2)};
      LineString line = geometryFactory.createLineString(coords);
      return line;
      } /**
      * create a line by WKT
      * @return
      * @throws ParseException
      */
      public LineString createLineByWKT() throws ParseException{
      WKTReader reader = new WKTReader( geometryFactory );
      LineString line = (LineString) reader.read("LINESTRING(0 0, 2 0)");
      return line;
      } /**
      * create multiLine
      * @return
      */
      public MultiLineString createMLine(){
      Coordinate[] coords1 = new Coordinate[] {new Coordinate(2, 2), new Coordinate(2, 2)};
      LineString line1 = geometryFactory.createLineString(coords1);
      Coordinate[] coords2 = new Coordinate[] {new Coordinate(2, 2), new Coordinate(2, 2)};
      LineString line2 = geometryFactory.createLineString(coords2);
      LineString[] lineStrings = new LineString[2];
      lineStrings[0]= line1;
      lineStrings[1] = line2;
      MultiLineString ms = geometryFactory.createMultiLineString(lineStrings);
      return ms;
      } /**
      * create multiLine by WKT
      * @return
      * @throws ParseException
      */
      public MultiLineString createMLineByWKT()throws ParseException{
      WKTReader reader = new WKTReader( geometryFactory );
      MultiLineString line = (MultiLineString) reader.read("MULTILINESTRING((0 0, 2 0),(1 1,2 2))");
      return line;
      } /**
      * create a polygon(多边形) by WKT
      * @return
      * @throws ParseException
      */
      public Polygon createPolygonByWKT() throws ParseException{
      WKTReader reader = new WKTReader( geometryFactory );
      Polygon polygon = (Polygon) reader.read("POLYGON((20 10, 30 0, 40 10, 30 20, 20 10))");
      return polygon;
      } /**
      * create multi polygon by wkt
      * @return
      * @throws ParseException
      */
      public MultiPolygon createMulPolygonByWKT() throws ParseException{
      WKTReader reader = new WKTReader( geometryFactory );
      MultiPolygon mpolygon = (MultiPolygon) reader.read("MULTIPOLYGON(((40 10, 30 0, 40 10, 30 20, 40 10),(30 10, 30 0, 40 10, 30 20, 30 10)))");
      return mpolygon;
      } /**
      * create GeometryCollection contain point or multiPoint or line or multiLine or polygon or multiPolygon
      * @return
      * @throws ParseException
      */
      public GeometryCollection createGeoCollect() throws ParseException{
      LineString line = createLine();
      Polygon poly = createPolygonByWKT();
      Geometry g1 = geometryFactory.createGeometry(line);
      Geometry g2 = geometryFactory.createGeometry(poly);
      Geometry[] garray = new Geometry[]{g1,g2};
      GeometryCollection gc = geometryFactory.createGeometryCollection(garray);
      return gc;
      } /**
      * create a Circle 创建一个圆,圆心(x,y) 半径RADIUS
      * @param x
      * @param y
      * @param RADIUS
      * @return
      */
      public Polygon createCircle(double x, double y, final double RADIUS){
      final int SIDES = 32;//圆上面的点个数
      Coordinate coords[] = new Coordinate[SIDES+1];
      for( int i = 0; i < SIDES; i++){
      double angle = ((double) i / (double) SIDES) * Math.PI * 2.0;
      double dx = Math.cos( angle ) * RADIUS;
      double dy = Math.sin( angle ) * RADIUS;
      coords[i] = new Coordinate( (double) x + dx, (double) y + dy );
      }
      coords[SIDES] = coords[0];
      LinearRing ring = geometryFactory.createLinearRing( coords );
      Polygon polygon = geometryFactory.createPolygon( ring, null );
      return polygon;
      } /**
      * @param args
      * @throws ParseException
      */
      public static void main(String[] args) throws ParseException {
      GeometryDemo gt = new GeometryDemo();
      Polygon p = gt.createCircle(0, 1, 2);
      //圆上所有的坐标(32个)
      Coordinate coords[] = p.getCoordinates();
      for(Coordinate coord:coords){
      System.out.println(coord.x+","+coord.y);
      }
      }
      }

JTS基本概念和使用的更多相关文章

  1. JTS相关资料和示例

    示例 JTS基本概念和使用 JTS Geometry之间的关系 JTS algorithm package

  2. java各种概念 Core Java总结

    Base: OOA是什么?OOD是什么?OOP是什么?{ oo(object-oriented):基于对象概念,以对象为中心,以类和继承为构造机制,来认识,理解,刻画客观世界和设计,构建相应的软件系统 ...

  3. JTS

    在这个系列的 第 1 部分,我们讨论了事务并研究了它们的基本属性 ― 原子性(atomicity).一致性(consistency).孤立性(isolation)和持久性(durability).事务 ...

  4. JTS(Geometry)(转)

    原文链接:http://blog.csdn.net/cdl2008sky/article/details/7268577 空间数据模型(1).JTS Geometry model (2).ISO Ge ...

  5. J2EE之13个规范标准概念

    主要是关于j2EE十三个规范的总结. java基础知识 首先java分为三类:J2ME.J2SE.J2EE. 依据开发软件的大小和量级他们的作用分别不同,J2ME是开发为机顶盒.移动电话和PDA之类嵌 ...

  6. 如何一步一步用DDD设计一个电商网站(一)—— 先理解核心概念

    一.前言     DDD(领域驱动设计)的一些介绍网上资料很多,这里就不继续描述了.自己使用领域驱动设计摸滚打爬也有2年多的时间,出于对知识的总结和分享,也是对自我理解的一个公开检验,介于博客园这个平 ...

  7. 【Machine Learning】机器学习及其基础概念简介

    机器学习及其基础概念简介 作者:白宁超 2016年12月23日21:24:51 摘要:随着机器学习和深度学习的热潮,各种图书层出不穷.然而多数是基础理论知识介绍,缺乏实现的深入理解.本系列文章是作者结 ...

  8. 【Oracle 集群】ORACLE DATABASE 11G RAC 知识图文详细教程之集群概念介绍(一)

    集群概念介绍(一)) 白宁超 2015年7月16日 概述:写下本文档的初衷和动力,来源于上篇的<oracle基本操作手册>.oracle基本操作手册是作者研一假期对oracle基础知识学习 ...

  9. 声音分贝的概念,dBSPL.dBm,dBu,dBV,dBFS

    需要做个音频的PPM表,看着一堆的音频术语真是懵了,苦苦在网上扒了几天的文档,终于有了点收获,下面关于声音的分贝做个总结. 分贝 Decibel 分贝(dB)是一个对数单位(logarithmic u ...

随机推荐

  1. Django两天搭建个人博客

    传送门:https://github.com/1417766861/django-blog(可直接运行,上面有步骤) 效果: 首页: 侧栏: 详情页面: 修改头像,资料,文章发布: 支持添加标签拖拽 ...

  2. oracle ASM安装过程中UDEV实现磁盘绑定

    UDEV相较于ORACLE 自己的ASMlib 相对比较成熟. 文章转载自:  Maclean Liu的个人技术博客 [http://www.oracledatabase12g.com/] 在< ...

  3. Selenium自动化测试Python五:WebDriver设计模式

    WebDriver 设计模式 欢迎阅读WebDriver进阶讲义.本篇讲义将会重点介绍Selenium WebDriver 自动化框架的设计,着重使用Page Object设计模式,以及使用HTML测 ...

  4. 自测 基础 js 脚本。

    <html> <head> <script> //function(<text>a{[]}lert('x')</text>)() docum ...

  5. VMWare Workstation 11的安装

    不多说,直接上干货! 说白了   VMWare Workstation是收费的! VMware Player 和 VirtualBox是免费的! 虚拟机软件可让你在一个操作系统上直接运行的多个不同的虚 ...

  6. WebMagic实现分布式抓取以及断点抓取

    访问我的博客 前言 从去年到今年,笔者主要负责的是与合作方的内容对接,新增的合作商不是很多的情况下,在我自从去年引入了 WebMagic 这个爬虫框架之后,基本很少需要去关注维护爬虫,做的最多的是新接 ...

  7. Linux交换空间和内存不足

    交换空间 交换技术就是将一页内存复制到预先设定的硬盘上的交换空间,来释放该页占用内存.物理内存和交换空间的和就是可提供的虚拟内存的总量.Linux有两种形式的交换方式,分别是交换分区,交换文件. 优点 ...

  8. 基于C++ Qt实现的红色警戒3修改器

    前言 这部修改器制作有一段时间了,但是一直没出教程.今天利用周末空闲写篇教程,给后来者指路的同时也加深自己对游戏修改器的理解,大佬就随便看看吧 浏览了一下网络,形形色色的单机游戏修改器教程,但是基本只 ...

  9. 并发编程之 Exchanger 源码分析

    前言 JUC 包中除了 CountDownLatch, CyclicBarrier, Semaphore, 还有一个重要的工具,只不过相对而言使用的不多,什么呢? Exchange -- 交换器.用于 ...

  10. [转]史上最佳 Mac+PhpStorm+XAMPP+Xdebug 集成开发和断点调试环境的配置

    本文转自:https://www.cnblogs.com/lishiyun19/p/4470086.html 在上一篇 PHP 系列的文章<PHP 集成开发环境比较>中,我根据自己的亲身体 ...