Skip to content
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.

Latest commit

 

History

History
330 lines (250 loc) · 7.7 KB

filters.md

File metadata and controls

330 lines (250 loc) · 7.7 KB

Filters

Exclude rare commodity systems

Exclude rare commodity systems

ed-system-search --exclude-rare-commodity --max-distance-from-sol 10 "$EDSM_GZ_PATH"
Barnard's Star
Duamta
Luhman 16
Ross 154
Sirius
Sol
WISE 0855-0714
Wolf 359

Exclude permit locked systems

Exclude permit locked systems

ed-system-search --exclude-permit-locked --max-distance-from-sol 10 "$EDSM_GZ_PATH"
Alpha Centauri
Barnard's Star
Duamta
Luhman 16
Ross 154
WISE 0855-0714
Wolf 359

Exclude systems with player faction

Exclude systems with player faction

ed-system-search --exclude-player-faction --max-distance-from-sol 10  "$EDSM_GZ_PATH"
Ross 154
Sol

Minimum number of large docks

You can search by number of places you can dock on a large ship

ed-system-search --min-docks-large 6 "$EDSM_GZ_PATH"
Alioth
Sol

if it's not a number it'll fail

ed-system-search --min-docks-large banana "$EDSM_GZ_PATH"
error: Invalid value "banana" for '--min-docks-large <COUNT>': invalid digit found in string

For more information try --help

Minimum number of starports

Same as large without asteroid stations

ed-system-search --min-starports 6 "$EDSM_GZ_PATH"
Alioth
Sol

if it's not a number it'll fail

ed-system-search --min-starports banana "$EDSM_GZ_PATH"
error: Invalid value "banana" for '--min-starports <COUNT>': invalid digit found in string

For more information try --help

Minimum number of docks

You can search by number of places you can dock a ship

ed-system-search --min-docks 15 --max-distance-from-sol 10 "$EDSM_GZ_PATH"
Sol

if it's not a number it'll fail

ed-system-search --min-docks banana "$EDSM_GZ_PATH"
error: Invalid value "banana" for '--min-docks <COUNT>': invalid digit found in string

For more information try --help

Minimum population

You can search by the population of the system

ed-system-search --min-population 25000000000 "$EDSM_GZ_PATH"
Blatrimpe
G 203-47
Lave

if it's not a number it'll fail

ed-system-search --min-population banana "$EDSM_GZ_PATH"
error: Invalid value "banana" for '--min-population <COUNT>': invalid digit found in string

For more information try --help

Allegiance

You can search by the population of the system

ed-system-search --max-distance-from-sol 10 --allegiance Federation -- "$EDSM_GZ_PATH"
Duamta
Sol

Government

You can search by the population of the system

ed-system-search --max-distance-from-sol 10 --government Democracy -- "$EDSM_GZ_PATH"
Ross 154
Sol

Max number of factions

You can skip systems with more than a number of factions

ed-system-search --max-number-of-factions 1 "$EDSM_GZ_PATH"
4 Sextantis
Bleae Thua KY-L c7-12
Bleae Thua WD-M b49-1
Bleia Dryiae EE-E d13-178
Bleia Dryiae HK-Y c17-9
Blua Eaec RD-Z d1-1228
Blua Eaec US-Z b46-4
Blua Eaec WW-E c14-1293
Boelts UB-P b24-98
Boelts YK-P c21-5
Boelts ZN-Y b5-69
Byeia Eurk IE-L b49-4
Byeia Eurk OC-I b37-13
Capricorni Sector KC-V c2-13
Clooku AA-Q b37-41
Clooku QA-E c28-713
Clooku VJ-E b16-27
Col 285 Sector MH-V d2-50
Col 359 Sector UM-T c4-6
Droju OH-T a99-0
Dryio Flyuae KV-P b8-112
Dryooe Flyou NQ-G b27-103
Dryooe Flyou WB-T b47-10
Eoch Flyuae PL-D c138
Eoch Flyuae QK-E d12-2118
Eoch Flyuae ZU-Y b17-16
Eol Prou GE-A c1-291
Flyiedge JE-Z b46-9
Flyiedge VN-W c4-51
Gria Drye IR-F a38-10
HIP 58832
HIP 89396
HIP 90024
Hyades Sector RI-T c3-11
IC 1287 Sector RO-Q b5-1
Lysoosms YS-U d2-61
Mbooni
NGC 6530 Sector ZE-X b2-0
Nyeajaae NB-Q b52-14
Nyeajaae SC-B b33-7
Plaa Aescs QD-T c3-28
Pru Euq WO-D b53-8
Prua Phoe MI-B b17-5
Prua Phoe PI-I b55-3
Prua Phoe VF-M d8-1046
Skaudai GM-S b35-5
Skaude DR-A c2-1
Skaude ZK-X e1-203
Smojue IY-Q b32-1
Smojue PZ-R c4-5
Snake Sector OD-S b4-2
Stuelou UT-E b17-51
Stuelou VV-X c17-395
Trifid Sector GW-W d1-220

if it's not a number it'll fail

ed-system-search --max-number-of-factions banana "$EDSM_GZ_PATH"
error: Invalid value "banana" for '--max-number-of-factions <COUNT>': invalid digit found in string

For more information try --help

Max distance from sol system

You can search by distance from sol

ed-system-search --max-distance-from-sol 10 "$EDSM_GZ_PATH"
Alpha Centauri
Barnard's Star
Duamta
Luhman 16
Ross 154
Sirius
Sol
WISE 0855-0714
Wolf 359

if it's not a number it'll fail

ed-system-search --max-distance-from-sol banana "$EDSM_GZ_PATH"
error: Invalid value "banana" for '--max-distance-from-sol <LIGHT_SECONDS>': invalid float literal

For more information try --help

Max distance from reference system

You can search by distance from reference system

ed-system-search --reference=Sol --max-distance-from-reference 10 "$EDSM_GZ_PATH"
Alpha Centauri
Barnard's Star
Duamta
Luhman 16
Ross 154
Sirius
Sol
WISE 0855-0714
Wolf 359

if it's not a number it'll fail

ed-system-search --reference=Sol --max-distance-from-reference banana "$EDSM_GZ_PATH"
error: Invalid value "banana" for '--max-distance-from-reference <LIGHT_SECONDS>': invalid float literal

For more information try --help

If the reference isn't found it'll fail

NO_COLOR=1 ed-system-search --reference=Missing --max-distance-from-reference 10 "$EDSM_GZ_PATH"
Error: 
  × system not found: Missing