require_relative 'geo_graf/intersection_calculator' module GeoGraf class << self def intersections_for(input_geodata) IntersectionCalculator.new(input_geodata).intersections end end end