simonschaufi/php-libkml

A library to manipulate KML/KMZ files

v1.0.1 2024-02-24 01:27 UTC

This package is auto-updated.

Last update: 2024-05-01 17:32:54 UTC


README

Donate Latest Version on Packagist GitHub Tests Action Status Total Downloads License

A php library to parse KML/KMZ files.

php-libKML maps KML/KMZ data into PHP objects that follow the KML specification. The purpose of the library is to create KML file from code, parse KML files and convert to another format maintaining the complete KML information.

Features

  • KML schema version 2.2
  • PHP 7.4+
  • Composer integration
  • Object oriented design
  • Comprehensive KML model
  • Import
    • KML

Future features:

  • Google extensions support
  • Import
    • KMZ
    • GeoJson
  • Export
    • KML/KMZ
    • GeoJson
    • WKT

Installation

You can install the package via composer:

composer require simonschaufi/php-libkml

Usage

$kmlReader = new KmlReader();
$kmlDocument = $kmlReader->fromString($kml);
// or
$kmlDocument = $kmlReader->fromKmlFile($kmlFilePath);

Contributing

Pull Requests are gladly welcome!

Please remember to add an issue and connect it to your pull requests. It is very helpful to understand what kind of issue the PR is going to solve.

Bugfixes:

Please describe what kind of bug your fix solves and give us feedback on how to reproduce the issue. We're going to accept only bugfixes if we can reproduce the issue.

Execute unit tests:

composer local:tests:unit

Execute acceptance tests:

composer local:tests:acceptance

Credits

License

The MIT License (MIT). Please see License File for more information.