17 lines
344 B
JavaScript
17 lines
344 B
JavaScript
|
import { json } from './fetch.mjs';
|
||
|
|
||
|
const getPoint = async (lat, lon) => {
|
||
|
try {
|
||
|
return await json(`https://api.weather.gov/points/${lat},${lon}`);
|
||
|
} catch (e) {
|
||
|
console.log(`Unable to get point ${lat}, ${lon}`);
|
||
|
console.error(e);
|
||
|
return false;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export {
|
||
|
// eslint-disable-next-line import/prefer-default-export
|
||
|
getPoint,
|
||
|
};
|