14
14
package org .heigit .ors .routing .graphhopper .extensions ;
15
15
16
16
import com .carrotsearch .hppc .LongArrayList ;
17
+ import com .graphhopper .coll .GHLongObjectHashMap ;
17
18
import com .graphhopper .reader .ReaderNode ;
18
19
import com .graphhopper .reader .ReaderWay ;
19
20
import com .graphhopper .reader .osm .OSMReader ;
@@ -39,9 +40,7 @@ public class ORSOSMReader extends OSMReader {
39
40
private boolean processNodeTags ;
40
41
private final OSMDataReaderContext readerCntx ;
41
42
42
- //FIXME: big regular hashmaps should be avoided because they don't support MMAP
43
- private final HashMap <Long , HashMap <String , String >> nodeTags = new HashMap <>();
44
-
43
+ private final GHLongObjectHashMap <Map <String , String >> nodeTags = new GHLongObjectHashMap (200 , 0.5 );
45
44
private boolean processGeom = false ;
46
45
private boolean processSimpleGeom = false ;
47
46
private boolean processWholeGeom = false ;
@@ -171,7 +170,6 @@ protected void processWay(ReaderWay way) {
171
170
*/
172
171
@ Override
173
172
public void onProcessWay (ReaderWay way ) {
174
-
175
173
Map <Integer , Map <String , String >> tags = new HashMap <>();
176
174
ArrayList <Coordinate > coords = new ArrayList <>();
177
175
ArrayList <Coordinate > allCoordinates = new ArrayList <>();
@@ -189,7 +187,7 @@ public void onProcessWay(ReaderWay way) {
189
187
long id = osmNodeIds .get (i );
190
188
// replace the osm id with the internal id
191
189
int internalId = getNodeMap ().get (id );
192
- HashMap <String , String > tagsForNode = nodeTags .get (id );
190
+ Map <String , String > tagsForNode = nodeTags .get (id );
193
191
194
192
if (tagsForNode != null ) {
195
193
tags .put (internalId , nodeTags .get (id ));
0 commit comments