action getthedata_get_bng2latlong_easting_northing { label: "Returns latitude and longitude for the given easting and northing." description: "Takes an OSGB36 easting and northing (British National Grid) and returns the geographically equivalent WGS84 latitude and longitude.\n#### A successful request returns the following fields:\n* status - this will be `ok`\n* easting - the easting provided in the request\n* northing - the northing provided in the request\n* latitude - the latitude of the converted coordinates\n* longitude - the longitude of the converted coordinates\n#### An unsuccessful request returns the following fields:\n* status - this will be `error`\n* error - an error message\n" provider: getthedata method: GET path: "/bng2latlong/{easting}/{northing}" encoding: json input: { type: "object" properties: { easting: { type: "integer" } northing: { type: "integer" } } required: ["easting", "northing"] additionalProperties: false } output: { type: "object" properties: { easting: { type: "integer" } error: { type: "string" } latitude: { type: "number" } longitude: { type: "number" } northing: { type: "integer" } status: { type: "string" enum: ["ok", "error"] } } } }