public FilterFunction_freemarker() {
super("freemarker");
// initialize the template engine, this is static to maintain a cache
// over instantiations of kml writer
templateConfig = new Configuration();
templateConfig.setObjectWrapper(new FeatureWrapper());
templateLoader = new StringTemplateLoader();
templateConfig.setTemplateLoader(templateLoader);
}