WindField.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //define([],function () {
  2. var WindField = function (obj) {
  3. this.west = null;
  4. this.east = null;
  5. this.south = null;
  6. this.north = null;
  7. this.rows = null;
  8. this.cols = null;
  9. this.dx = null;
  10. this.dy = null;
  11. this.unit = null;
  12. this.date = null;
  13. this.grid = null;
  14. this._init(obj);
  15. };
  16. WindField.prototype = {
  17. constructor: WindField,
  18. _init: function (obj) {
  19. var header = obj.header,
  20. uComponent = obj['uComponent'],
  21. vComponent = obj['vComponent'];
  22. this.west = +header['lo1'];
  23. this.east = +header['lo2'];
  24. this.south = +header['la2'];
  25. this.north = +header['la1'];
  26. this.rows = +header['ny'];
  27. this.cols = +header['nx'];
  28. this.dx = +header['dx'];
  29. this.dy = +header['dy'];
  30. this.unit = header['parameterUnit'];
  31. this.date = header['refTime'];
  32. this.grid = [];
  33. var k = 0,
  34. rows = null,
  35. uv = null;
  36. for (var j = 0; j < this.rows; j++) {
  37. rows = [];
  38. for (var i = 0; i < this.cols; i++, k++) {
  39. uv = this._calcUV(uComponent[k], vComponent[k]);
  40. rows.push(uv);
  41. }
  42. this.grid.push(rows);
  43. }
  44. },
  45. _calcUV: function (u, v) {
  46. return [+u, +v, Math.sqrt(u * u + v * v)];
  47. },
  48. _bilinearInterpolation: function (x, y, g00, g10, g01, g11) {
  49. var rx = (1 - x);
  50. var ry = (1 - y);
  51. var a = rx * ry, b = x * ry, c = rx * y, d = x * y;
  52. var u = g00[0] * a + g10[0] * b + g01[0] * c + g11[0] * d;
  53. var v = g00[1] * a + g10[1] * b + g01[1] * c + g11[1] * d;
  54. return this._calcUV(u, v);
  55. },
  56. getIn: function (x, y) {
  57. var x0 = Math.floor(x),
  58. y0 = Math.floor(y),
  59. x1, y1;
  60. if (x0 === x && y0 === y) return this.grid[y][x];
  61. x1 = x0 + 1;
  62. y1 = y0 + 1;
  63. var g00 = this.getIn(x0, y0),
  64. g10 = this.getIn(x1, y0),
  65. g01 = this.getIn(x0, y1),
  66. g11 = this.getIn(x1, y1);
  67. return this._bilinearInterpolation(x - x0, y - y0, g00, g10, g01, g11);
  68. },
  69. isInBound: function (x, y) {
  70. if ((x >= 0 && x < this.cols - 2) && (y >= 0 && y < this.rows - 2)) return true;
  71. return false;
  72. }
  73. };
  74. // return WindField;
  75. //})
  76. export default WindField