| roro_routes | R Documentation |
A comprehensive dataset of the Philippine Strong Republic Nautical Highway (SRNH) and Missionary Routes (2024-2026).
roro_routes
A data frame with 108 rows and 16 variables:
Origin province name, GADM-standardized
Destination province name, GADM-standardized
The official name of the ferry connection
Distance in nautical miles
Average travel time in hours
Average daily frequency of trips (The Weight)
Estimated passenger capacity
Estimated truck units (Logistical Flow)
Official MARINA classification code
Western, Central, Eastern, or Missionary
Origin Latitude
Origin Longitude
Luzon, Visayas, or Mindanao
Destination Latitude
Destination Longitude
Destination Region
Philippine Ports Authority (PPA) and MARINA (2024-2026).
library(roroph)
library(dplyr)
# Load the network data
data(roro_routes)
# Example 1: Basic Analysis of Connectivity
# Calculate the average passenger capacity per highway system
roro_routes %>%
group_by(highway_type) %>%
summarise(mean_pax = mean(pax_cap, na.rm = TRUE))
# Example 2: Spatial Adjacency Logic (Anselin/LeSage framework)
# Filter for the Western Nautical Highway (WNH) hubs
wnh_hubs <- roro_routes[roro_routes$highway_type == "Western", ]
# Simple validation check of coordinates for spatial weight construction
if (requireNamespace("sf", quietly = TRUE)) {
library(sf)
# Check if coordinates are within the Philippine bounding box
bbox_check <- all(wnh_hubs$from_lat > 4 & wnh_hubs$from_lat < 21)
message("Coordinate validity: ", bbox_check)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.