devTool.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. module(..., package.seeall)
  2. PI = 3.14159265359
  3. ERadius = 6371.393
  4. function getDistance( lat1, lng1, lat2, lng2 )
  5. -- body
  6. local radLat1 = lat1 * (PI / 180)
  7. local radLat2 = lat2 * (PI / 180)
  8. local a = radLat1 - radLat2
  9. local b = (lng1 * (PI / 180)) - (lng2 * (PI / 180))
  10. local s = 2 * math.asin(math.sqrt(math.pow(math.sin(a/2),2) + math.cos(radLat1)*math.cos(radLat2)*math.pow(math.sin(b/2),2)))
  11. local s = s * ERadius
  12. local s = math.floor(s * 10000+0.5) / 10000
  13. return s
  14. end
  15. function getPresentAfterHmac( str )
  16. -- body
  17. if type(str) ~= "string" then
  18. -- body
  19. return false
  20. end
  21. sha1Str = crypto.sha1(str)
  22. return sha1Str:sub(1,2)
  23. end
  24. function guid()
  25. math.random( 1,32 )
  26. math.randomseed(os.time())
  27. local seed={'e','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'}
  28. local tb={}
  29. for i=1,32 do
  30. table.insert(tb,seed[math.random(1,16)])
  31. end
  32. local sid=table.concat(tb)
  33. return string.format('%s-%s-%s-%s-%s',
  34. string.sub(sid,1,8),
  35. string.sub(sid,9,12),
  36. string.sub(sid,13,16),
  37. string.sub(sid,17,20),
  38. string.sub(sid,21,32)
  39. )
  40. end