Skip to content

Commit 7b82de9

Browse files
committed
updated
1 parent 732577c commit 7b82de9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+148
-27
lines changed

.classpath

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>

.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>java-programming-daniel-liang-10th</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

Ch_04/Exercise04_03.java

-27
This file was deleted.

src/.classpath

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4+
<classpathentry kind="output" path="bin"/>
5+
</classpath>

.gitignore src/.gitignore

File renamed without changes.

src/.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>java-programming-daniel-liang-10th</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/Ch_04/Exercise04_03.java

+103
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
package Ch_04;
2+
3+
/* 4.3 (Geography: estimate areas) Find the GPS locations for Atlanta, Georgia;
4+
Orlando, Florida; Savannah, Georgia; and Charlotte, North Carolina from
5+
www.gps-data-team.com/map/ and compute the estimated area enclosed by these
6+
four cities. (Hint: Use the formula in Programming Exercise 4.2 to compute the
7+
distance between two cities. Divide the polygon into two triangles and use the
8+
formula in Programming Exercise 2.19 to compute the area of a triangle.)
9+
-84.2782200,33.8901000 Atlanta
10+
-81.5197542,28.4283959 Orlando
11+
-81.1746100,32.1081500 Savannah
12+
-80.9567600,35.2072400 Charlotte
13+
Formula for distance -->>> d = radius * arccos(sin(x1) * sin(x2) + cos(x1) * cos(x2) * cos(y1 - y2))
14+
15+
*
16+
* s = (side1 + side2 + side3)/2;
17+
* area = SQRT((s - side1)(s - side2)(s - side3))
18+
*
19+
*
20+
*/
21+
22+
/**
23+
* @author Harry G. Dulaney IV
24+
*/
25+
26+
public class Exercise04_03 {
27+
28+
static double addTwoTriangles(Triangle t1, Triangle t2) {
29+
return t1.area + t2.area;
30+
}
31+
32+
public static void main(String[] args) {
33+
34+
double radius = 6_371.01; // Mean radius of Planet Earth
35+
36+
// Find distance between points for Triangle One
37+
double atlantaToCharlotte, charlotteToSavannah, savannahToAtlanta;
38+
39+
atlantaToCharlotte = radius * Math.acos(Math.sin(-84.27822) * Math.sin(-81.5197542)
40+
+ Math.cos(-84.2782200) * Math.cos(-81.5197542) * Math.cos(33.8901000 - 32.10815));
41+
42+
charlotteToSavannah = radius * Math.acos(Math.sin(-80.95676) * Math.sin(-81.17461)
43+
+ Math.cos(-80.95676) * Math.cos(-81.1746100) * Math.cos(35.20724 - 32.1081500));
44+
45+
savannahToAtlanta = radius * Math.acos(Math.sin(-81.17461) * Math.sin(-84.27822)
46+
+ Math.cos(-81.1746100) * Math.cos(-84.27822) * Math.cos(32.10815 - 33.8901));
47+
48+
Triangle triangle1 = new Triangle(atlantaToCharlotte, charlotteToSavannah, savannahToAtlanta);
49+
triangle1.computeArea();
50+
51+
// Find the distance need for Triangle two
52+
double savannahToOrlando, orlandoToAtlanta;
53+
54+
savannahToOrlando = radius * Math.acos(Math.sin(-81.17461) * Math.sin(-81.5197542)
55+
+ Math.cos(81.17461) * Math.cos(-81.5197542) * Math.cos(32.10815 - 28.4283959));
56+
57+
orlandoToAtlanta = radius * Math.acos(Math.sin(-84.27822) * Math.sin(-81.519754)
58+
+ Math.cos(81.17461) * Math.cos(-81.5197542) * Math.cos(33.8901000 - 28.4283959));
59+
60+
Triangle triangle2 = new Triangle(savannahToOrlando, orlandoToAtlanta, savannahToAtlanta);
61+
triangle2.computeArea();
62+
63+
double areaOfPolygon = addTwoTriangles(triangle1,triangle2);
64+
65+
System.out.println("Using the Great Circle calculation, the estimated area enclosed by "
66+
+ "\nAtlanta, Charlotte, Savannah, and Orlando is " + areaOfPolygon);
67+
68+
}
69+
70+
}
71+
72+
class Triangle {
73+
74+
double side1;
75+
double side2;
76+
double side3;
77+
double area;
78+
79+
public Triangle(double side1, double side2, double side3) {
80+
this.side1 = side1;
81+
this.side2 = side2;
82+
this.side3 = side3;
83+
}
84+
85+
void computeArea() {
86+
double s = side1 + side2 + side3;
87+
area = Math.sqrt(s * (s - side1) * (s - side2) * (s - side3));
88+
}
89+
90+
/**
91+
* @return the area
92+
*/
93+
public double getArea() {
94+
return area;
95+
}
96+
97+
/**
98+
* @param area the area to set
99+
*/
100+
public void setArea(double area) {
101+
this.area = area;
102+
}
103+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

README.md src/README.md

0 commit comments

Comments
 (0)