Module: Eve::API::Services::Map

Defined in:
lib/eve/api/services/map.rb

Instance Method Summary collapse

Instance Method Details

#fac_war_systemsObject Also known as: contested_systems

Returns the sovereignty status of all solar systems. Warning: This is a lot of data!

Returns an object with a single “solar_systems” array. Each element in the array contains:

solar_system_id
solar_system_name
occupying_faction_id
occupying_faction_name
contested              (boolean)


39
# File 'lib/eve/api/services/map.rb', line 39

def fac_war_systems; request('map', :fac_war_systems); end

#jumpsObject

Returns the sovereignty status of all solar systems. Warning: This is a lot of data!

Returns an object with a single “solar_systems” array. Each element in the array contains:

solar_system_id
ship_jumps      (number)


29
# File 'lib/eve/api/services/map.rb', line 29

def jumps;           request('map', :jumps);           end

#killsObject

Returns the sovereignty status of all solar systems. Warning: This is a lot of data!

Returns an object with a single “solar_systems” array. Each element in the array contains:

solar_system_id
ship_kills      (number)
faction_kills   (number)
pod_kills       (number)


22
# File 'lib/eve/api/services/map.rb', line 22

def kills;           request('map', :kills);           end

#sovereigntyObject

Returns the sovereignty status of all solar systems. Warning: This is a lot of data!

Returns an object with a single “solar_systems” array. Each element in the array contains:

solar_system_id
alliance_id
faction_id
corporation_id
solar_system_name


13
# File 'lib/eve/api/services/map.rb', line 13

def sovereignty;     request('map', :sovereignty);     end