org.openstreetmap.atlas.streaming.resource.GeoJsonFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlas Show documentation
Show all versions of atlas Show documentation
"Library to load OSM data into an Atlas format"
package org.openstreetmap.atlas.streaming.resource;
import java.util.Iterator;
import org.openstreetmap.atlas.streaming.readers.GeoJsonReader;
import org.openstreetmap.atlas.streaming.readers.json.serializers.PropertiesLocated;
/**
* File that contains GeoJson data.
*
* @author matthieun
*/
public class GeoJsonFile extends File implements Iterable
{
public GeoJsonFile(final String path)
{
super(path);
}
@Override
public Iterator iterator()
{
return new GeoJsonReader(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy