Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/backfill.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ const backfill = async function() {
// get graph
const graphOpts = {
source: "osm/planet-181224",
tileHierarchy: 6
tileHierarchy: 8
};
var graph = new shst.Graph(envelope, graphOpts);
var graph = new shst.Graph(envelope, graphOpts, 'bike');
await graph.buildGraph();
var pointMatcher = new shst.PointMatcher(envelope, graphOpts);

Expand Down