Skip to content

Commit

Permalink
包位置调整
Browse files Browse the repository at this point in the history
  • Loading branch information
codingmiao committed Jan 16, 2023
1 parent 78f30cc commit 5b8fc3c
Show file tree
Hide file tree
Showing 23 changed files with 36 additions and 36 deletions.
4 changes: 2 additions & 2 deletions giscat-vector/giscat-vector-mbexpression/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>giscat-vector</artifactId>
<groupId>org.wowtools</groupId>
<version>g1.5.1</version>
<version>g1.5.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>giscat-vector-mbexpression</artifactId>
<version>g1.5.1</version>
<version>g1.5.2</version>
<description>mapbox expressions表达式解析为java对象,用以支持数据过滤等场景</description>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
package org.wowtools.giscat.vector.mbexpression.spatial;

import org.locationtech.jts.geom.Geometry;
import org.wowtools.giscat.util.analyse.TileClip;
import org.wowtools.giscat.vector.util.analyse.TileClip;
import org.wowtools.giscat.vector.mbexpression.Expression;
import org.wowtools.giscat.vector.mbexpression.ExpressionName;
import org.wowtools.giscat.vector.mbexpression.ExpressionParams;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
package org.wowtools.giscat.vector.mbexpression.spatial;

import org.locationtech.jts.geom.Geometry;
import org.wowtools.giscat.util.analyse.Bbox;
import org.wowtools.giscat.vector.util.analyse.Bbox;
import org.wowtools.giscat.vector.mbexpression.Expression;
import org.wowtools.giscat.vector.mbexpression.ExpressionName;
import org.wowtools.giscat.vector.mbexpression.ExpressionParams;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import org.locationtech.jts.geom.Geometry;
import org.locationtech.jts.io.ParseException;
import org.locationtech.jts.io.WKTReader;
import org.wowtools.giscat.util.analyse.Bbox;
import org.wowtools.giscat.util.analyse.TileClip;
import org.wowtools.giscat.vector.util.analyse.Bbox;
import org.wowtools.giscat.vector.util.analyse.TileClip;
import org.wowtools.giscat.vector.mbexpression.Expression;
import org.wowtools.giscat.vector.mbexpression.ExpressionParams;
import org.wowtools.giscat.vector.pojo.Feature;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import org.locationtech.jts.geom.GeometryFactory;
import org.locationtech.jts.geom.LineString;
import org.locationtech.jts.io.WKTReader;
import org.wowtools.giscat.util.analyse.Bbox;
import org.wowtools.giscat.util.analyse.TileClip;
import org.wowtools.giscat.vector.util.analyse.Bbox;
import org.wowtools.giscat.vector.util.analyse.TileClip;
import org.wowtools.giscat.vector.pojo.Feature;

import java.util.ArrayList;
Expand Down
4 changes: 2 additions & 2 deletions giscat-vector/giscat-vector-mvt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>giscat</artifactId>
<groupId>org.wowtools</groupId>
<version>g1.5.1</version>
<version>g1.5.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>giscat-vector-mvt</artifactId>
<version>g1.5.1</version>
<version>g1.5.2</version>
<description>Mapbox vector tile (mvt) 的序列化与反序列化</description>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

import org.locationtech.jts.algorithm.Orientation;
import org.locationtech.jts.geom.*;
import org.wowtools.giscat.util.analyse.Bbox;
import org.wowtools.giscat.util.analyse.TileClip;
import org.wowtools.giscat.util.cst.Tile2Wgs84;
import org.wowtools.giscat.vector.util.analyse.Bbox;
import org.wowtools.giscat.vector.util.analyse.TileClip;
import org.wowtools.giscat.vector.util.cst.Tile2Wgs84;

import java.util.ArrayList;
import java.util.LinkedHashMap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.locationtech.jts.geom.GeometryCollection;
import org.locationtech.jts.geom.TopologyException;
import org.locationtech.jts.simplify.TopologyPreservingSimplifier;
import org.wowtools.giscat.util.analyse.Bbox;
import org.wowtools.giscat.vector.util.analyse.Bbox;
import org.wowtools.giscat.vector.pojo.Feature;

import java.util.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.wowtools.giscat.vector.mvt;

import org.wowtools.giscat.util.cst.Tile2Wgs84;
import org.wowtools.giscat.vector.util.cst.Tile2Wgs84;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.wowtools.giscat.util.analyse.Bbox;
import org.wowtools.giscat.vector.util.analyse.Bbox;
import org.wowtools.giscat.vector.mvt.MvtBuilder;
import org.wowtools.giscat.vector.mvt.MvtLayer;
import org.wowtools.giscat.vector.pojo.Feature;
Expand Down
4 changes: 2 additions & 2 deletions giscat-vector/giscat-vector-pojo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>giscat-vector</artifactId>
<groupId>org.wowtools</groupId>
<version>g1.5.1</version>
<version>g1.5.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>giscat-vector-pojo</artifactId>
<version>g1.5.1</version>
<version>g1.5.2</version>
<dependencies>
<dependency>
<groupId>org.locationtech.jts</groupId>
Expand Down
4 changes: 2 additions & 2 deletions giscat-vector/giscat-vector-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>giscat</artifactId>
<groupId>org.wowtools</groupId>
<version>g1.5.1</version>
<version>g1.5.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>giscat-vector-util</artifactId>
<version>g1.5.1</version>
<version>g1.5.2</version>

<description>常用gis工具</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.wowtools.giscat.util.analyse;
package org.wowtools.giscat.vector.util.analyse;

import org.locationtech.jts.geom.*;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.wowtools.giscat.util.analyse;
package org.wowtools.giscat.vector.util.analyse;

import org.locationtech.jts.geom.*;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.wowtools.giscat.util.cst;
package org.wowtools.giscat.vector.util.cst;

import lombok.Getter;
import lombok.Setter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.wowtools.giscat.util.cst;
package org.wowtools.giscat.vector.util.cst;

import org.apache.commons.math.util.FastMath;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.wowtools.giscat.util.cst;
package org.wowtools.giscat.vector.util.cst;

import lombok.Getter;
import lombok.Setter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.wowtools.giscat.util.cst;
package org.wowtools.giscat.vector.util.cst;

/**
* web墨卡托与wgs84坐标互转
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.wowtools.giscat.util.analyse;
package org.wowtools.giscat.vector.util.analyse;

import org.locationtech.jts.geom.Coordinate;
import org.locationtech.jts.geom.Geometry;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.wowtools.giscat.util.analyse;
package org.wowtools.giscat.vector.util.analyse;

import org.locationtech.jts.geom.*;
import org.locationtech.jts.io.ParseException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.wowtools.giscat.util.cst;
package org.wowtools.giscat.vector.util.cst;


import org.junit.Assert;
Expand Down
4 changes: 2 additions & 2 deletions giscat-vector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>giscat</artifactId>
<groupId>org.wowtools</groupId>
<version>g1.5.1</version>
<version>g1.5.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>giscat-vector</artifactId>
<version>g1.5.1</version>
<version>g1.5.2</version>

<packaging>pom</packaging>
<modules>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>org.wowtools</groupId>
<artifactId>giscat</artifactId>
<packaging>pom</packaging>
<version>g1.5.1</version>
<version>g1.5.2</version>
<name>giscat</name>
<modules>
<module>giscat-vector</module>
Expand All @@ -27,22 +27,22 @@
<dependency>
<artifactId>giscat-vector-pojo</artifactId>
<groupId>org.wowtools</groupId>
<version>g1.5.1</version>
<version>g1.5.2</version>
</dependency>
<dependency>
<artifactId>giscat-vector-util</artifactId>
<groupId>org.wowtools</groupId>
<version>g1.5.1</version>
<version>g1.5.2</version>
</dependency>
<dependency>
<artifactId>giscat-vector-mvt</artifactId>
<groupId>org.wowtools</groupId>
<version>g1.5.1</version>
<version>g1.5.2</version>
</dependency>
<dependency>
<artifactId>giscat-vector-mbexpression</artifactId>
<groupId>org.wowtools</groupId>
<version>g1.5.1</version>
<version>g1.5.2</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 5b8fc3c

Please sign in to comment.