org.heigit.ohsome.ohsomeapi.oshdb.ExtractMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ohsome-api Show documentation
Show all versions of ohsome-api Show documentation
A public Web-RESTful-API for "ohsome" OpenStreetMap history data.
package org.heigit.ohsome.ohsomeapi.oshdb;
import com.fasterxml.jackson.databind.JsonNode;
import org.heigit.ohsome.ohsomeapi.inputprocessing.ProcessingData;
import org.locationtech.jts.geom.Geometry;
/** Holds the metadata that is derived from the data-extract. */
public class ExtractMetadata {
public static String fromTstamp = null;
public static String toTstamp = null;
public static String attributionShort = null;
public static String attributionUrl = null;
public static Geometry dataPoly = null;
public static JsonNode dataPolyJson = null;
public static int replicationSequenceNumber;
public static double timeout = ProcessingData.getTimeout();
private ExtractMetadata() {
throw new IllegalStateException("Utility class");
}
}