All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.heigit.ohsome.ohsomeapi.oshdb.ExtractMetadata Maven / Gradle / Ivy

There is a newer version: 1.10.4
Show newest version
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");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy