roro_routes: Philippine RoRo Connectivity Network

roro_routesR Documentation

Philippine RoRo Connectivity Network

Description

A comprehensive dataset of the Philippine Strong Republic Nautical Highway (SRNH) and Missionary Routes (2024-2026).

Usage

roro_routes

Format

A data frame with 108 rows and 16 variables:

from_prov

Origin province name, GADM-standardized

to_prov

Destination province name, GADM-standardized

route_name

The official name of the ferry connection

dist_nm

Distance in nautical miles

avg_time_hrs

Average travel time in hours

freq_daily

Average daily frequency of trips (The Weight)

pax_cap

Estimated passenger capacity

cargo_cap

Estimated truck units (Logistical Flow)

marina_code

Official MARINA classification code

highway_type

Western, Central, Eastern, or Missionary

from_lat

Origin Latitude

from_lon

Origin Longitude

from_region

Luzon, Visayas, or Mindanao

to_lat

Destination Latitude

to_lon

Destination Longitude

to_region

Destination Region

Source

Philippine Ports Authority (PPA) and MARINA (2024-2026).

Examples

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)
}

roroph documentation built on April 17, 2026, 1:07 a.m.