Skip to content

Commit 39dbccb

Browse files
author
Ahmed Eldawy
committed
Added readfile to the Main entry to all operations
1 parent 796a521 commit 39dbccb

File tree

1 file changed

+4
-0
lines changed
  • src/operations/edu/umn/cs/spatialHadoop/operations

1 file changed

+4
-0
lines changed

src/operations/edu/umn/cs/spatialHadoop/operations/Main.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package edu.umn.cs.spatialHadoop.operations;
22

33
import edu.umn.cs.spatialHadoop.RandomSpatialGenerator;
4+
import edu.umn.cs.spatialHadoop.ReadFile;
45

56
/**
67
* The main entry point to all queries.
@@ -49,6 +50,9 @@ public static void main(String[] args) {
4950
"Finds the minimal bounding rectangle of an input file",
5051
"<path to input file>",
5152
"shape:<point|rectangle> - Type of the shape stored in input file");
53+
pgd.addClass("readfile", ReadFile.class,
54+
"Retrieve some information about the global index of a file",
55+
"<path to input file>");
5256

5357
pgd.addClass("sample", Sampler.class,
5458
"Reads a random sample from the input file",

0 commit comments

Comments
 (0)