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

com.onthegomap.planetiler.reader.osm.OsmHeader Maven / Gradle / Ivy

Go to download

Planetiler is tool to build planet-scale vector tilesets from OpenStreetMap data fast.

The newest version!
package com.onthegomap.planetiler.reader.osm;

import java.time.Instant;
import java.util.List;
import org.locationtech.jts.geom.Envelope;

/** Data parsed from the header block of an OSM input file. */
public record OsmHeader(
  Envelope bounds,
  List requiredFeatures,
  List optionalFeaturesList,
  String writingprogram,
  String source,
  Instant instant,
  long osmosisReplicationSequenceNumber,
  String osmosisReplicationBaseUrl
) {}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy