MCPcopy Create free account
hub / github.com/pyfa-org/Pyfa / probeSize

Method probeSize

eos/saveddata/fit.py:1350–1362  ·  view source on GitHub ↗

Expresses how difficult a target is to probe down with scan probes

(self)

Source from the content-addressed store, hash-verified

1348
1349 @property
1350 def probeSize(self):
1351 """
1352 Expresses how difficult a target is to probe down with scan probes
1353 """
1354
1355 sigRad = self.ship.getModifiedItemAttr("signatureRadius")
1356 sensorStr = float(self.scanStrength)
1357 probeSize = sigRad / sensorStr if sensorStr != 0 else None
1358 # http://www.eveonline.com/ingameboard.asp?a=topic&threadID=1532170&page=2#42
1359 if probeSize is not None:
1360 # Probe size is capped at 1.08
1361 probeSize = max(probeSize, 1.08)
1362 return probeSize
1363
1364 @property
1365 def warpSpeed(self):

Callers

nothing calls this directly

Calls 1

getModifiedItemAttrMethod · 0.45

Tested by

no test coverage detected