public static Dictionary processRawData()

in app/java/src/main/java/com/google/cloudclientapi/ProcessingJob.java [77:87]


  public static Dictionary<String, SquirrelSegment> processRawData(String tempDataFilePath)
      throws FileNotFoundException, IOException {
    logger.info("processRawData: start processing data");
    SquirrelCensusDictionaryBuildResult result =
        SquirrelCensusDictionaryBuilder.buildFromRawCsvFile(tempDataFilePath);
    logger.info(
        String.format(
            "processRawData: processed %s records, removed %s",
            result.numOfRowsProcessed, result.numOfRowsIgnored));
    return result.dictionary;
  }