[FREE] Accurate Location By Trilateration Method

Hello Members

Get Accurate Location Of your User By Trilateration Method.

It only have three blocks, which validate coordinates, request method and GotLocation event and GotError to caught error.

GetAccurateLocation Procedure.


All values are in double in maths block only.


GotLocation Event Triggered When The Procedure Done.
component_event (1)


isValidLocation Block is used to verify the coordinates genuinity.
component_method (1)


GotError Block to caught all errors from the procedure.
GotError

Simple Usage

Aix file: AccurateLocation.aix (7.0 KB)

Aia File : AccurateLocation.aia (9.8 KB)

Use Cases :

1. To locate a person from having three coordinates giving you exact location of that person (exact means exact) like police in every country do.

2. Use in ecosystem building to identify the lost phone with it's exact location as Google is try to giving live location but the co-ordinates it gives are changes every second or on every refresh.

3. To measure trilaterate between cell phone towers.

4. It also helps in user wanted exact route tracing or making by maps component.

Very Big and Great Thanks To @JEWEL To fix the errors in the code and make it fully working.

4 Likes

would you please explain in what circumstances this extension will be used?

1 Like

Edited can check.

This may ve useful for Home delivery businesses to locate the user to deliver the products

1 Like

Where do the individual tower coordinates and distances come from?

By making the ecosystem through your app.

How would one do that?

I gave them extension now they can do anything with open their minds. :stuck_out_tongue_winking_eye:

1 Like

You still leave an awful lot to be desired, the calculations necessary to achieve this.

The map component can provide the centroid of a triangular polygon:

image

image

or simply just touch a location on the map, and share it.

if you have ABC locations, and try to get D location which is same distance to ABC. but why we need to get the distance AB, BC, CA first before use this extension? which makes its much complicated

and one more thing: this is only some mathematics (no http request need needed i think ), that can be done almost instantly, no need an asynchronous event.