transform_position.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. 'use strict';
  2. const { CrudService } = require('naf-framework-mongoose-free/lib/service');
  3. const { BusinessError, ErrorCode } = require('naf-core').Error;
  4. const _ = require('lodash');
  5. const assert = require('assert');
  6. //
  7. class Transform_positionService extends CrudService {
  8. constructor(ctx) {
  9. super(ctx, 'transform_position');
  10. this.a = 6378245.0;
  11. this.ee = 0.00669342162296594323;
  12. }
  13. transform(wgLat, wgLon) {
  14. if (this.outOfChina(wgLat, wgLon)) {
  15. return [ wgLat, wgLon ];
  16. }
  17. let dLat = this.transformLat(wgLon - 105.0, wgLat - 35.0);
  18. let dLon = this.transformLon(wgLon - 105.0, wgLat - 35.0);
  19. const radLat = (wgLat / 180.0) * Math.PI;
  20. let magic = Math.sin(radLat);
  21. magic = 1 - this.ee * magic * magic;
  22. const sqrtMagic = Math.sqrt(magic);
  23. dLat = (dLat * 180.0) / (((this.a * (1 - this.ee)) / (magic * sqrtMagic)) * Math.PI);
  24. dLon = (dLon * 180.0) / ((this.a / sqrtMagic) * Math.cos(radLat) * Math.PI);
  25. const mgLat = wgLat + dLat;
  26. const mgLon = wgLon + dLon;
  27. return [ mgLat, mgLon ];
  28. }
  29. outOfChina(lat, lon) {
  30. if (lon < 72.004 || lon > 137.8347) return true;
  31. if (lat < 0.8293 || lat > 55.8271) return true;
  32. return false;
  33. }
  34. transformLat(x, y) {
  35. let ret = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y + 0.2 * Math.sqrt(Math.abs(x));
  36. ret += ((20.0 * Math.sin(6.0 * x * Math.PI) + 20.0 * Math.sin(2.0 * x * Math.PI)) * 2.0) / 3.0;
  37. ret += ((20.0 * Math.sin(y * Math.PI) + 40.0 * Math.sin((y / 3.0) * Math.PI)) * 2.0) / 3.0;
  38. ret += ((160.0 * Math.sin((y / 12.0) * Math.PI) + 320 * Math.sin((y * Math.PI) / 30.0)) * 2.0) / 3.0;
  39. return ret;
  40. }
  41. transformLon(x, y) {
  42. let ret = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1 * Math.sqrt(Math.abs(x));
  43. ret += ((20.0 * Math.sin(6.0 * x * Math.PI) + 20.0 * Math.sin(2.0 * x * Math.PI)) * 2.0) / 3.0;
  44. ret += ((20.0 * Math.sin(x * Math.PI) + 40.0 * Math.sin((x / 3.0) * Math.PI)) * 2.0) / 3.0;
  45. ret += ((150.0 * Math.sin((x / 12.0) * Math.PI) + 300.0 * Math.sin((x / 30.0) * Math.PI)) * 2.0) / 3.0;
  46. return ret;
  47. }
  48. }
  49. module.exports = Transform_positionService;