我正在使用AISHub APIs构建一个小船可视化器。在查询 API 后,我能够获得一个包含数千个容器的 json 文件,但我只过滤我感兴趣的容器,并将它们注入到网页上的表格中。API 提供以下文件:[NAME, MMSI, LONGITUDE, LATITUDE, others...]
. 我用于过滤的最重要参数是 :NAME
和MMSI
(虽然可能有多个容器具有相同NAME
的 ,但不能有两个容器具有相同的MMSI
编号,因为它是唯一的)。
我遇到的问题是该filter
功能似乎没有正确的行为。实际上,它并没有针对特定的NAME
和/或进行唯一过滤,MMSI
并且我最终拥有多个具有相同NAME
和不同的容器MMSI
。还有应该出现的容器,它没有,尽管我为那个特定的容器硬编码了NAME
and MMSI
。这是无法解释的,因为我将这些数字硬编码为专门过滤。
在我用于过滤搜索的代码下方:
var express = require('express');
var router = express.Router();
var axios = require('axios');
const NodeCache = require('node-cache');
const myCache = new NodeCache();
let hitCount = 0;
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
});
const mmsiOfInterest = [
'367029520', // ok -> MICHIGAN
'366909730', // ok -> JP BOISSEAU
'367128570', // ok -> DELAWARE BAY
'366744010', // ok -> ATLANTIC SALVOR
// Other MMSI numbers .....
];
const shipNamesOfInterest = [
'MICHIGAN',
'JP BOISSEAU',
'DELAWARE BAY',
'ATLANTIC SALVOR',
// Other NAMES....
]
router.get('/hello', async function(req, res, next) {
const allData = myCache.get('allData');
if (!allData) {
hitCount++;
console.log(`hit ${hitCount} number of times`);
const { data } = await axios.get(
'http://data.aishub.net/ws.php?username=MY_KEY&format=1&output=json&compress=0&latmin=11.42&latmax=58.20&lonmin=-134.09&lonmax=-52.62'
);
const [ metaData, ships ] = data;
console.log(data);
const shipsOfInterest = ships.filter(
(ship) => mmsiOfInterest.includes(ship.MMSI) || shipNamesOfInterest.includes(ship.NAME)
);
myCache.set('allData', shipsOfInterest, 70);
res.send(data);
return;
}
console.log('this is the data:', allData);
res.send(allData);
});
module.exports = router;
同样在来自 API 的典型JSON
响应下方:
{"MMSI":225342000,"TIME":"2020-01-26 01:45:48 GMT","LONGITUDE":1.43912,"LATITUDE":38.91523,"COG":339.9,"SOG":0,"HEADING":297,"ROT":0,"NAVSTAT":0,"IMO":9822449,"NAME":"ILLETAS JET","CALLSIGN":"EAVX","TYPE":40,"A":4,"B":25,"C":4,"D":4,"DRAUGHT":0,"DEST":"IBIZA","ETA":"00-00 00:00"}
到目前为止我做了什么:
1)我尝试了不同的filter
功能组合,我尝试过滤MMSI
,这应该对每艘船都是唯一的,但我最终还是得到了相同NAME
和不同的船只MMSI
(尽管我硬编码了MMSI
......我不'不明白):
const shipsOfInterest = ships.filter(
(ship) => mmsiOfInterest.includes(ship.MMSI)
);
在我尝试过滤后NAME
,但这也不起作用:
const shipsOfInterest = ships.filter(
(ship) => shipNamesOfInterest.includes(ship.NAME)
);
编辑 2
router.get('/hello', async function(req, res, next) {
//
const allData = myCache.get('allData');
if (!allData) {
hitCount++;
console.log(`hit ${hitCount} number of times`);
const { data } = await axios.get(
'http://data.aishub.net/ws.php?username=KEY&format=1&output=json&compress=0&latmin=11.42&latmax=58.20&lonmin=-134.09&lonmax=-52.62'
);
// console.log(data);
const { metaData, ships } = data;
const set = new Set();
const shipsOfInterest = ships.filter((ship) => {
if (set.has(ship.MMSI)) return false;
set.add(ship.MMSI);
return true;
});
myCache.set('allData', shipsOfInterest, 70);
res.send(data);
return;
}
console.log('this is the data:', allData);
res.send(allData);
});
module.exports = router;
错误下方:
我不知道如果filter
以不同的方式组织该功能是否可以获得更好的结果。我认为这可能是组织搜索的一种非常好的方法,但不明白它不起作用的地方。感谢您指出解决此问题的正确方向。