}
}
);
final Configuration config = configurationFactory.getConfig(getFile(BASE_DIR + "config.yaml"));
final Template template = config.getTemplate("main");
PJsonObject requestData = loadJsonRequestData();
Values values = new Values(requestData, template, this.parser, getTaskDirectory(), this.requestFactory, new File("."));
this.forkJoinPool.invoke(template.getProcessorGraph().createTask(values));
URI northArrowGraphic = (URI) values.getObject("graphic", URI.class);
BufferedImage graphic = ImageSimilarity.convertFromSvg(northArrowGraphic, 200, 200);
// Files.copy(new File(northArrowGraphic), new File("/tmp/" + getClass().getSimpleName() + ".svg"));