Commit 89da09170eace160d6b898e4c821f10f7226e636

Authored by 李强
1 parent a1d98347

修正路段 城建坐标与GPS坐标

src/main/java/com/bsth/entity/Section.java
... ... @@ -55,6 +55,9 @@ public class Section {
55 55 // 路段矢量(空间坐标点集合)--GPS坐标点
56 56 private String gsectionVector;
57 57  
  58 + // 路段矢量(空间坐标点集合)--城建坐标点
  59 + private String csectionVector;
  60 +
58 61 // 交叉路
59 62 private String crosesRoad;
60 63  
... ... @@ -162,6 +165,14 @@ public class Section {
162 165 this.gsectionVector = gsectionVector;
163 166 }
164 167  
  168 + public String getCsectionVector() {
  169 + return csectionVector;
  170 + }
  171 +
  172 + public void setCsectionVector(String csectionVector) {
  173 + this.csectionVector = csectionVector;
  174 + }
  175 +
165 176 public String getCrosesRoad() {
166 177 return crosesRoad;
167 178 }
... ...