M /anton/undefined +4 -0
284 unmodified lines285 geometry: { type: 'Point', coordinates: stops[stopNames[k]] },286 })287 }288 var geoName = trip.replace(/\.md$/, '') + '.geojson'289 await files.write(geoName, JSON.stringify({ type: 'FeatureCollection', features: features }, null, 2))289 try {290 await files.write(geoName, JSON.stringify({ type: 'FeatureCollection', features: features }, null, 2))291 } catch (e) {292 errors.push(geoName + ': ' + e.message)293 }294 }295
296 // global flights.geojson297 var globalFeatures = []32 unmodified lines