Updated airport codes
This commit is contained in:
@@ -3,6 +3,9 @@ import { Airport } from './airport.types';
|
||||
import { Metar } from './metar.types';
|
||||
|
||||
export async function getMetars(airports: Airport[]): Promise<Metar[]> {
|
||||
if (airports.length == 0) {
|
||||
return [];
|
||||
}
|
||||
const stationICAOs: string = airports.map((airport) => airport.icao).join(',');
|
||||
const url = `http://localhost:5000/metars/${stationICAOs}`;
|
||||
const response = await axios.get(url).catch((error) => console.error(error));
|
||||
|
||||
Reference in New Issue
Block a user