Skip to content
This repository was archived by the owner on Aug 17, 2023. It is now read-only.

Commit c14cd36

Browse files
author
Taehoon Kim
committed
Too many things changed...This version is used from android application by library.
So, VITA library was excepted.
1 parent 1cbb314 commit c14cd36

10 files changed

+930
-221
lines changed

IndoorMapmatching/IndoorMapmatching.iml

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
<jarDirectory url="file://$USER_HOME$/geotools-16.3" recursive="false" type="SOURCES" />
2121
</library>
2222
</orderEntry>
23-
<orderEntry type="library" name="Vita" level="project" />
2423
<orderEntry type="library" name="poi-3.17" level="project" />
2524
<orderEntry type="library" name="gt-jts-wrapper-18.1" level="project" />
2625
</component>

IndoorMapmatching/src/edu/pnu/stem/indoor/feature/CellSpace.java

+17-9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import com.vividsolutions.jts.geom.LineString;
66
import com.vividsolutions.jts.geom.Polygon;
77

8+
import java.io.Serializable;
89
import java.util.ArrayList;
910

1011
/**
@@ -18,15 +19,14 @@ public class CellSpace {
1819
private String label; // Name to represent space
1920
private Polygon geom; // Geometry expressing space
2021
private ArrayList<LineString> doors; // An array that stores the geometry expressing door. The door is assumed to be represented by a LineString
21-
private ArrayList<LineString> visibilityEdges; // A collection of edges of the graph that represent visibility from point to point in geometry that represents space
22-
private ArrayList<LineString> door2doorEdges; // An array that stores the path between doors
23-
private GeometryFactory gf;
22+
//private ArrayList<LineString> visibilityEdges; // A collection of edges of the graph that represent visibility from point to point in geometry that represents space
23+
//private ArrayList<LineString> door2doorEdges; // An array that stores the path between doors
24+
//private GeometryFactory gf;
2425

2526
private CellSpace() {
2627
doors = new ArrayList<>();
27-
visibilityEdges = new ArrayList<>();
28-
door2doorEdges = new ArrayList<>();
29-
gf = new GeometryFactory();
28+
//visibilityEdges = new ArrayList<>();
29+
//door2doorEdges = new ArrayList<>();
3030
}
3131

3232
public CellSpace(Polygon geom) {
@@ -35,11 +35,11 @@ public CellSpace(Polygon geom) {
3535
}
3636

3737
public ArrayList<LineString> getDoor2doorEdges() {
38-
return door2doorEdges;
38+
return null;//door2doorEdges;
3939
}
4040

4141
public ArrayList<LineString> getVisibilityEdges() {
42-
return visibilityEdges;
42+
return null;//visibilityEdges;
4343
}
4444

4545
public ArrayList<LineString> getDoors() {
@@ -73,8 +73,9 @@ public void setGeom(Polygon geom) {
7373
* TODO : How to reuse visibility graph? need optimization
7474
* */
7575
public void addDoors(LineString newDoor) {
76+
GeometryFactory gf = new GeometryFactory();
7677
doors.add(newDoor);
77-
78+
/*
7879
if(visibilityEdges.isEmpty()) {
7980
setVisibilityGraphEdges();
8081
}
@@ -109,18 +110,21 @@ public void addDoors(LineString newDoor) {
109110
}
110111
}
111112
}
113+
*/
112114
}
113115

114116
/**
115117
* Make visibilityEdges.
116118
* visibilityEdges is a collection of edges of the graph that represent visibility from point to point in geometry that represents space.
117119
* */
118120
private void setVisibilityGraphEdges() {
121+
/*
119122
visibilityEdges.clear();
120123
Coordinate[] coords = geom.getCoordinates();
121124
for (Coordinate from : coords) {
122125
visibilityEdges = addNodetoVGraph(from, visibilityEdges);
123126
}
127+
*/
124128
}
125129

126130
/**
@@ -133,6 +137,7 @@ private void setVisibilityGraphEdges() {
133137
* @return added visibilityEdgeList
134138
* */
135139
private ArrayList<LineString> addNodetoVGraph(Coordinate from, ArrayList<LineString> visibilityEdgeList){
140+
GeometryFactory gf = new GeometryFactory();
136141
Coordinate[] coords = geom.getCoordinates();
137142
for (Coordinate to : coords) {
138143
if (from.equals(to)) continue;
@@ -160,10 +165,13 @@ private ArrayList<LineString> addNodetoVGraph(Coordinate from, ArrayList<LineStr
160165
* @return Edge list of visible graphs reflecting temporarily added nodes
161166
* */
162167
public ArrayList<LineString> addNodetoVGraph(Coordinate startP, Coordinate endP){
168+
/*
163169
ArrayList<LineString> temporalResult = (ArrayList<LineString>) visibilityEdges.clone();
164170
temporalResult = addNodetoVGraph(startP, temporalResult);
165171
temporalResult = addNodetoVGraph(endP, temporalResult);
166172
167173
return temporalResult;
174+
*/
175+
return null;
168176
}
169177
}

IndoorMapmatching/src/edu/pnu/stem/indoor/feature/IndoorFeatures.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package edu.pnu.stem.indoor.feature;
22

33
import com.vividsolutions.jts.geom.*;
4+
5+
import java.io.Serializable;
46
import java.util.ArrayList;
57
import java.util.HashMap;
68

@@ -16,7 +18,6 @@ public class IndoorFeatures {
1618
private ArrayList<CellSpace> cellSpaces = null;
1719
private HashMap<String, Integer> cellSpaceIndexMap = null;
1820
private boolean[][] topologyGraph = null;
19-
private GeometryFactory gf = null;
2021

2122
public IndoorFeatures () {
2223
this(new GeometryFactory());
@@ -25,7 +26,7 @@ public IndoorFeatures () {
2526
public IndoorFeatures (GeometryFactory gf) {
2627
cellSpaces = new ArrayList<>();
2728
cellSpaceIndexMap = new HashMap<>();
28-
this.gf = gf;
29+
//this.gf = gf;
2930
}
3031

3132
public void addCellSpace(CellSpace cellSpace) {
@@ -97,6 +98,7 @@ public String getCellSpaceLabel(int cellSpaceIndex) {
9798
* */
9899
public int[] getCellSpaceIndex(Coordinate coordinate) {
99100
//TODO : Need to modify to operate on three-dimensional coordinate(or additional floor information)
101+
GeometryFactory gf = new GeometryFactory();
100102
ArrayList<Integer> resultList = new ArrayList<>();
101103
int closestCellIndex = -1;
102104
Point point = gf.createPoint(coordinate);

0 commit comments

Comments
 (0)