initial commit of BRouter Version 0.98
This commit is contained in:
parent
e4ae2b37d3
commit
91e62f1164
120 changed files with 15382 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
/**
|
||||
* Container for routig configs
|
||||
*
|
||||
* @author ab
|
||||
*/
|
||||
package btools.mapaccess;
|
||||
|
||||
public interface DistanceChecker
|
||||
{
|
||||
/**
|
||||
* Checks whether the given path is within a maximum distance
|
||||
* known to the distance checker
|
||||
* @return true if close enough
|
||||
*/
|
||||
boolean isWithinRadius( int ilon0, int ilat0, OsmTransferNode firstTransfer, int ilon1, int ilat1 );
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue