Template

Great circle distance/doc

From Halal Explorer

< Template:Great circle distance

Usage

Computes the w:great circle distance between two points, specified by the latitude and longitude, using the w:haversine formula.

{{Great circle distance|latitude 1|longitude 1|latitude 2|longitude 2|radius of the planet in km (optional)|units=(optional)|precision=(optional)}}

or

{{Great circle distance|lat1=|long1=|lat2=|long2=|r=|units=|precision=}}

  • latitude 1, longitude 1, latitude 2, and longitude 2 are the coordinates of your point. They should be specified as w:decimal degrees, not in degree-minute-second (DMS) notation, and South and West latitude and longitude should be expressed as negative numbers. You can use {{Decdeg}} to convert from DMS to decimal notation (e.g. {{Great circle distance|{{decdeg|40|42|45.72}}|{{decdeg|-70|0|21.24}}|{{decdeg|34|2|60}}|{{decdeg|-118|15|0}}|units=mi}} yields Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted).
  • The radius of the planet in km (r=) parameter defaults the average radius of the earth between the latitudes of the input coordinates (using {{Great circle distance/er}}). Because the earth is an w:ellipsoid, not a perfect sphere, the further your points are from each other, the less accurate your answer will be. You can substitute this value for the radius at your midpoint, if known, or use any other value (for example, you could use 3390 if you want distances on w:Mars, or 6371 if you want to use the mean earth radius).
  • precision uses the same syntax as the unnamed precision parameter in Template:Convert.

TemplateData

<templatedata> { "params": { "r": { "aliases": [ "5" ], "label": "Radius", "description": "Radius of the planet in kilometers", "type": "number", "default": "6373" }, "lat2": { "aliases": [ "3" ], "label": "Latitude 2", "description": "Latitude of point 2 in decimal degrees", "type": "number", "default": "0", "required": true }, "lat1": { "aliases": [ "1" ], "label": "Latitude 1", "description": "Latitude of point 1 in decimal degrees", "type": "number", "default": "0", "required": true }, "long2": { "aliases": [ "4" ], "label": "Longitude 2", "description": "Longitude of point 2 in decimal degrees", "type": "number", "default": "0", "required": true }, "long1": { "aliases": [ "2" ], "label": "Longitude 1", "description": "Longitude of point 1 in decimal degrees", "type": "number", "default": "0", "required": true }, "units": { "label": "Units", "description": "Units to output distance in (defaults to km). Can be any distance unit supported by Template:Convert", "type": "string", "default": "km" } }, "description": "Computes the great circle distance between two points, specified by the latitude and longitude, using the haversine formula.", "paramOrder": [ "lat1", "long1", "lat2", "long2", "r", "units" ] } </templatedata>