Skip to content

Commit

Permalink
Increase limit on indexing bins
Browse files Browse the repository at this point in the history
  • Loading branch information
ansoncfit committed Jan 31, 2022
1 parent 71bd15a commit 1a28824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/conveyal/r5/streets/IntHashGrid.java
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ private void visit(Envelope envelope, boolean createIfEmpty, final BinVisitor bi
// Check sanity before iterating
long dx = (maxXKey - minXKey);
long dy = (maxYKey - minYKey);
if (dx * dy > 10000) {
if (dx * dy > 250000) {
LOG.error("Visiting too many spatial index cells.");
return;
}
Expand Down

1 comment on commit 1a28824

@ansoncfit
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: limit was similarly increased in e3fb46d

Please sign in to comment.