Skip to content

Commit ad8fbf7

Browse files
docs: reword some aspects of the demo site (#2590)
Simplifies the feature descriptions and TryIt section on the Martin demo site for clarity and brevity. - Shortened all 3 feature descriptions in `features.ts` - Simplified TryIt copy in `App.jsx` - [x] simplified feature desciptions in the demo site - [ ] installer box --------- Co-authored-by: Frank Elsinga <frank@elsinga.de>
1 parent feb298d commit ad8fbf7

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

demo/frontend/src/Components/App/App.jsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@ const App = () => (
1717
<Features />
1818
<TryIt>
1919
<p>
20-
This is a demo of how Martin works. We used 2017 New York City taxi trips dataset: about 114
21-
million records and a 13GB database.
20+
This demo uses a 2017 New York City taxi trips dataset - 114 million records served as vector tiles.
2221
</p>
2322
<p>
24-
Martin uses a database function to filter the data by selected dates, days of the week, and
25-
hours and to sum or average the numbers by areas.
23+
Martin uses a database function to filter data by date, day of week, and hour, and to aggregate values by area.
2624
</p>
2725
</TryIt>
2826
<MaplibreMap />
Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
export default [
22
{
3-
description: 'Martin creates MVT vector tiles from any PostGIS table or view',
3+
description: 'Serve vector tiles directly from your PostGIS database.',
44
id: 1,
5-
title: 'Turning Data into Vector Tiles',
5+
title: 'Vector Tiles from PostGIS',
66
},
77
{
8-
description:
9-
'Martin is the only vector tile server capable of creating tiles using database functions directly',
8+
description: 'Generate tiles dynamically using database functions.',
109
id: 2,
11-
title: 'Generating Tiles with Functions',
10+
title: 'Function-Based Tile Generation',
1211
},
1312
{
14-
description:
15-
'Martin is ideal for large datasets as it allows passing parameters from a URL into a user function to filter features and aggregate attribute values',
13+
description: 'Filter and aggregate data on the fly using URL parameters.',
1614
id: 3,
17-
title: 'Filtering and Aggregating Data on the Fly',
15+
title: 'Dynamic Filtering',
1816
},
1917
];

0 commit comments

Comments
 (0)