@@ -26,8 +26,7 @@ public class ShapefileIndexerTest {
26
26
@ Test
27
27
public void testBasicIndexing () throws Exception {
28
28
29
- File shapefile = new File (
30
- "/Users/devins/Downloads/data/flickr_shapes_public_dataset_2.0/flickr_shapes_neighbourhoods.shp" );
29
+ File shapefile = new File ("data/build/flickr-shapes/neighbourhoods.shp" );
31
30
ShapefileDataStore store = new ShapefileDataStore (shapefile .toURI ().toURL ());
32
31
33
32
String name = store .getTypeNames ()[0 ];
@@ -49,8 +48,7 @@ public void testBasicIndexing() throws Exception {
49
48
System .out .printf ("Index built in: %.2f seconds\n " , (new Date ().getTime () - start ) / (float ) 1000 );
50
49
51
50
GeometryFactory geometryFactory = new GeometryFactory ();
52
- File output = new File (
53
- "/Users/devins/Downloads/data/flickr_shapes_public_dataset_2.0/flickr_shapes_neighbourhoods.txt" );
51
+ File output = new File ("target/test/output/flickr-shapes/neighbourhoods.txt" );
54
52
Formatter formatter = new Formatter (output );
55
53
56
54
start = new Date ().getTime ();
@@ -83,8 +81,7 @@ public void testBasicIndexing() throws Exception {
83
81
@ Test
84
82
public void testPrintShapefile () throws Exception {
85
83
86
- File shapefile = new File (
87
- "/Users/devins/Downloads/data/flickr_shapes_public_dataset_2.0/flickr_shapes_continents.shp" );
84
+ File shapefile = new File ("data/build/flickr-shapes/continents.shp" );
88
85
ShapefileDataStore store = new ShapefileDataStore (shapefile .toURI ().toURL ());
89
86
90
87
String name = store .getTypeNames ()[0 ];
0 commit comments