Class: GtfsDf::Schema::Transfers

Inherits:
BaseGtfsTable show all
Defined in:
lib/gtfs_df/schema/transfers.rb

Constant Summary collapse

SCHEMA =
{
  "from_stop_id" => Polars::String,
  "to_stop_id" => Polars::String,
  "transfer_type" => Polars::Int64,
  "min_transfer_time" => Polars::Int64
}.freeze
REQUIRED_FIELDS =
%w[
  from_stop_id
  to_stop_id
  transfer_type
].freeze

Instance Attribute Summary

Attributes inherited from BaseGtfsTable

#df, #validator

Method Summary

Methods inherited from BaseGtfsTable

#dataframe, empty_dataframe, #errors, #fields, #initialize, time_fields, #valid?

Constructor Details

This class inherits a constructor from GtfsDf::BaseGtfsTable