module Eve::API::Services::Map

Public Instance Methods

contested_systems()
Alias for: fac_war_systems
fac_war_systems() click to toggle source

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)
# File lib/eve/api/services/map.rb, line 39
def fac_war_systems; request('map', :fac_war_systems); end
Also aliased as: contested_systems
jumps() click to toggle source

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)
# File lib/eve/api/services/map.rb, line 29
def jumps;           request('map', :jumps);           end
kills() click to toggle source

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)
# File lib/eve/api/services/map.rb, line 22
def kills;           request('map', :kills);           end
sovereignty() click to toggle source

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
# File lib/eve/api/services/map.rb, line 13
def sovereignty;     request('map', :sovereignty);     end