GPS API

Functions

Functiongps.locate
When called, sends out a ping to any listening GPS hosts, which in turn will send their own coordinates. Using these coordinates and the signal distance, using trilateration the GPS API can acquire its own location. If for any reason the GPS locating failed, the returned x, y and z will be nil. A Wireless Modem must be attached and GPS Hosts must be in range for the GPS location to succeed. The results that gps.locate returns are only as accurate as the data they receive from GPS hosts. If a host returns incorrect data (due to some misconfiguration), the returned location will also be inaccurate.
Syntax gps.locate(
  • timeout? : number
  • debug? : boolean
)
Returns nil | number x, number y, number z
Part of CC:Tweaked (source)
API gps
ExampleLocating self
Acquiring the executing computer's own location and printing it on screen.
Code
<nowiki>
local x, y, z = gps.locate()
if x == nil then
  error("Could not acquire current location. Perhaps there's no wireless modem attached or we're out of range of any GPS hosts.")
else
  print("Current location is: ", x, y, z)
end
    </nowiki>
Output Depends on the current location. Example: Current location is: 38 65 392

Constants

Constantgps.CHANNEL_GPS
The channel used by the GPS API to send out a broadcast ping, that GPS Host will answer to.
Type number
Value
65534
Part of CC:Tweaked
gollark: It's an ominous circle.
gollark: How would I know?
gollark: That sure is a person with sunglasses and a beard or something.
gollark: I'm not sure why you would want radiators, but you *could* totally use them.
gollark: The cat ears could also act as radiators or places to mount cameras.
This article is issued from Computercraft. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.