surro
v2.0.0
Published
A TypeScript implementation of Apple's CoreLocation API
Downloads
17
Readme
Surro
Surro uses Apple's private CoreLocation API framework to find the location of nearby LTE cell sites. This can be useful for geolocating users, or for collecting data on nearby cell sites. This library is still under development, which means some features may change over time. In addition, support for Chinese mobile networks is not available, for the reasons described here.
Web
Surro is available as a web JavaScript library, via jsDelivr. To use it in a browser, you must configure a CORS proxy (see below).
5G NR Support
As far as I'm aware, this is the first CoreLocation library to support 5G NR; feel free to browse proto/apple.proto to see how it's implemented. It looks like data is only available on networks that have both NR-SA and VoNR enabled, so you'll get limited results for networks who don't support SA (or don't support SA on iPhone).
Generate types
If you update the proto/apple.proto file, you can generate the types by running npx buf generate. Types are generated automatically upon build.
Functions
getCellLocation(mcc, mnc, cid, lac, rat)
This function is ideal for geolocating a user based on their nearby cell sites. It's functionally equivalent to Google's Ichnea-compatible Geolocation API, which actually only returns the location result for the first Cell ID passed in; for geolocating a user, I would recommend calling multiple times and interpolating the data yourself.
getSurroundingCells(mcc, mnc, cid, lac, rat)
This function returns all of the LTE cells that Apple has seen near the passed site, and their respective locations. This is useful more for data collection than for geolocation. It does have a few quirks—for instance, some cells (eg. especially brand new cell sites, temporary COWs), may not show up unless passed directly in.
setCorsProxyUrl(url)
Because Apple's server doesn't return an Access-Control-Allow-Origin header, Surro won't work in a browser directly without a CORS Proxy. This function can be called multiple times.
Thanks to:
- https://github.com/acheong08/apple-corelocation-experiments/
- https://codeberg.org/joelkoen/wtfps/
