com.scaleset.geo.FeatureParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scaleset-geo Show documentation
Show all versions of scaleset-geo Show documentation
Simple framework for dealing with GeoJson and similar data formats
The newest version!
package com.scaleset.geo;
import java.io.InputStream;
public interface FeatureParser {
public FeatureParser handler(FeatureHandler handler);
public FeatureParser filter(FeatureFilter filter);
public void parse(InputStream in) throws Exception;
}