com.onthegomap.planetiler.reader.osm.OsmHeader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of planetiler-core Show documentation
Show all versions of planetiler-core Show documentation
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