geodeticca / spatial
Simple package for working with GDAL library.
Installs: 241
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/geodeticca/spatial
Requires
- php: >=7.3.0
This package is auto-updated.
Last update: 2025-09-15 19:30:35 UTC
README
This package provides simple way to interact with GDAL library.
Instalation
Run following composer command.
composer require geodeticca/spatial
Example
$warp = new Warp($inputPath, $outputPath);
$warp
->addParam('-overwrite')
->addParam('-of GTiff')
->addParam('-s_srs EPSG:3857')
->addParam('-t_srs EPSG:4326');
$warp->execute();