Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions demo/frontend/src/Components/App/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ const App = () => (
<Features />
<TryIt>
<p>
This is a demo of how Martin works. We used 2017 New York City taxi trips dataset: about 114
million records and a 13GB database.
This demo uses a 2017 New York City taxi trips dataset - 114 million records served as vector tiles.
</p>
<p>
Martin uses a database function to filter the data by selected dates, days of the week, and
hours and to sum or average the numbers by areas.
Martin uses a database function to filter data by date, day of week, and hour, and to aggregate values by area.
</p>
</TryIt>
<MaplibreMap />
Expand Down
14 changes: 6 additions & 8 deletions demo/frontend/src/config/features.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
export default [
{
description: 'Martin creates MVT vector tiles from any PostGIS table or view',
description: 'Serve vector tiles directly from your PostGIS database.',
id: 1,
title: 'Turning Data into Vector Tiles',
title: 'Vector Tiles from PostGIS',
},
{
description:
'Martin is the only vector tile server capable of creating tiles using database functions directly',
description: 'Generate tiles dynamically using database functions.',
id: 2,
title: 'Generating Tiles with Functions',
title: 'Function-Based Tile Generation',
},
{
description:
'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',
description: 'Filter and aggregate data on the fly using URL parameters.',
id: 3,
title: 'Filtering and Aggregating Data on the Fly',
title: 'Dynamic Filtering',
},
];
Loading