# need this for association with Aircraft through loose_tight_dictionary_cached_results require 'loose_tight_dictionary/cached_result' class FlightSegment < ActiveRecord::Base set_primary_key :row_hash extend CohortScope self.minimum_cohort_size = 1 # If airport iata code is missing, associate with all airports in a city # We need this to calculate distance when importing ICAO segments - see cm1 flight_segment.rb has_many :origin_city_airports, :foreign_key => 'city', :primary_key => 'origin_airport_city', :class_name => 'Airport' has_many :destination_city_airports, :foreign_key => 'city', :primary_key => 'destination_airport_city', :class_name => 'Airport' # Enable flight_segment.aircraft cache_loose_tight_dictionary_matches_with :aircraft, :primary_key => :aircraft_description, :foreign_key => :description falls_back_on :distance => lambda { weighted_average(:distance, :weighted_by => :passengers) }, # 2077.1205 data1 10-12-2010 :seats_per_flight => lambda { weighted_average(:seats_per_flight, :weighted_by => :passengers) }, # 144.15653537046 data1 10-12-2010 :load_factor => lambda { weighted_average(:load_factor, :weighted_by => :passengers) }, # 0.78073233770097 data1 10-12-2010 :freight_share => lambda { weighted_average(:freight_share, :weighted_by => :passengers) } # 0.022567224170157 data1 10-12-2010 data_miner do tap "Brighter Planet's sanitized flight segment data", Earth.taps_server process "Pull dependencies" do run_data_miner_on_belongs_to_associations end end end