Skip to content

Commit be3c544

Browse files
add built-in data table notebook examples to new ext. config.ts (#75)
1 parent ad5c6fc commit be3c544

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

src/extension/config.ts

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
// built-in data table notebook examples
2+
export const notebookExamples: Array<any> = [
3+
{
4+
name: 'Chicago Traffic Tracker',
5+
file: './notebooks/chicago-traffic-tracker.restbook',
6+
description: 'Current Chicago Traffic Tracker REST Book',
7+
},
8+
{
9+
name: 'USA Airports',
10+
file: './notebooks/usa-airports.ipynb',
11+
description: 'USA Airports TypeScript Notebook',
12+
},
13+
{
14+
name: 'Chicago Speed Cameras',
15+
file: './notebooks/chicago-speed-cameras.ipynb',
16+
description: 'Chicago Speed Cameras .NET Interactive Notebook',
17+
},
18+
{
19+
name: 'Chicago Red Light Cameras',
20+
file: './notebooks/chicago-red-light-cameras.ipynb',
21+
description: 'Chicago Red Light Cameras Pyolite Notebook',
22+
},
23+
{
24+
name: 'World Cities',
25+
file: './notebooks/world-cities.restbook',
26+
description: 'Major World Cities REST Book',
27+
},
28+
{
29+
name: 'World Rivers',
30+
file: './notebooks/world-rivers.restbook',
31+
description: 'Major World Rivers REST Book',
32+
},
33+
{
34+
name: 'World Lakes',
35+
file: './notebooks/world-lakes.restbook',
36+
description: 'Major World Lakes REST Book',
37+
},
38+
{
39+
name: 'World GDP',
40+
file: './notebooks/world-gdp.restbook',
41+
description: 'World GDP REST Book',
42+
},
43+
];

0 commit comments

Comments
 (0)