riku
2025-06-03 06eeb9b59644971d93e6dd9207ac447864e527b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
import { $http } from './index';
 
import { Base64 } from 'js-base64';
/**
 * 卫星遥测网格相关接口API
 */
export default {
  fetchGridGroup(area, type, page, perPage) {
    return $http
      .post(`air/satellite/grid/group`, area, {
        params: {
          type,
          page: page,
          per_page: perPage
        }
      })
      .then((res) => res.data);
  },
 
  fetchGridCell(groupId) {
    return $http
      .get(`air/satellite/grid/cell`, {
        params: {
          groupId
        }
      })
      .then((res) => res.data);
  },
 
  /**
   * 获取网格组下的遥测数据
   * @param {*} groupId
   * @param {*} dataTime
   * @param {number} type 遥测数据类型,0:原始卫星数据,1:融合数据
   * @returns
   */
  fetchGridData(groupId, dataTime, type) {
    return $http
      .get(`air/satellite/grid/data`, {
        params: {
          groupId,
          dataTime,
          type
        }
      })
      .then((res) => res.data);
  },
 
  /**
   * 获取网格组下的遥测数据
   * @param {*} gridData 网格数据
   * @returns
   */
  fetchGridData2(gridData) {
    return $http
      .post(`air/satellite/grid/data2`, gridData)
      .then((res) => res.data);
  },
 
  /**
   * 删除网格数据
   * @param {Number} dataId 数据id
   */
  deleteGridData(dataId) {
    return $http
      .delete(`air/satellite/grid/data/delete`, {
        params: { dataId }
      })
      .then((res) => res.data);
  },
 
  // /**
  //  * 获取网格组下的遥测aod
  //  * @param {*} groupId
  //  * @param {*} dataTime
  //  * @returns
  //  */
  // fetchGridAod(groupId, dataTime) {
  //   return $http
  //     .get(`air/satellite/grid/aod`, {
  //       params: {
  //         groupId,
  //         dataTime
  //       }
  //     })
  //     .then((res) => res.data);
  // },
 
  fetchGridDataDetail(dataId, groupId, cellId) {
    return $http
      .get(`air/satellite/grid/data/detail`, {
        params: {
          dataId,
          groupId,
          cellId
        }
      })
      .then((res) => res.data);
  },
 
  createGridDataAndDataDetail(groupId, dataTime, dataDetailList) {
    return $http
      .post(`air/satellite/grid/data/create`, {
        params: {
          groupId,
          dataTime
        },
        data: dataDetailList
      })
      .then((res) => res.data);
  },
 
  downloadTemplate() {
    return $http
      .get(`air/satellite/import/grid/data/download/template`, {
        responseType: 'blob'
      })
      .then((res) => {
        const name = Base64.decode(res.headers.get('fileName'));
        const blob = new Blob([res.data], {
          type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
        });
        const url = window.URL.createObjectURL(blob);
        const link = document.createElement('a');
        link.href = url;
        link.download = name;
        document.body.appendChild(link);
        link.click();
        document.body.removeChild(link);
        window.URL.revokeObjectURL(url);
      });
  },
  importData(dataForm) {
    return $http
      .post(`air/satellite/import/grid/data`, dataForm)
      .then((res) => res.data);
  },
  downloadAODTemplate() {
    return $http
      .get(`air/satellite/import/grid/aod/download/template`, {
        responseType: 'blob'
      })
      .then((res) => {
        const name = Base64.decode(res.headers.get('fileName'));
        const blob = new Blob([res.data], {
          type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
        });
        const url = window.URL.createObjectURL(blob);
        const link = document.createElement('a');
        link.href = url;
        link.download = name;
        document.body.appendChild(link);
        link.click();
        document.body.removeChild(link);
        window.URL.revokeObjectURL(url);
      });
  },
  importAOD(dataForm) {
    return $http
      .post(`air/satellite/import/grid/aod`, dataForm)
      .then((res) => res.data);
  },
 
  mixGridData(dataIdList) {
    return $http
      .post(`air/satellite/grid/data/mix`, dataIdList)
      .then((res) => res.data);
  },
 
  /**
   * 生成走航网格融合记录
   * @param {*} gridData
   * @returns
   */
  buildUnderwayProduct(gridData) {
    return $http
      .post(`air/satellite/product/underway/build`, gridData)
      .then((res) => res.data);
  },
 
  mixUnderwayGridData(groupId, dataIdList) {
    return $http
      .post(`air/satellite/product/underway/mix`, dataIdList, {
        params: {
          groupId
        }
      })
      .then((res) => res.data);
  },
 
  buildUnderwayHeatmap(groupId, gridDataDetailList, searchLength) {
    return $http
      .post(
        `air/satellite/product/underway/heatmap/build`,
        gridDataDetailList,
        {
          params: {
            groupId: groupId,
            searchLength: searchLength
          }
        }
      )
      .then((res) => res.data);
  }
};