Get length of footway for an area. This is a proxy of walkability score. we get back a number.
osm.getLength_footway(place = "Mytilene Municipal Unit")
The name of an area.
The total length of footpaths in this area. This may be considered as a proxy for walcability score of this area.
Other osm:
osm.ClipSFnetwork_with_poly()
,
osm.CreateEmptyRaster()
,
osm.bb_2_pol()
,
osm.combineAmenities()
,
osm.combineShops()
,
osm.getFrequency()
,
osm.getPOI_usingbb()
,
osm.getPOI()
,
osm.getRoads()
,
osm.osmdata_result_2_bbox_pol()
library(goal)
mylength = osm.getLength_footway( place="Mytilene Municipal Unit" )
mylength
#> $TotalLength
#> 44833.45 [m]
#>
#> $MeanLength
#> 97.88964 [m]
#>
#> $MedianLength
#> 27.73577 [m]
#>
#> $SDLength
#> [1] 363.2223
#>
#> $VarianceLength
#> [1] 131930.4
#>
#> $QuntilesLength
#> Units: [m]
#> 0% 25% 50% 75% 100%
#> 0.6416553 10.7238693 27.7357690 66.1254945 6465.5806419
#>