Commit 89da09170eace160d6b898e4c821f10f7226e636
1 parent
a1d98347
修正路段 城建坐标与GPS坐标
Showing
1 changed file
with
11 additions
and
0 deletions
src/main/java/com/bsth/entity/Section.java
| @@ -55,6 +55,9 @@ public class Section { | @@ -55,6 +55,9 @@ public class Section { | ||
| 55 | // 路段矢量(空间坐标点集合)--GPS坐标点 | 55 | // 路段矢量(空间坐标点集合)--GPS坐标点 |
| 56 | private String gsectionVector; | 56 | private String gsectionVector; |
| 57 | 57 | ||
| 58 | + // 路段矢量(空间坐标点集合)--城建坐标点 | ||
| 59 | + private String csectionVector; | ||
| 60 | + | ||
| 58 | // 交叉路 | 61 | // 交叉路 |
| 59 | private String crosesRoad; | 62 | private String crosesRoad; |
| 60 | 63 | ||
| @@ -162,6 +165,14 @@ public class Section { | @@ -162,6 +165,14 @@ public class Section { | ||
| 162 | this.gsectionVector = gsectionVector; | 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 | public String getCrosesRoad() { | 176 | public String getCrosesRoad() { |
| 166 | return crosesRoad; | 177 | return crosesRoad; |
| 167 | } | 178 | } |