Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
p x
wsmock
Commits
d42c40cd
Commit
d42c40cd
authored
Feb 11, 2026
by
p x
Browse files
Http SSE 车辆位姿
parent
761ed3e9
Changes
7
Show whitespace changes
Inline
Side-by-side
src/main/kotlin/com/inzy/wsmock/bean/CarSseReq.kt
0 → 100644
View file @
d42c40cd
package
com.inzy.wsmock.bean
/**车辆位姿请求**/
class
CarSseReq
{
var
id
=
""
}
\ No newline at end of file
src/main/kotlin/com/inzy/wsmock/bean/CarVehBak.kt
View file @
d42c40cd
package
com.
sd.cavphmi
.bean
package
com.
inzy.wsmock
.bean
/***网联车辆位姿
* {
...
...
src/main/kotlin/com/inzy/wsmock/bean/RouteCarVeh.kt
View file @
d42c40cd
package
com.inzy.wsmock.bean
/***车辆位姿*/
/***车辆位姿
模拟文件
*/
class
RouteCarVeh
{
/**业务状态 park call park_com call_com**/
var
status
=
"park"
/***车辆行驶的点位**/
var
carPos
=
0
//
var carPos = 0
/***全局路径**/
var
rs
:
List
<
MutableList
<
Double
>>?
=
null
}
/***车辆位姿模拟文件*/
class
RouteCar
{
/***全局路径**/
var
rs
:
List
<
List
<
Double
>>?
=
null
}
/***推给APP的数据***/
class
CarVehicle
{
//vehiclePos 里面分别是 经度、纬度、航向角
var
vehiclePos
:
List
<
Double
>?
=
null
}
\ No newline at end of file
src/main/kotlin/com/inzy/wsmock/push/AvpPushTask.kt
View file @
d42c40cd
...
...
@@ -10,13 +10,12 @@ import com.inzy.wsmock.bean.V2xStartBean
import
com.inzy.wsmock.bean.VObject
import
com.inzy.wsmock.utils.FileIoUtil
import
com.inzy.wsmock.utils.MyMapUtils
import
com.
sd.cavphmi
.bean.CarVehBak
import
com.
inzy.wsmock
.bean.CarVehBak
import
io.netty.channel.Channel
import
io.netty.handler.codec.http.websocketx.TextWebSocketFrame
import
jakarta.annotation.PostConstruct
import
jakarta.annotation.PreDestroy
import
kotlinx.coroutines.*
import
kotlinx.coroutines.time.delay
import
org.slf4j.LoggerFactory
import
org.springframework.core.io.ResourceLoader
import
org.springframework.stereotype.Component
...
...
@@ -125,7 +124,7 @@ class AvpPushTask(
override
fun
pushMsgFromType
(
type
:
String
,
channel
:
Channel
)
{
when
(
type
)
{
RequestParamHandler
.
PARAM_TYPE_VALUE_1
->
{
//车辆位姿
pushCarPos
(
channel
)
//
pushCarPos(channel)
}
RequestParamHandler
.
PARAM_TYPE_VALUE_2
->
{
//感知物
...
...
src/main/kotlin/com/inzy/wsmock/push/SseController.kt
0 → 100644
View file @
d42c40cd
package
com.inzy.wsmock.push
import
com.alibaba.fastjson2.JSON
import
com.inzy.wsmock.bean.CarSseReq
import
com.inzy.wsmock.bean.CarVehicle
import
com.inzy.wsmock.bean.ParkPath
import
com.inzy.wsmock.bean.RouteCar
import
com.inzy.wsmock.utils.FileIoUtil
import
jakarta.annotation.PreDestroy
import
kotlinx.coroutines.*
import
org.springframework.core.io.ResourceLoader
import
org.springframework.http.MediaType
import
org.springframework.stereotype.Controller
import
org.springframework.web.bind.annotation.GetMapping
import
org.springframework.web.bind.annotation.PostMapping
import
org.springframework.web.bind.annotation.RequestBody
import
org.springframework.web.context.request.async.AsyncRequestNotUsableException
import
org.springframework.web.servlet.mvc.method.annotation.SseEmitter
import
java.io.IOException
import
java.time.LocalDateTime
import
java.util.concurrent.CompletableFuture
import
java.util.concurrent.ConcurrentHashMap
import
java.util.concurrent.Executors
import
java.util.concurrent.TimeUnit
import
kotlin.random.Random
@Controller
class
SseController
(
private
val
resourceLoader
:
ResourceLoader
)
{
companion
object
{
}
private
val
emitters
=
ConcurrentHashMap
<
String
,
SseEmitter
>()
private
val
executor
=
Executors
.
newScheduledThreadPool
(
2
)
init
{
// 定时发送心跳消息以保持连接活跃
executor
.
scheduleAtFixedRate
({
val
heartbeatData
=
mapOf
(
"type"
to
"heartbeat"
,
"timestamp"
to
LocalDateTime
.
now
().
toString
()
)
emitters
.
entries
.
forEach
{
(
userId
,
emitter
)
->
try
{
emitter
.
send
(
SseEmitter
.
event
()
.
name
(
"heartbeat"
)
.
data
(
heartbeatData
)
)
}
catch
(
e
:
IOException
)
{
println
(
"Heartbeat failed for user: $userId"
)
emitter
.
completeWithError
(
e
)
true
}
}
},
30
,
30
,
TimeUnit
.
SECONDS
)
}
//推给APP的
var
carVehicle
=
CarVehicle
()
@PostMapping
(
"/api/avpweb/hmi/monitor/v1/monitorDrivenStatus"
,
produces
=
[
MediaType
.
TEXT_EVENT_STREAM_VALUE
])
fun
car
(
@RequestBody
carSseReq
:
CarSseReq
):
SseEmitter
{
val
emitter
=
SseEmitter
(
0L
)
// 设置超时时间为0表示永不超时
val
carid
=
carSseReq
.
id
emitter
.
onCompletion
{
emitters
.
remove
(
carid
)
println
(
"SSE connection completed for carid: $carid"
)
}
emitter
.
onTimeout
{
emitters
.
remove
(
carid
)
println
(
"SSE connection timed out for carId: $carid"
)
try
{
emitter
.
complete
()
}
catch
(
e
:
Exception
)
{
e
.
printStackTrace
()
}
}
emitter
.
onError
{
ex
->
emitters
.
remove
(
carid
)
println
(
"SSE connection error for carId: $carid - ${ex.message}"
)
try
{
emitter
.
completeWithError
(
ex
)
}
catch
(
e
:
Exception
)
{
e
.
printStackTrace
()
}
}
emitters
[
carid
]
=
emitter
// println("New SSE connection established for user: $carid")
Thread
.
sleep
(
25
*
1000
)
CoroutineScope
(
Dispatchers
.
Default
).
launch
{
onVehicleMockPark
()
onVehicleMockCall
()
}
return
emitter
}
//开始泊车
private
suspend
fun
onVehicleMockPark
():
Int
{
return
withContext
(
Dispatchers
.
IO
)
{
// Blocking network request code
var
classpathResource
=
resourceLoader
.
getResource
(
"classpath:avpm/Car_fangzhen_park.txt"
)
val
parkStr
=
FileIoUtil
.
getFileDate
(
classpathResource
.
inputStream
)
val
routeCarPark
=
JSON
.
parseObject
(
parkStr
,
RouteCar
::
class
.
java
)
routeCarPark
.
rs
?.
forEachIndexed
{
index
,
doubles
->
// var carVehicle = CarVehicle()
carVehicle
.
vehiclePos
=
doubles
sendCar
(
carVehicle
)
delay
(
300
)
}
//开始倒车入库 //读取倒车入库数据
classpathResource
=
resourceLoader
.
getResource
(
"classpath:avpm/parkpath.txt"
)
val
parking
=
FileIoUtil
.
getFileDate
(
classpathResource
.
inputStream
)
var
parkPath
=
JSON
.
parseObject
(
parking
,
ParkPath
::
class
.
java
)
//开始后退
val
forback
=
parkPath
!!
.
result
.
routes
.
find
{
it
.
gear
==
1
}
forback
?.
polyline
?.
forEachIndexed
{
index
,
doubles
->
// var carVehicle = CarVehicle()
carVehicle
.
vehiclePos
=
listOf
(
doubles
[
0
],
doubles
[
1
],
doubles
[
3
])
sendCar
(
carVehicle
)
delay
(
300
)
}
return
@withContext
1
}
}
//开始召车
private
suspend
fun
onVehicleMockCall
():
Int
{
return
withContext
(
Dispatchers
.
IO
)
{
//读取召车数据
var
classpathResource
=
resourceLoader
.
getResource
(
"classpath:avpm/Car_fangzhen_call.txt"
)
val
callStr
=
FileIoUtil
.
getFileDate
(
classpathResource
.
inputStream
)
var
routeCarCall
=
JSON
.
parseObject
(
callStr
,
RouteCar
::
class
.
java
)
routeCarCall
.
rs
?.
forEachIndexed
{
index
,
doubles
->
// var carVehicle = CarVehicle()
carVehicle
.
vehiclePos
=
doubles
sendCar
(
carVehicle
)
delay
(
300
)
}
return
@withContext
1
}
}
private
fun
sendCar
(
carVehicle
:
CarVehicle
)
{
emitters
.
entries
.
forEachIndexed
{
index
,
entry
->
try
{
entry
.
value
.
send
(
SseEmitter
.
event
()
.
name
(
"data"
)
.
data
(
carVehicle
)
)
}
catch
(
e
:
AsyncRequestNotUsableException
)
{
// 客户端断开连接,移除对应的 emitter
emitters
.
remove
(
entry
.
key
)
}
}
}
@PreDestroy
fun
cleanup
()
{
emitters
.
forEach
{
(
carId
,
emitter
)
->
try
{
emitter
.
complete
()
}
catch
(
e
:
Exception
)
{
e
.
printStackTrace
()
}
}
executor
.
shutdown
()
try
{
if
(!
executor
.
awaitTermination
(
5
,
TimeUnit
.
SECONDS
))
{
executor
.
shutdownNow
()
}
}
catch
(
e
:
InterruptedException
)
{
executor
.
shutdownNow
()
Thread
.
currentThread
().
interrupt
()
}
}
@GetMapping
(
"/sse"
,
produces
=
[
MediaType
.
TEXT_EVENT_STREAM_VALUE
])
fun
sse
():
SseEmitter
{
val
emitter
=
SseEmitter
(
0L
)
// 设置超时时间为0表示永不超时
// 在单独的线程中发送数据
CompletableFuture
.
runAsync
{
try
{
repeat
(
20
)
{
index
->
val
data
=
mapOf
(
"id"
to
index
,
"message"
to
"Server message #${index + 1}"
,
"timestamp"
to
System
.
currentTimeMillis
(),
"randomValue"
to
Random
.
nextInt
(
100
)
)
emitter
.
send
(
SseEmitter
.
event
()
.
name
(
"data"
)
.
data
(
data
)
)
Thread
.
sleep
(
1000
)
// 每秒发送一次
}
emitter
.
complete
()
}
catch
(
e
:
IOException
)
{
emitter
.
completeWithError
(
e
)
}
}
return
emitter
}
}
\ No newline at end of file
src/main/resources/avpm/Car_fangzhen_call.txt
View file @
d42c40cd
{
"rs": [
[116.5024625,39.8090317],[116.50246452571352,39.809032676237166],[116.50246655142706,39.80903365247434],[116.5024685771406,39.80903462871151],[116.50247060285415,39.80903560494868],[116.50247262856767,39.80903658118585],[116.50247465428123,39.809037557423025],[116.50247667999476,39.80903853366019],[116.5024787057083,39.80903950989737],[116.50248073142184,39.809040486134535],[116.50248275713537,39.80904146237171],[116.50248478284891,39.80904243860888],[116.50248554937339,39.80904280015562],[116.50248625256704,39.8090431183115],[116.50248696285315,39.809043426953984],[116.50248768001542,39.80904372598901],[116.50248840383534,39.80904401532554],[116.50248913409246,39.80904429487541],[116.50248987056432,39.80904456455347],[116.50249061302658,39.809044824277564],[116.50249136125309,39.80904507396862],[116.50249211501594,39.809045313550534],[116.5024928740855,39.809045542950344],[116.50249363823058,39.809045762098165],[116.50249440721838,39.80904597092725],[116.50249518081468,39.809046169374014],[116.50249595878384,39.80904635737795],[116.50249674088887,39.80904653488182],[116.50249752689155,39.80904670183156],[116.50249831655243,39.809046858176316],[116.50249910963099,39.80904700386845],[116.50249990588564,39.8090471388636],[116.50250070507383,39.80904726312063],[116.50250150695214,39.8090473766017],[116.50250231127629,39.80904747927224],[116.50250311780128,39.809047571100976],[116.50250392628145,39.80904765205992],[116.5025047364705,39.80904772212444],[116.50250554812165,39.80904778127317],[116.50250636098767,39.8090478294881],[116.50250717482095,39.809047866754554],[116.50250798937358,39.80904789306116],[116.50250880439745,39.80904790839994],[116.50250961964429,39.809047912766175],[116.50251043486577,39.80904790615856],[116.50251124981355,39.809047888579094],[116.50251206423943,39.80904786003317],[116.50251287789527,39.80904782052943],[116.50251369053326,39.80904777007994],[116.50251450190586,39.80904770870008],[116.5025153117659,39.80904763640851],[116.50251611986671,39.80904755322727],[116.50251692596213,39.8090474591817],[116.5025177298066,39.809047354300446],[116.50251853115527,39.80904723861545],[116.50251932976404,39.80904711216196],[116.50252012538965,39.80904697497849],[116.50252091778974,39.80904682710682],[116.50252170672294,39.80904666859201],[116.50252249194894,39.80904649948232],[116.50252327322852,39.80904631982929],[116.50252405032373,39.80904612968762],[116.50252482299786,39.809045929115264],[116.50252559101551,39.809045718173266],[116.50252635414277,39.80904549692593],[116.50252711214716,39.80904526544063],[116.50252786479781,39.80904502378788],[116.50252861186543,39.80904477204128],[116.50252935312245,39.80904451027753],[116.50253008834312,39.80904423857637],[116.50253081730344,39.80904395702054],[116.50253153978137,39.80904366569581],[116.50253225555686,39.80904336469095],[116.50253296441184,39.80904305409761],[116.50253366613042,39.80904273401042],[116.50253436049884,39.80904240452689],[116.50253504730557,39.80904206574736],[116.50253572634142,39.809041717775045],[116.50253639739954,39.80904136071593],[116.50253706027554,39.80904099467878],[116.50253771476747,39.8090406197751],[116.50253836067598,39.809040236119095],[116.50253899780434,39.80903984382761],[116.50253962595843,39.80903944302016],[116.50254024494696,39.809039033818834],[116.50254085458133,39.809038616348246],[116.50254145467586,39.80903819073561],[116.50254204504778,39.80903775711055],[116.50254262551721,39.80903731560515],[116.50254319590738,39.80903686635389],[116.5025437560445,39.80903640949364],[116.502544305758,39.809035945163544],[116.50254484488038,39.80903547350505],[116.50254537324744,39.809034994661815],[116.50254589069823,39.80903450877972],[116.50254639707514,39.80903401600677],[116.5025468922239,39.80903351649306],[116.50254873251244,39.80903121870854],[116.50255048525985,39.80902903906369],[116.50255215519805,39.809026971172585],[116.50255374705901,39.80902500864927],[116.50255526557463,39.809023145107844],[116.50255671547697,39.80902137416238],[116.50255810149788,39.80901968942692],[116.50255942836942,39.80901808451557],[116.5025607008234,39.80901655304239],[116.50256192359191,39.80901508862146],[116.50256310140682,39.80901368486684],[116.50256423900012,39.8090123353926],[116.50256534110378,39.80901103381284],[116.50256641244967,39.80900977374158],[116.50256745776986,39.809008548792946],[116.50256848179617,39.80900735258098],[116.50256948926067,39.80900617871975],[116.50257048489526,39.80900502082334],[116.50257147343187,39.809003872505826],[116.50257245960252,39.80900272738129],[116.50257344813913,39.809001579063775],[116.50257444377361,39.80900042116737],[116.50257545123799,39.80899924730615],[116.50257647526416,39.80899805109418],[116.50257752058411,39.80899682614553],[116.50257859192976,39.80899556607427],[116.5025796940331,39.808994264494494],[116.50258083162609,39.808992915020255],[116.50258200944063,39.80899151126563],[116.50258323220868,39.808990046844684],[116.50258450466227,39.808988515371496],[116.50258583153325,39.80898691046014],[116.50258721755367,39.80898522572469],[116.5025886674554,39.80898345477921],[116.50259018597043,39.808981591237774],[116.5025917778307,39.808979628714454],[116.50259344776819,39.80897756082334],[116.50259520051483,39.80897538117847],[116.50259704080258,39.80897308339394],
[
116.5024625,
39.8090317,
57.89772074270263
],
[
116.50246452571352,
39.809032676237166,
57.897719956256765
],
[
116.50246655142706,
39.80903365247434,
57.897719686165544
],
[
116.5024685771406,
39.80903462871151,
57.89771939176859
],
[
116.50247060285415,
39.80903560494868,
57.89771910952453
],
[
116.50247262856767,
39.80903658118585,
57.897718659213126
],
[
116.50247465428123,
39.809037557423025,
57.89771822105456
],
[
116.50247667999476,
39.80903853366019,
57.89771775859032
],
[
116.5024787057083,
39.80903950989737,
57.89771781248072
],
[
116.50248073142184,
39.809040486134535,
57.89771678608662
],
[
116.50248275713537,
39.80904146237171,
57.8977169118578
],
[
116.50248478284891,
39.80904243860888,
58.44974284103182
],
[
116.50248554937339,
39.80904280015562,
59.502761771326846
],
[
116.50248625256704,
39.8090431183115,
60.50475216358757
],
[
116.50248696285315,
39.809043426953984,
61.5068687940817
],
[
116.50248768001542,
39.80904372598901,
62.509094974647496
],
[
116.50248840383534,
39.80904401532554,
63.51143657065637
],
[
116.50248913409246,
39.80904429487541,
64.51389236927122
],
[
116.50248987056432,
39.80904456455347,
65.51645228580037
],
[
116.50249061302658,
39.809044824277564,
66.5191173955626
],
[
116.50249136125309,
39.80904507396862,
67.52188575846236
],
[
116.50249211501594,
39.809045313550534,
68.52475091130799
],
[
116.5024928740855,
39.809045542950344,
69.5277118958108
],
[
116.50249363823058,
39.809045762098165,
70.53076288247428
],
[
116.50249440721838,
39.80904597092725,
71.53390044039907
],
[
116.50249518081468,
39.809046169374014,
72.53712328596856
],
[
116.50249595878384,
39.80904635737795,
73.54042636188478
],
[
116.50249674088887,
39.80904653488182,
74.54380383820035
],
[
116.50249752689155,
39.80904670183156,
75.54725131215832
],
[
116.50249831655243,
39.809046858176316,
76.55076723905302
],
[
116.50249910963099,
39.80904700386845,
77.55434682306407
],
[
116.50249990588564,
39.8090471388636,
78.55798326200352
],
[
116.50250070507383,
39.80904726312063,
79.56167512302761
],
[
116.50250150695214,
39.8090473766017,
80.56541540346564
],
[
116.50250231127629,
39.80904747927224,
81.5692009526856
],
[
116.50250311780128,
39.809047571100976,
82.57302966300085
],
[
116.50250392628145,
39.80904765205992,
83.57688883632426
],
[
116.5025047364705,
39.80904772212444,
84.58078333803951
],
[
116.50250554812165,
39.80904778127317,
85.58470171108019
],
[
116.50250636098767,
39.8090478294881,
86.5886426176495
],
[
116.50250717482095,
39.809047866754554,
87.59259945568022
],
[
116.50250798937358,
39.80904789306116,
88.59656618572944
],
[
116.50250880439745,
39.80904790839994,
89.60054359742503
],
[
116.50250961964429,
39.809047912766175,
90.60452053465326
],
[
116.50251043486577,
39.80904790615856,
91.6084959819338
],
[
116.50251124981355,
39.809047888579094,
92.6124601839199
],
[
116.50251206423943,
39.80904786003317,
93.61641659717225
],
[
116.50251287789527,
39.80904782052943,
94.62035153464649
],
[
116.50251369053326,
39.80904777007994,
95.62426509601858
],
[
116.50251450190586,
39.80904770870008,
96.62815239321827
],
[
116.5025153117659,
39.80904763640851,
97.63200770100173
],
[
116.50251611986671,
39.80904755322727,
98.6358258648101
],
[
116.50251692596213,
39.8090474591817,
99.63960322249545
],
[
116.5025177298066,
39.809047354300446,
100.64333509460062
],
[
116.50251853115527,
39.80904723861545,
101.64701445440551
],
[
116.50251932976404,
39.80904711216196,
102.65064041713231
],
[
116.50252012538965,
39.80904697497849,
103.65420844275036
],
[
116.50252091778974,
39.80904682710682,
104.65770776584128
],
[
116.50252170672294,
39.80904666859201,
105.66114484207321
],
[
116.50252249194894,
39.80904649948232,
106.66450627971722
],
[
116.50252327322852,
39.80904631982929,
107.66779246355429
],
[
116.50252405032373,
39.80904612968762,
108.67099744857768
],
[
116.50252482299786,
39.809045929115264,
109.67411949627547
],
[
116.50252559101551,
39.809045718173266,
110.67715151686093
],
[
116.50252635414277,
39.80904549692593,
111.68009243558055
],
[
116.50252711214716,
39.80904526544063,
112.68293908702822
],
[
116.50252786479781,
39.80904502378788,
113.68568606396775
],
[
116.50252861186543,
39.80904477204128,
114.68833162716396
],
[
116.50252935312245,
39.80904451027753,
115.69086865982342
],
[
116.50253008834312,
39.80904423857637,
116.6933011728712
],
[
116.50253081730344,
39.80904395702054,
117.6956213934742
],
[
116.50253153978137,
39.80904366569581,
118.6978245621782
],
[
116.50253225555686,
39.80904336469095,
119.6999130953671
],
[
116.50253296441184,
39.80904305409761,
120.70188200132634
],
[
116.50253366613042,
39.80904273401042,
121.70372758907456
],
[
116.50253436049884,
39.80904240452689,
122.70545268141359
],
[
116.50253504730557,
39.80904206574736,
123.70704822483123
],
[
116.50253572634142,
39.809041717775045,
124.70851606780468
],
[
116.50253639739954,
39.80904136071593,
125.70985501794951
],
[
116.50253706027554,
39.80904099467878,
126.71106292311003
],
[
116.50253771476747,
39.8090406197751,
127.71213523847985
],
[
116.50253836067598,
39.809040236119095,
128.7130751456366
],
[
116.50253899780434,
39.80903984382761,
129.71388030198352
],
[
116.50253962595843,
39.80903944302016,
130.71454839130786
],
[
116.50254024494696,
39.809039033818834,
131.71508135388706
],
[
116.50254085458133,
39.809038616348246,
132.71547287219425
],
[
116.50254145467586,
39.80903819073561,
133.7157280985033
],
[
116.50254204504778,
39.80903775711055,
134.71584641664055
],
[
116.50254262551721,
39.80903731560515,
135.71582374591503
],
[
116.50254319590738,
39.80903686635389,
136.71566312780828
],
[
116.5025437560445,
39.80903640949364,
137.71536452188957
],
[
116.502544305758,
39.809035945163544,
138.71492977801108
],
[
116.50254484488038,
39.80903547350505,
139.71435543536455
],
[
116.50254537324744,
39.809034994661815,
140.71364620927886
],
[
116.50254589069823,
39.80903450877972,
141.7127980036954
],
[
116.50254639707514,
39.80903401600677,
142.71181994660924
],
[
116.5025468922239,
39.80903351649306,
148.39871205273698
],
[
116.50254873251244,
39.80903121870854,
148.2951659772068
],
[
116.50255048525985,
39.80902903906369,
148.1865773260663
],
[
116.50255215519805,
39.809026971172585,
148.07313979049786
],
[
116.50255374705901,
39.80902500864927,
147.95518960556217
],
[
116.50255526557463,
39.809023145107844,
147.83323127170524
],
[
116.50255671547697,
39.80902137416238,
147.70797535315216
],
[
116.50255810149788,
39.80901968942692,
147.5803531028438
],
[
116.50255942836942,
39.80901808451557,
147.4515603761775
],
[
116.5025607008234,
39.80901655304239,
147.32305151685387
],
[
116.50256192359191,
39.80901508862146,
147.1965663907382
],
[
116.50256310140682,
39.80901368486684,
147.07409914916332
],
[
116.50256423900012,
39.8090123353926,
146.95787001058227
],
[
116.50256534110378,
39.80901103381284,
146.85026673417406
],
[
116.50256641244967,
39.80900977374158,
146.75374420549423
],
[
116.50256745776986,
39.809008548792946,
146.6707288769577
],
[
116.50256848179617,
39.80900735258098,
146.60346598971353
],
[
116.50256948926067,
39.80900617871975,
146.55389749449722
],
[
116.50257048489526,
39.80900502082334,
146.52352471742336
],
[
116.50257147343187,
39.809003872505826,
146.51329014672797
],
[
116.50257245960252,
39.80900272738129,
146.5235233054894
],
[
116.50257344813913,
39.809001579063775,
146.55389902607635
],
[
116.50257444377361,
39.80900042116737,
146.6034657809072
],
[
116.50257545123799,
39.80899924730615,
146.67072930944823
],
[
116.50257647526416,
39.80899805109418,
146.7537458220197
],
[
116.50257752058411,
39.80899682614553,
146.85026754296166
],
[
116.50257859192976,
39.80899556607427,
146.95787113381726
],
[
116.5025796940331,
39.808994264494494,
147.0740989040754
],
[
116.50258083162609,
39.808992915020255,
147.1965665482369
],
[
116.50258200944063,
39.80899151126563,
147.32305243991044
],
[
116.50258323220868,
39.808990046844684,
147.45155773448062
],
[
116.50258450466227,
39.808988515371496,
147.58035254077038
],
[
116.50258583153325,
39.80898691046014,
147.70797126024343
],
[
116.50258721755367,
39.80898522572469,
147.83322808999833
],
[
116.5025886674554,
39.80898345477921,
147.95518387285006
],
[
116.50259018597043,
39.808981591237774,
148.07313412179894
],
[
116.5025917778307,
39.808979628714454,
148.18656998679967
],
[
116.50259344776819,
39.80897756082334,
148.29515766021223
],
[
116.50259520051483,
39.80897538117847,
148.39870117675616
],
[
116.50259704080258,
39.80897308339394,
148.0822429316027
],
[
116.50260652829927,
39.80896138259575
39.80896138259575,
148.34691180741845
],
[
116.50261595656403,
39.80894963426086
39.80894963426086,
148.34691176414628
],
[
116.50262538482876,
39.80893788592398
39.80893788592398,
148.3469117970941
],
[
116.50263481309352,
39.80892613758509
39.80892613758509,
148.34691180232608
],
[
116.50264424135828,
39.80891438924419
39.80891438924419,
148.34691178677116
],
[
116.50265366962303,
39.80890264090128
39.80890264090128,
148.34691174371778
],
[
116.50266309788779,
39.80889089255635
39.80889089255635,
148.34691192152485
],
[
116.50267252615251,
39.808879144209435
39.808879144209435,
148.34691173339672
],
[
116.50268195441728,
39.808867395860496
39.808867395860496,
148.34691178691634
],
[
116.50269138268203,
39.80885564750955
39.80885564750955,
148.34691186815246
],
[
116.50270081094675,
39.8088438991566
39.8088438991566,
148.34691172138224
],
[
116.50271023921152,
39.80883215080165
39.80883215080165,
148.3469117887609
],
[
116.50271966747628,
39.80882040244469
39.80882040244469,
148.34691189078512
],
[
116.50272909574102,
39.8088086540857
39.8088086540857,
148.34691168858353
],
[
116.50273852400579,
39.80879690572473
39.80879690572473,
148.3469117353934
],
[
116.50274795227055,
39.80878515736174
39.80878515736174,
148.34691194784875
],
[
116.50275738053527,
39.808773408996736
39.808773408996736,
148.3469117042912
],
[
116.50276680880005,
39.80876166062974
39.80876166062974,
148.34691179245897
],
[
116.5027762370648,
39.80874991226073
39.80874991226073,
148.34691183905284
],
[
116.50278566532953,
39.80873816388972
39.80873816388972,
148.3469120721166
],
[
116.50279420230066,
39.80872752614001
39.80872752614001,
148.71471770134355
],
[
116.50280353151834,
39.80871573236971
39.80871573236971,
157.18903663520837
],
[
116.50281048428627,
39.80870303338525
39.80870303338525,
168.5033259456393
],
[
116.50281405862891,
39.80868953352494
39.80868953352494,
180.05832887739103
],
[
116.50281404037212,
39.80867575730624
39.80867575730624,
191.4882122686691
],
[
116.50281046861977,
39.80866225701582
39.80866225701582,
203.0938796717428
],
[
116.50280343493115,
39.808649585669684
39.808649585669684,
214.61913241264605
],
[
116.50279324712442,
39.80863824913313
39.80863824913313,
226.3172975280012
],
[
116.50278027954208,
39.80862873543999
39.80862873543999,
237.95009588630427
],
[
116.50276508406697,
39.80862142721356
39.80862142721356,
250.13228170788284
],
[
116.50274825941413,
39.80861675684903
39.80861675684903,
267.30410320030313
],
[
116.5027303799696,
39.808616110118535
39.808616110118535,
282.5323611694821
],
[
116.50271293867053,
39.808619088363244
39.808619088363244,
298.4883300601502
],
[
116.50269720864796,
39.80862564603595
39.80862564603595,
314.565811392562
],
[
116.50268447677053,
39.80863527937748
39.80863527937748,
321.97999776484846
],
[
116.50267341280619,
39.80864615002302
39.80864615002302,
321.0699496825438
],
[
116.50266212329731,
39.80865688638265
39.80865688638265,
321.0699496540614
],
[
116.5026508337884,
39.80866762274061
39.80866762274061,
321.06994960573337
],
[
116.50263954427948,
39.80867835909688
39.80867835909688,
321.0699505756264
],
[
116.50262525253801,
39.80869195058276
39.80869195058276,
270.22379295770395
],
[
116.50262524257603,
39.808691950612655
39.808691950612655,
328.31625452141816
],
[
116.50261580612782,
39.80870369511379
39.80870369511379,
328.31625459620784
],
[
116.50260636967965,
39.80871543961292
39.80871543961292,
328.31625440173156
],
[
116.50259693323143,
39.80872718411004
39.80872718411004,
328.3162545386372
],
[
116.50258749678324,
39.80873892860516
39.80873892860516,
328.3162545374425
],
[
116.50257806033504,
39.808750673098274
39.808750673098274,
328.316254522378
],
[
116.50256862388684,
39.80876241758937
39.80876241758937,
328.316254528119
],
[
116.50255918743866,
39.808774162078464
39.808774162078464,
328.3074499140308
],
[
116.50254974864124,
39.808785905451415
39.808785905451415,
328.3030169551416
],
[
116.50254030866101,
39.8087976482614
39.8087976482614,
328.3030168628463
],
[
116.50253086868078,
39.80880939106937
39.80880939106937,
328.30301698494657
],
[
116.50252142870058,
39.80882113387535
39.80882113387535,
328.3030169200664
],
[
116.50251198872037,
39.8088328766793
39.8088328766793,
328.3030169592515
],
[
116.50250254874015,
39.80884461948126
39.80884461948126,
328.3030168669575
],
[
116.50249310875992,
39.808856362281205
39.808856362281205,
328.3030169821214
],
[
116.50248366877972,
39.80886810507916
39.80886810507916,
328.3030169241802
],
[
116.5024742287995,
39.8088798478751
39.8088798478751,
328.30301695642896
],
[
116.5024647888193,
39.808891590669035
39.808891590669035,
328.30301694011445
],
[
116.50245534883908,
39.80890333346096
39.80890333346096,
328.30301686863504
],
[
116.50244590885885,
39.80891507625088
39.80891507625088,
328.3710967588626
],
[
116.50243648704945,
39.80892682764632
39.80892682764632,
328.37689928863324
],
[
116.50242706678878,
39.80893857977338
39.80893857977338,
328.3768992723799
],
[
116.50241764652812,
39.80895033189842
39.80895033189842,
328.3768992838197
],
[
116.50240822626745,
39.808962084021466
39.808962084021466,
328.3768992883366
],
[
116.50239880600678,
39.808973836142506
39.808973836142506,
328.37689921683517
],
[
116.50238938574607,
39.80898558826153
39.80898558826153,
328.3768992973713
],
[
116.5023799654854,
39.808997340378546
39.808997340378546,
328.376899294966
],
[
116.50237054522474,
39.809009092493554
39.809009092493554,
328.37689925794507
],
[
116.50236112496407,
39.80902084460654
39.80902084460654,
328.3768992057021
],
[
116.5023518081128,
39.80903246771061
39.80903246771061,
328.47504906960626
],
[
116.50234241407298,
39.80904423219872
39.80904423219872,
328.4750490903377
],
[
116.50233302003318,
39.80905599668481
39.80905599668481,
328.47504898641193
],
[
116.50232362599334,
39.8090677611689
39.8090677611689,
327.9913425375143
],
[
116.50231410317872,
39.80907946408927
39.80907946408927,
327.73511034123175
],
[
116.50230451214804,
39.80909113439654
39.80909113439654,
327.7351102911228
],
[
116.50229492111734,
39.80910280470181
39.80910280470181,
329.1684556293159
],
[
116.50228571333837,
39.809114655344956
39.809114655344956,
329.2855423926007
],
[
116.50227653686962,
39.80912652071914
39.80912652071914,
329.28554230185773
],
[
116.50226736040084,
39.80913838609128
39.80913838609128,
329.2855424541196
],
[
116.5022581839321,
39.80915025146137
39.80915025146137,
329.28554202578744
],
[
116.50224999247808,
39.809160843184586
39.809160843184586,
327.82554899450287
],
[
116.50224042543937,
39.80917252509297
39.80917252509297,
327.8255489954299
],
[
116.50223085840065,
39.80918420699937
39.80918420699937,
327.8255489893262
],
[
116.50222129136195,
39.80919588890379
39.80919588890379,
327.825548997285
],
[
116.50221172432323,
39.809207570806215
39.809207570806215,
327.82554899118196
],
[
116.50220215728451,
39.809219252706654
39.809219252706654,
327.8255489921104
],
[
116.50219259024581,
39.80923093460512
39.80923093460512,
327.82554899303904
],
[
116.5021830232071,
39.809242616501585
39.809242616501585,
327.82554892528526
],
[
116.50217345616836,
39.80925429839608
39.80925429839608,
327.82554898786634
],
[
116.50216388912965,
39.80926598028858
39.80926598028858,
327.825548988796
],
[
116.50215432209092,
39.80927766217909
39.80927766217909,
327.82554898269495
],
[
116.50214475505221,
39.80928934406762
39.80928934406762,
327.82554901878075
],
[
116.5021351880135,
39.80930102595418
39.80930102595418,
327.8255489775249
],
[
116.50212562097478,
39.809312707838735
39.809312707838735,
328.2550595723976
],
[
116.5021161682309,
39.80932444445018
39.80932444445018,
328.30029444063865
],
[
116.50210672752434,
39.80933618682361
39.80933618682361,
328.3002945829701
],
[
116.50209728681781,
39.80934792919502
39.80934792919502,
328.3002945112482
],
[
116.50208784611127,
39.80935967156444
39.80935967156444,
328.30029457760355
],
[
116.50207840540475,
39.809371413931835
39.809371413931835,
328.300294581859
],
[
116.50206896469822,
39.80938315629724
39.80938315629724,
328.3002945378911
],
[
116.50205952399168,
39.809394898660635
39.809394898660635,
328.3002945005177
],
[
116.50205008328514,
39.809406641022015
39.809406641022015,
328.30029455299785
],
[
116.5020406425786,
39.80941838338139
39.80941838338139,
328.30029451596914
],
[
116.50203120187207,
39.809430125738764
39.809430125738764,
328.300294596203
],
[
116.50202176116555,
39.80944186809414
39.80944186809414,
328.30029457964565
],
[
116.50201232045903,
39.809453610447505
39.809453610447505,
328.3002945079267
],
[
116.50200287975248,
39.80946535279886
39.80946535279886,
328.30029452606135
],
[
116.50199343904592,
39.80947709514822
39.80947709514822,
328.3002945646669
],
[
116.50198399833941,
39.809488837495564
39.809488837495564,
328.3002945276403
],
[
116.50197455763286,
39.80950057984091
39.80950057984091,
328.3002945939996
],
[
116.50196511692633,
39.80951232218425
39.80951232218425,
328.34509731601014
],
[
116.50195568818478,
39.80952407018145
39.80952407018145,
328.48703269843014
],
[
116.50194629734833,
39.80953583609448
39.80953583609448,
328.4870326578848
],
[
116.50193690651183,
39.80954760200551
39.80954760200551,
328.48703275569403
],
[
116.50192751567536,
39.80955936791453
39.80955936791453,
328.4870326254283
],
[
116.50191812483887,
39.80957113382152
39.80957113382152,
328.4870327163365
],
[
116.5019087340024,
39.8095828997265
39.8095828997265,
328.4870327518712
],
[
116.50189934316592,
39.80959466562948
39.80959466562948,
328.48703264231136
],
[
116.50188995232944,
39.80960643153043
39.80960643153043,
328.4870327885944
],
[
116.50188056149298,
39.80961819742937
39.80961819742937,
328.48703260279564
],
[
116.50187117065649,
39.80962996332631
39.80962996332631,
328.4870327076695
],
[
116.50186177982,
39.80964172922121
39.80964172922121,
328.48703267402885
],
[
116.50185238898351,
39.80965349511412
39.80965349511412,
328.48703279960836
],
[
116.50184299814707,
39.80966526100501
39.80966526100501,
328.48703264847984
],
[
116.50183360731057,
39.80967702689388
39.80967702689388,
328.48703271178454
],
[
116.50182421647412,
39.80968879278074
39.80968879278074,
328.487032643637
],
[
116.50181482563762,
39.809700558665575
39.809700558665575,
328.4870327414505
],
[
116.50180543480116,
39.809712324548414
39.809712324548414,
328.4870326456971
],
[
116.50179604396466,
39.809724090429235
39.809724090429235,
328.4870327988851
],
[
116.5017866531282,
39.80973585630804
39.80973585630804,
328.4870326546602
],
[
116.50177726229172,
39.80974762218483
39.80974762218483,
328.48703322323286
],
[
116.50176603303983,
39.809761691428776
39.809761691428776,
325.7886246061092
],
[
116.5017559315272,
39.80977310463863
39.80977310463863,
326.62510488005717
],
[
116.50174606013915,
39.80978461575066
39.80978461575066,
357.83279870591974
],
[
116.501745399369,
39.80979802876061
39.80979802876061,
40.85547999612214
],
[
116.50176111803627,
39.80981199004545
39.80981199004545,
54.32901013147767
],
[
116.5017794095362,
39.80982207596424
39.80982207596424,
57.66062446396728
],
[
116.50179458916823,
39.8098294587058
39.8098294587058,
57.650643209749546
],
[
116.50180976712517,
39.8098368434775
39.8098368434775,
57.62346997959253
],
[
116.50182494052174,
39.80984423377744
39.80984423377744,
56.2000281713282
],
[
116.50183986641409,
39.80985190936817
39.80985190936817,
55.01535322604087
],
[
116.50186093375147,
39.80986323461995
39.80986323461995,
57.15929100796751
],
[
116.50187602871003,
39.80987071910237
39.80987071910237,
57.15929100535226
],
[
116.50189112366859,
39.80987820358399
39.80987820358399,
57.159291047482554
],
[
116.50190621862716,
39.80988568806478
39.80988568806478,
57.42175429428016
],
[
116.50192135787326,
39.80989311925764
39.80989311925764,
57.72931954370233
],
[
116.50193654901727,
39.80990048800575
39.80990048800575,
57.734934798039774
],
[
116.5019517411002,
39.80990785560883
39.80990785560883,
57.823701055873244
],
[
116.5019669480251,
39.80991520512269
39.80991520512269,
57.82369885210039
],
[
116.5019889433169,
39.80992583545604
39.80992583545604,
57.59863854989345
],
[
116.50200411254258,
39.80993323079723
39.80993323079723,
57.59863859296598
],
[
116.50201928176824,
39.80994062613762
39.80994062613762,
57.622497891012756
],
[
116.5020344549998,
39.80994801662329
39.80994801662329,
57.65480114866671
],
[
116.50204936866068,
39.809955271625505
39.809955271625505,
57.65480114866671
]
]
}
\ No newline at end of file
src/main/resources/avpm/Car_fangzhen_park.txt
View file @
d42c40cd
{"rs":[[116.50238005214746,39.81014469509955],[116.50236486876796,39.81013731694055],[116.50234968537274,39.81012993879976],[116.50233450197756,39.8101225606582],[116.50231931858238,39.81011518251584],[116.5023041333868,39.81010780655952],[116.50229565547512,39.81010368888862],[116.50228036234131,39.810096445719445],[116.50226506920752,39.8100892025495],[116.50224985746125,39.81008185923798],[116.50223467091115,39.81007448492373],[116.5022194843611,39.81006711060869],[116.502204297811,39.81005973629286],[116.50218911126096,39.81005236197624],[116.50217392471086,39.81004498765881],[116.50215873816082,39.810037613340604],[116.50214354204267,39.81003025071994],[116.50212940967664,39.81002347155654],[116.50211414052076,39.810016198589445],[116.50209895321649,39.81000882529198],[116.50208377514453,39.8100014406772],[116.5020685970726,39.809994056061605],[116.50205341900066,39.80998667144523],[116.50203824092873,39.809979286828046],[116.50202306285678,39.80997190221008],[116.50200788607032,39.80996451603342],[116.50199271461229,39.809957123398306],[116.50197175150723,39.80994690865124],[116.5019565677659,39.809939530910334],[116.50194138402462,39.809932153168646],[116.5019261959587,39.80992478068344],[116.50191100349002,39.809917413549634],[116.50189579233196,39.809910069682026],[116.50188040671078,39.80990294300845],[116.50186502108963,39.80989581633414],[116.50184281562053,39.80988553068078],[116.50182802471463,39.809877696172016],[116.50181322516318,39.80986987170683],[116.50179804843465,39.80986248544798],[116.50178280602617,39.80985518091484],[116.50176075352947,39.80984499368132],[116.50174177475655,39.809835769889],[116.5017274954714,39.80982739397197],[116.50171740536683,39.80981635635335],[116.50171295482671,39.809803030251885],[116.50171301661533,39.80978929564729],[116.50171746496443,39.80977596765635],[116.5017259444861,39.8097638114287],[116.5017379185738,39.80974819470519],[116.50174729851142,39.80973642369948],[116.50175667844906,39.80972465269176],[116.50176605838669,39.80971288168202],[116.50177543832429,39.809701110670275],[116.50178481826192,39.8096893396565],[116.50179419819955,39.80967756864072],[116.50180357813717,39.809665797622905],[116.5018129580748,39.8096540266031],[116.50182233801245,39.80964225558127],[116.50183171795007,39.80963048455742],[116.50184109788769,39.809618713531556],[116.5018504778253,39.80960694250368],[116.50185985776292,39.80959517147379],[116.50186923770057,39.80958340044187],[116.5018786176382,39.80957162940795],[116.50188799757582,39.80955985837201],[116.50189737751344,39.80954808733406],[116.50190675745107,39.80953631629408],[116.50191613738868,39.8095245452521],[116.5019255173263,39.80951277420809],[116.50193493157849,39.80950101936984],[116.50194437236506,39.80948927706254],[116.50195381315163,39.80947753475324],[116.5019632539382,39.80946579244194],[116.50197269472476,39.809454050128615],[116.50198213551133,39.809442307813306],[116.5019915762979,39.80943056549599],[116.50200101708447,39.80941882317666],[116.50201045787104,39.809407080855316],[116.50201989865761,39.809395338531964],[116.50202933944418,39.80938359620662],[116.50203878023075,39.80937185387928],[116.50204822101732,39.809360111549914],[116.50205766180389,39.809348369218554],[116.50206710259046,39.809336626885184],[116.50207654337703,39.80932488454981],[116.50208598416357,39.809313142212424],[116.50209542495014,39.80930139987304],[116.50210499804051,39.809289720982065],[116.50211458612095,39.80927804927806],[116.50212417420141,39.80926637757208],[116.50213376228183,39.80925470586412],[116.50214335036227,39.809243034154164],[116.50215293844273,39.80923136244224],[116.50216252652316,39.809219690728334],[116.5021721146036,39.809208019012445],[116.50218170268406,39.809196347294574],[116.5021912907645,39.80918467557471],[116.50220087884492,39.80917300385288],[116.50221046692533,39.80916133212906],[116.50222194778321,39.80914735629438],[116.50223079042868,39.80913537219419],[116.50224437375732,39.80912656561062],[116.5022616599528,39.80912330256496],[116.50227897733187,39.809126399012214],[116.50229461795695,39.80913317723447],[116.50231015045868,39.80914011342922],[116.5023256829604,39.80914704962326],[116.50234121546217,39.80915398581661],[116.50235709967029,39.80916040951712],[116.50237406319151,39.80916484398448],[116.50239187097037,39.80916636876694],[116.50240970211905,39.80916504764615],[116.50242686120255,39.80916110814383],[116.50244272398614,39.809154696622954],[116.50245637374258,39.80914577271494],[116.50246747881728,39.809134975672535],[116.50247697374292,39.80912326014347],[116.50248632266518,39.80911147447951],[116.5024956715874,39.80909968881352],[116.50250735122155,39.80908496494592],[116.50251677946527,39.80907321662218],[116.50252620770894,39.80906146829645],[116.50253563595264,39.8090497199687],[116.50254394816011,39.809039362307594]]}
\ No newline at end of file
{
"rs": [
[
116.50238005214746,
39.81014469509955,
237.6829820703691
],
[
116.50236486876796,
39.81013731694055,
237.68307561987575
],
[
116.50234968537274,
39.81012993879976,
237.6830756097038
],
[
116.50233450197756,
39.8101225606582,
237.68307554373752
],
[
116.50231931858238,
39.81011518251584,
237.6938174827698
],
[
116.5023041333868,
39.81010780655952,
237.69591515912174
],
[
116.50229565547512,
39.81010368888862,
238.3437364798304
],
[
116.50228036234131,
39.810096445719445,
238.3437364455466
],
[
116.50226506920752,
39.8100892025495,
237.85362814526735
],
[
116.50224985746125,
39.81008185923798,
237.70190041312034
],
[
116.50223467091115,
39.81007448492373,
237.70190034557228
],
[
116.5022194843611,
39.81006711060869,
237.70190039564733
],
[
116.502204297811,
39.81005973629286,
237.70190033926013
],
[
116.50218911126096,
39.81005236197624,
237.70190040049607
],
[
116.50217392471086,
39.81004498765881,
237.7019002784291
],
[
116.50215873816082,
39.810037613340604,
237.75925608043258
],
[
116.50214354204267,
39.81003025071994,
238.01696949712567
],
[
116.50212940967664,
39.81002347155654,
238.19833426358676
],
[
116.50211414052076,
39.810016198589445,
237.70677835452744
],
[
116.50209895321649,
39.81000882529198,
237.65133473173375
],
[
116.50208377514453,
39.8100014406772,
237.65133465944604
],
[
116.5020685970726,
39.809994056061605,
237.65133467519559
],
[
116.50205341900066,
39.80998667144523,
237.6513346240156
],
[
116.50203824092873,
39.809979286828046,
237.65133466207467
],
[
116.50202306285678,
39.80997190221008,
237.6436772388487
],
[
116.50200788607032,
39.80996451603342,
237.61193653625492
],
[
116.50199271461229,
39.809957123398306,
237.61193837906546
],
[
116.50197175150723,
39.80994690865124,
237.6851403015522
],
[
116.5019565677659,
39.809939530910334,
237.68514031338162
],
[
116.50194138402462,
39.809932153168646,
237.71095815409723
],
[
116.5019261959587,
39.80992478068344,
237.73724224420545
],
[
116.50191100349002,
39.809917413549634,
237.85073976040232
],
[
116.50189579233196,
39.809910069682026,
238.91028611911815
],
[
116.50188040671078,
39.80990294300845,
238.91028614503145
],
[
116.50186502108963,
39.80989581633414,
238.9102882886388
],
[
116.50184281562053,
39.80988553068078,
235.4122851196367
],
[
116.50182802471463,
39.809877696172016,
235.4622667362538
],
[
116.50181322516318,
39.80986987170683,
237.64332857152914
],
[
116.50179804843465,
39.80986248544798,
238.0420609398446
],
[
116.50178280602617,
39.80985518091484,
238.97871780698017
],
[
116.50176075352947,
39.80984499368132,
237.6794114813822
],
[
116.50174177475655,
39.809835769889,
232.6346154985382
],
[
116.5017274954714,
39.80982739397197,
215.07770889258606
],
[
116.50171740536683,
39.80981635635335,
194.38881781174774
],
[
116.50171295482671,
39.809803030251885,
179.80199650469456
],
[
116.50171301661533,
39.80978929564729,
165.61992089690648
],
[
116.50171746496443,
39.80977596765635,
151.81596405333198
],
[
116.5017259444861,
39.8097638114287,
149.50207750396544
],
[
116.5017379185738,
39.80974819470519,
148.52778764862148
],
[
116.50174729851142,
39.80973642369948,
148.52778758147338
],
[
116.50175667844906,
39.80972465269176,
148.52778759732007
],
[
116.50176605838669,
39.80971288168202,
148.52778770332623
],
[
116.50177543832429,
39.809701110670275,
148.52778767064717
],
[
116.50178481826192,
39.8096893396565,
148.5277876382395
],
[
116.50179419819955,
39.80967756864072,
148.5277876954492
],
[
116.50180357813717,
39.809665797622905,
148.52778762857406
],
[
116.5018129580748,
39.8096540266031,
148.5277875821091
],
[
116.50182233801245,
39.80964225558127,
148.5277876671654
],
[
116.50183171795007,
39.80963048455742,
148.5277876347593
],
[
116.50184109788769,
39.809618713531556,
148.52778765750259
],
[
116.5018504778253,
39.80960694250368,
148.52778763199086
],
[
116.50185985776292,
39.80959517147379,
148.5277875993147
],
[
116.50186923770057,
39.80958340044187,
148.52778766369175
],
[
116.5018786176382,
39.80957162940795,
148.52778763818105
],
[
116.50188799757582,
39.80955985837201,
148.52778764713867
],
[
116.50189737751344,
39.80954808733406,
148.5277876767775
],
[
116.50190675745107,
39.80953631629408,
148.5277876236933
],
[
116.50191613738868,
39.8095245452521,
148.52778768090718
],
[
116.5019255173263,
39.80951277420809,
148.3993248448242
],
[
116.50193493157849,
39.80950101936984,
148.299988529318
],
[
116.50194437236506,
39.80948927706254,
148.29998850427387
],
[
116.50195381315163,
39.80947753475324,
148.2999884310068
],
[
116.5019632539382,
39.80946579244194,
148.29998861342312
],
[
116.50197269472476,
39.809454050128615,
148.2999884846501
],
[
116.50198213551133,
39.809442307813306,
148.29998850123724
],
[
116.5019915762979,
39.80943056549599,
148.29998851782466
],
[
116.50200101708447,
39.80941882317666,
148.29998852747417
],
[
116.50201045787104,
39.809407080855316,
148.2999885371239
],
[
116.50201989865761,
39.809395338531964,
148.29998850514414
],
[
116.50202933944418,
39.80938359620662,
148.29998849397964
],
[
116.50203878023075,
39.80937185387928,
148.29998852444533
],
[
116.50204822101732,
39.809360111549914,
148.2999885063432
],
[
116.50205766180389,
39.809348369218554,
148.29998851599464
],
[
116.50206710259046,
39.809336626885184,
148.29998851870812
],
[
116.50207654337703,
39.80932488454981,
148.29998858352178
],
[
116.50208598416357,
39.809313142212424,
148.29998851025937
],
[
116.50209542495014,
39.80930139987304,
147.80258536886106
],
[
116.50210499804051,
39.809289720982065,
147.74623006383433
],
[
116.50211458612095,
39.80927804927806,
147.74623007056869
],
[
116.50212417420141,
39.80926637757208,
147.7462301177402
],
[
116.50213376228183,
39.80925470586412,
147.74623008403853
],
[
116.50214335036227,
39.809243034154164,
147.74623006258776
],
[
116.50215293844273,
39.80923136244224,
147.7462300552304
],
[
116.50216252652316,
39.809219690728334,
147.7462301446825
],
[
116.5021721146036,
39.809208019012445,
147.74623004051665
],
[
116.50218170268406,
39.809196347294574,
147.74623007543954
],
[
116.5021912907645,
39.80918467557471,
147.746230143753
],
[
116.50220087884492,
39.80917300385288,
147.7462301293507
],
[
116.50221046692533,
39.80916133212906,
147.7462294387051
],
[
116.50222194778321,
39.80914735629438,
150.45482594530847
],
[
116.50223079042868,
39.80913537219419,
130.16403373831827
],
[
116.50224437375732,
39.80912656561062,
103.80579695054894
],
[
116.5022616599528,
39.80912330256496,
76.89685891576113
],
[
116.50227897733187,
39.809126399012214,
60.570293126005936
],
[
116.50229461795695,
39.80913317723447,
59.829656142251
],
[
116.50231015045868,
39.80914011342922,
59.82965618751763
],
[
116.5023256829604,
39.80914704962326,
59.829656193658195
],
[
116.50234121546217,
39.80915398581661,
62.23549249524524
],
[
116.50235709967029,
39.80916040951712,
71.2065606517699
],
[
116.50237406319151,
39.80916484398448,
83.63983258266211
],
[
116.50239187097037,
39.80916636876694,
95.50909787603081
],
[
116.50240970211905,
39.80916504764615,
106.6398691894982
],
[
116.50242686120255,
39.80916110814383,
117.75155381771447
],
[
116.50244272398614,
39.809154696622954,
130.40018165667937
],
[
116.50245637374258,
39.80914577271494,
141.68783579051768
],
[
116.50246747881728,
39.809134975672535,
148.09452716931543
],
[
116.50247697374292,
39.80912326014347,
148.64368608711084
],
[
116.50248632266518,
39.80911147447951,
148.64368616831428
],
[
116.5024956715874,
39.80909968881352,
148.64368534784933
],
[
116.50250735122155,
39.80908496494592,
148.34699064777806
],
[
116.50251677946527,
39.80907321662218,
148.3469906874264
],
[
116.50252620770894,
39.80906146829645,
148.34699065821923
],
[
116.50253563595264,
39.8090497199687,
148.3469909977715
],
[
116.50254394816011,
39.809039362307594,
148.3469909977715
]
]
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment