Tree.java 970 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package de.hft.stuttgart.citygml.green.osm;

import org.locationtech.jts.geom.Coordinate;

public class Tree {

	private Coordinate point;
	private double trunkHeight;
	private double trunkRadius;
	private double crownRadius;
	private double crownHeight;

	public Coordinate getPoint() {
		return point;
	}

	public void setPoint(Coordinate point) {
		this.point = point;
	}

	public double getTrunkHeight() {
		return trunkHeight;
	}

	public void setTrunkHeight(double trunkHeight) {
		this.trunkHeight = trunkHeight;
	}

	public double getTrunkRadius() {
		return trunkRadius;
	}

	public void setTrunkRadius(double trunkRadius) {
		this.trunkRadius = trunkRadius;
	}

	public double getCrownRadius() {
		return crownRadius;
	}

	public void setCrownRadius(double crownRadius) {
		this.crownRadius = crownRadius;
	}

	public double getCrownHeight() {
		return crownHeight;
	}

	public void setCrownHeight(double crownHeight) {
		this.crownHeight = crownHeight;
	}

}