This commit is contained in:
gazebo
2018-09-20 17:02:25 +08:00
parent 1fa6540f19
commit d8eb17f6be
9 changed files with 176 additions and 104 deletions

View File

@@ -63,7 +63,7 @@ func StrTime2JxOperationTime(strTime string, defValue int16) int16 {
}
func JxOperationTime2StrTime(value int16) string {
return fmt.Sprintf("%02d:%02d:00", value/100, value%100)
return fmt.Sprintf("%02d:%02d", value/100, value%100)
}
func GetPolygonFromCircle(lng, lat, distance float64, pointCount int) (points [][2]float64) {