This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.get("/api", function(req, res) { | |
if (req.query.lon === "" || req.query.lat === "" | |
|| req.query.lon = null || req.query.lat = null) { // handle undefined as well | |
res.sendStatus(404).json({ error: 'Latitude and longitude are required' }); | |
} else { | |
console.log(req.query); | |
res.json(req.query); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getOutput(requestID, _poolName) { | |
var url = SEARCH_URL + '/' + requestID + '/output'; | |
request.get(url, function(err, response, body) { | |
if (err) { | |
console.error("Error requesting URL", url, err); | |
} else { | |
if (body) { | |
console.log("Writing json response to " + _poolName + ".json"); | |
writeJSON(_poolname, body); | |
} else { |