org.heigit.ohsome.oshdb.api.mapreducer.OSMContributionView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oshdb-api Show documentation
Show all versions of oshdb-api Show documentation
API to query the OpenStreetMap History Database. Includes MapReduce functionality to filter, analyze and aggregate data.
The newest version!
package org.heigit.ohsome.oshdb.api.mapreducer;
import org.heigit.ohsome.oshdb.api.db.OSHDBDatabase;
import org.heigit.ohsome.oshdb.util.mappable.OSMContribution;
/**
* Returns all modifications to OSM elements within a given time period.
*/
public class OSMContributionView {
private OSMContributionView() {}
public static MapReducer on(OSHDBDatabase oshdb) {
return oshdb.createMapReducer(OSMContribution.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy