* @throws ClavinException If the index cannot be created.
*/
public static GeoParser getDefault(String pathToLuceneIndex, LocationExtractor extractor, int maxHitDepth,
int maxContentWindow, boolean fuzzy) throws ClavinException {
// instantiate new LuceneGazetteer
Gazetteer gazetteer = new LuceneGazetteer(new File(pathToLuceneIndex));
return new GeoParser(extractor, gazetteer, maxHitDepth, maxContentWindow, fuzzy);
}