On Github phoebe108 / walkshed-slides
# Financial Points
Distance to Nearest Road
Brandon Martin-Anderson's Growing Shortest Path Tree of Seattle
*2 out of 242 Offsite ATMs were too far from a road to use in Isochrone analysis.
*62 out of 1,254 Commercial Banks were too far from a road to use in Isochrone analysis.
// Edges will only be found if they are closer than this distance public static final double MAX_DISTANCE_FROM_STREET_METERS = 1000; private static final double MAX_DISTANCE_FROM_STREET_DEGREES = MAX_DISTANCE_FROM_STREET_METERS * 180 / Math.PI / SphericalDistanceLibrary.RADIUS_OF_EARTH_IN_M;
Phoebe Merritt pmerritt@spatialdev.com