const hebingqian = `119.32499984320911 42.33436500278042 123.42274165365244,119.3250954151153 42.33442720867144 123.42274165365244,119.32499343850996 42.334497208759714 0.0,119.32499342322794 42.334497221678255 0.0,119.324993410824 42.334497237380845 0.0,119.32499340179484 42.3344972552387 0.0,119.32499339650202 42.33449727453676 0.0,119.32499339515746 42.334497294502256 0.0,119.32499339781502 42.33449731433572 0.0,119.32499340436827 42.334497333242965 0.0,119.32499341455481 42.33449735046688 0.0,119.32499342796673 42.33449736531779 0.0,119.32499344406699 42.33449737720099 0.0,119.32499346221088 42.334497385640674 0.0,119.32499348167188 42.33449739029887 0.0,119.32499350167069 42.334497390989064 0.0,119.32499352140653 42.334497387683605 0.0,119.32499354008908 42.33449738051487 0.0,119.32512584867288 42.33443073579988 123.42274165365244,119.3249999441359 42.33436483037376 123.42274165365244,119.32499992652826 42.33436482319728 123.42274165365244,119.32499990788057 42.33436481948326 123.42274165365244,119.32499988886698 42.334364819365994 123.42274165365244,119.32499987017489 42.33436482284971 123.42274165365244,119.32499985248008 42.33436482980845 123.42274165365244,119.32499983642226 42.33436483999065 123.42274165365244,119.324999822582 42.334364853028184 123.42274165365244,119.32499981145963 42.33436486844971 123.42274165365244,119.32499980345727 42.334364885697696 123.42274165365244,119.32499979886425 42.334364904148565 123.42274165365244,119.3249997978466 42.33436492313526 123.42274165365244,119.32499980044112 42.33436494197137 123.42274165365244,119.324999806554 42.3343649599759 123.42274165365244,119.32499981596425 42.33436497649794 123.42274165365244,119.32499982833167 42.33436499094015 123.42274165365244,119.32499984320911 42.33436500278042 123.42274165365244`;
const list = hebingqian.split(',')
// console.log(list)
const retList = []
list.forEach(item => {
const aa = item.split(' ')
const bb = [Number(aa[0]), Number(aa[1]), Number(aa[2])]
retList.push(bb)
})
console.log(retList)
console