import NasaKscLightning from './NasaKscLightning.svelte';
export const Tool: TypeTool = {
name: 'NASA KSC lightning observations',
slug: 'data/nasa-ksc-lightning',
parentSlug: 'data',
intro:
'A fixed one-day example from the Kennedy Space Center Weather Archive, normalized into portable tabular data and summarized in ten-minute intervals.',
managesHead: true,
tool: () => '',
i: [],
o: [
{
label: 'Lightning observations',
placeholder: 'Lightning observations',
render: 'custom',
renderas: NasaKscLightning,
type: 'text'
}
],
cite: [
{
title:
'NASA Kennedy Space Center Weather Archive — Lightning Strikes',
url: 'https://kscweather.ksc.nasa.gov/wxarchive/LightningStrikes'
}
]
};
export default Tool;
Browse the implementation files for NASA KSC lightning observations.