com.scaleset.geo.FeatureHandler 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 com.vividsolutions.jts.geom.Envelope;
public interface FeatureHandler {
void begin() throws Exception;
void end() throws Exception;
void handle(Feature feature) throws Exception;
void handle(Envelope bbox);
}