0% found this document useful (0 votes)
110 views3 pages

Title of Project: Calculation On Latitude and Departure To Get The Area of The Traverse Software: Turbo C++ 4.5 Formula Use in This Project

This document describes a project that uses Turbo C++ 4.5 to calculate the area of a traverse by taking latitude and departure measurements at different points. It lists the formulas used, including how to calculate the bearing, latitude and departure, sums, corrections, adjusted values, coordinates, area, and linear misclose. The methodology section outlines the input, processing, and output steps of taking measurements, performing calculations, and outputting the final values.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
110 views3 pages

Title of Project: Calculation On Latitude and Departure To Get The Area of The Traverse Software: Turbo C++ 4.5 Formula Use in This Project

This document describes a project that uses Turbo C++ 4.5 to calculate the area of a traverse by taking latitude and departure measurements at different points. It lists the formulas used, including how to calculate the bearing, latitude and departure, sums, corrections, adjusted values, coordinates, area, and linear misclose. The methodology section outlines the input, processing, and output steps of taking measurements, performing calculations, and outputting the final values.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Title of project: calculation on latitude and departure to get the area of the traverse

Software: Turbo C++ 4.5

Formula use in this project:

 Calculate bearing
o Brg=degree+min/60+sec/3600

 Calculation latitude and departure


o Brg=brg*pi/180
o Latit=dist*cos(brg)
o Dipat=dit*sin(brg)

 Calculate sum latitude, departure, and distance


o Sum latitude=latitude1 +latitude2 +latitude3 +…+latituden
o Sum departure=departure1 +departure2 +departure3 +…+departuren
o Sum distance=distance1 +distance2 +distance3 +…+distancen

 Calculation for correction latitude and departure


o Correction latitude=(dist/sum dist)*sum latit
o Correction departure= (dist/sum dist)* sum dipat

 Calculation for adjusted latitude and adjusted departure


o Adj latit = (correction latit*-1)+latit
o Adj dipat = (correction dipat*-1)+dipat

 Calculate coordinate
o Coordinate[N/S]=known coordinate+latit
o Coordinate[E/W]=known coordinate+dipat

 Calculate area
o Area=(coordinatex1 *coordinatey2 )+(coordinatex2 +coordinatey3 )+(coordinatex3
+coordinateyn)- (coordinatex2 *coordinatey1 )+(coordinatex3 +coordinatey2 )+(coordinatexn
+coordinate3)/2
 Calculate linear misclose
o misclose = sqrt (sumlatit*sumlatit + sumdipat*sumdipat)/sumdist

Methodology:

START

INPUT: ENTER NAME OBSERVER

FILENAME

PROCESS:

Calculate latit and dipat

Calculate sum latit and sum dipat

Calculate correction latit and dipat

Calculate adjusted latit and adjusted dipat

Calculate coordinate

Calculate area

Linear misclose
OUTPUT

Area

Sum adjusted latit

Sum adjusted dipat

Sum distance

Linear misclose

STOP

You might also like