Skip to content

Commit

Permalink
add built-in data table notebook examples to new ext. config.ts (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomFractals committed Aug 1, 2021
1 parent ad5c6fc commit be3c544
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions src/extension/config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// built-in data table notebook examples
export const notebookExamples: Array<any> = [
{
name: 'Chicago Traffic Tracker',
file: './notebooks/chicago-traffic-tracker.restbook',
description: 'Current Chicago Traffic Tracker REST Book',
},
{
name: 'USA Airports',
file: './notebooks/usa-airports.ipynb',
description: 'USA Airports TypeScript Notebook',
},
{
name: 'Chicago Speed Cameras',
file: './notebooks/chicago-speed-cameras.ipynb',
description: 'Chicago Speed Cameras .NET Interactive Notebook',
},
{
name: 'Chicago Red Light Cameras',
file: './notebooks/chicago-red-light-cameras.ipynb',
description: 'Chicago Red Light Cameras Pyolite Notebook',
},
{
name: 'World Cities',
file: './notebooks/world-cities.restbook',
description: 'Major World Cities REST Book',
},
{
name: 'World Rivers',
file: './notebooks/world-rivers.restbook',
description: 'Major World Rivers REST Book',
},
{
name: 'World Lakes',
file: './notebooks/world-lakes.restbook',
description: 'Major World Lakes REST Book',
},
{
name: 'World GDP',
file: './notebooks/world-gdp.restbook',
description: 'World GDP REST Book',
},
];

0 comments on commit be3c544

Please sign in to comment.