Package huskymaps

Class MapGraph

  • All Implemented Interfaces:
    AStarGraph<org.locationtech.spatial4j.shape.Point>, Graph<org.locationtech.spatial4j.shape.Point>

    public class MapGraph
    extends Object
    implements AStarGraph<org.locationtech.spatial4j.shape.Point>
    AStarGraph of places as Point vertices and streets edges weighted by physical distance.
    See Also:
    AStarGraph, MapServer
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      private class  MapGraph.Handler
      Parses OSM XML files to construct a StreetMapGraph.
    • Constructor Summary

      Constructors 
      Constructor Description
      MapGraph​(String osmPath, Collection<String> allowedHighwayTypes, String placesPath, org.locationtech.spatial4j.context.SpatialContext context)
      Constructs a new street map graph from the path to an OSM file and a places TSV.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      private void addEdge​(org.locationtech.spatial4j.shape.Point from, org.locationtech.spatial4j.shape.Point to)
      Adds an edge to this graph if it doesn't already exist, using distance as the weight.
      org.locationtech.spatial4j.shape.Point closest​(org.locationtech.spatial4j.shape.Point target)
      Returns the location closest to the given target location.
      double estimatedDistance​(org.locationtech.spatial4j.shape.Point start, org.locationtech.spatial4j.shape.Point end)
      Returns an estimated distance from start to end.
      private static InputStream fileStream​(String path)
      Returns an input stream from the contents of the file at the given path.
      List<org.locationtech.spatial4j.shape.Point> getLocations​(String locationName, org.locationtech.spatial4j.shape.Point center)
      Return all locations that match a valid location name.
      List<CharSequence> getLocationsByPrefix​(String prefix)
      Return the names of all locations that prefix-match the query string.
      List<Edge<org.locationtech.spatial4j.shape.Point>> neighbors​(org.locationtech.spatial4j.shape.Point v)
      Returns a list of the outgoing edges from the given vertex.
      String toString()  
    • Field Detail

      • osmPath

        private final String osmPath
      • placesPath

        private final String placesPath
      • context

        private final org.locationtech.spatial4j.context.SpatialContext context
      • neighbors

        private final Map<org.locationtech.spatial4j.shape.Point,​Set<Edge<org.locationtech.spatial4j.shape.Point>>> neighbors
      • locations

        private final Map<String,​List<org.locationtech.spatial4j.shape.Point>> locations
    • Method Detail

      • fileStream

        private static InputStream fileStream​(String path)
                                       throws FileNotFoundException
        Returns an input stream from the contents of the file at the given path.
        Parameters:
        path - a file path.
        Returns:
        an input stream with the contents of the specified file.
        Throws:
        FileNotFoundException - if there is no file at the specified path.
      • closest

        public org.locationtech.spatial4j.shape.Point closest​(org.locationtech.spatial4j.shape.Point target)
        Returns the location closest to the given target location.
        Parameters:
        target - the target location.
        Returns:
        the id of the location closest to the target.
      • getLocationsByPrefix

        public List<CharSequence> getLocationsByPrefix​(String prefix)
        Return the names of all locations that prefix-match the query string.
        Parameters:
        prefix - prefix string that could be any case with or without punctuation.
        Returns:
        a list of full names of locations matching the prefix.
      • getLocations

        public List<org.locationtech.spatial4j.shape.Point> getLocations​(String locationName,
                                                                         org.locationtech.spatial4j.shape.Point center)
        Return all locations that match a valid location name.
        Parameters:
        locationName - a full name of a valid location.
        Returns:
        a list of locations whose name matches the location name.
      • neighbors

        public List<Edge<org.locationtech.spatial4j.shape.Point>> neighbors​(org.locationtech.spatial4j.shape.Point v)
        Description copied from interface: Graph
        Returns a list of the outgoing edges from the given vertex.
        Specified by:
        neighbors in interface Graph<org.locationtech.spatial4j.shape.Point>
        Parameters:
        v - the node of interest.
        Returns:
        a list of the outgoing edges from the given vertex.
      • estimatedDistance

        public double estimatedDistance​(org.locationtech.spatial4j.shape.Point start,
                                        org.locationtech.spatial4j.shape.Point end)
        Description copied from interface: AStarGraph
        Returns an estimated distance from start to end.
        Specified by:
        estimatedDistance in interface AStarGraph<org.locationtech.spatial4j.shape.Point>
        Parameters:
        start - the beginning vertex.
        end - the destination vertex.
        Returns:
        an estimated distance from start to end.
      • addEdge

        private void addEdge​(org.locationtech.spatial4j.shape.Point from,
                             org.locationtech.spatial4j.shape.Point to)
        Adds an edge to this graph if it doesn't already exist, using distance as the weight.