PHPackages                             ericariyanto/laravel-geonode-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. ericariyanto/laravel-geonode-client

ActiveLibrary[API Development](/categories/api)

ericariyanto/laravel-geonode-client
===================================

Modern Laravel client for GeoNode API v2+ (datasets, layers, styles, metadata).

0.0.20(3mo ago)065MITPHPPHP ^8.1CI passing

Since Jan 20Pushed 3mo agoCompare

[ Source](https://github.com/ericariyanto/laravel-geonode-client)[ Packagist](https://packagist.org/packages/ericariyanto/laravel-geonode-client)[ Docs](https://github.com/ericariyanto/laravel-geonode-client)[ RSS](/packages/ericariyanto-laravel-geonode-client/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (12)Versions (14)Used By (0)

Laravel GeoNode Client
======================

[](#laravel-geonode-client)

[![Latest Version on Packagist](https://camo.githubusercontent.com/cecaeeebe9072e15594b8f556d5c3f1288451ae22313a28ca4f7bcff97e7767f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6572696361726979616e746f2f6c61726176656c2d67656f6e6f64652d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ericariyanto/laravel-geonode-client)[![GitHub Tests Action Status](https://camo.githubusercontent.com/df1d609683f67aae8528273e323699d782562d48d0ad4e11fdb423f5927cbe20/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6572696361726979616e746f2f6c61726176656c2d67656f6e6f64652d636c69656e742f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/ericariyanto/laravel-geonode-client/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/af3a080259f348470134dab6ada7e6bbe3bddeca5fc036c3c13671b01c344235/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6572696361726979616e746f2f6c61726176656c2d67656f6e6f64652d636c69656e742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/ericariyanto/laravel-geonode-client/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/70716176e02dbef4549abb6d7f8f6c714b54a750548cb78eda8a66860e490685/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6572696361726979616e746f2f6c61726176656c2d67656f6e6f64652d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ericariyanto/laravel-geonode-client)

This Library provides a clean, modern Laravel package for interacting with GeoNode API v2+

Support us
----------

[](#support-us)

\[[![](https://camo.githubusercontent.com/786deed02d97ba3cf22604d12f7dc067fa2a7fcc1cc5afb19c94d11650848d5b/68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f4c61726176656c2047656f4e6f646520436c69656e742e6a70673f743d31)](https://camo.githubusercontent.com/786deed02d97ba3cf22604d12f7dc067fa2a7fcc1cc5afb19c94d11650848d5b/68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f4c61726176656c2047656f4e6f646520436c69656e742e6a70673f743d31)\]( GeoNode Client)

We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require ericariyanto/laravel-geonode-client
```

You can publish the config file with:

```
php artisan vendor:publish --tag="laravel-geonode-client-config"
```

This is the contents of the published config file:

```
return [
];
```

Usage
-----

[](#usage)

```
$laravelGeoNodeClient = new EricAriyanto\LaravelGeoNodeClient();
echo $laravelGeoNodeClient->echoPhrase('Hello, EricAriyanto!');
```

```
use EricAriyanto\LaravelGeoNodeClient\Facades\LaravelGeoNodeClient;

// List datasets
$datasets = LaravelGeoNodeClient::datasets()->list(['page_size' => 50]);

// Upload shapefile zip
$res = LaravelGeoNodeClient::datasets()->uploadFile(storage_path('tmp/parcel.zip'));

// Update keywords
LaravelGeoNodeClient::metadata()->updateTags(123, ['jalan','batas']);
```

```
// Auto-detect & upload
LaravelGeoNodeClient::upload()->upload(storage_path('maps/jalan.zip'), [
    'title' => 'Peta Jalan Kalbar',
    'abstract' => 'Data jalan terbaru',
    'regions' => [1, 5],
    'keywords' => ['jalan','kalbar'],
]);

// Async upload
$task = LaravelGeoNodeClient::upload()->uploadAsync(storage_path('tmp/lahan.geojson'));
$status = LaravelGeoNodeClient::upload()->checkTask($task['task_id']);
```

Styles Service (SLD)
--------------------

[](#styles-service-sld)

```
// List styles
$styles = LaravelGeoNodeClient::styles()->list();

// Get raw SLD
$sld = LaravelGeoNodeClient::styles()->getSld('peta_jalan_style');

// Upload/replace style
LaravelGeoNodeClient::styles()->upload('peta_jalan_style', $sld, true);

// Assign style to layer
LaravelGeoNodeClient::styles()->assignToLayer('layers:jalan_kota', 'peta_jalan_style');

// Sync to GeoServer (if GeoNode supports it)
LaravelGeoNodeClient::styles()->syncToGeoServer('peta_jalan_style');
```

Advanced Metadata
-----------------

[](#advanced-metadata)

```
// Update bbox
LaravelGeoNodeClient::advancedMetadata()->updateBbox(123, [106.6, -6.5, 107.1, -6.0]);

// Update temporal extent
LaravelGeoNodeClient::advancedMetadata()->updateTemporal(123, ['start' => '2020-01-01', 'end' => '2023-12-31']);

// Update license
LaravelGeoNodeClient::advancedMetadata()->updateLicense(123, ['id' => 'cc-by', 'url' => 'https://creativecommons.org/licenses/by/4.0/']);

// Update contact
LaravelGeoNodeClient::advancedMetadata()->updateContact(123, ['name' => 'Dinas Peta', 'email' => 'peta@example.go.id']);

// Update attribution
LaravelGeoNodeClient::advancedMetadata()->updateAttribution(123, ['text' => 'Dinas Peta Kalbar', 'url' => 'https://kalbar.example.gov']);

// Full update
LaravelGeoNodeClient::advancedMetadata()->updateAll(123, [
    'bbox' => [106.6, -6.5, 107.1, -6.0],
    'temporal_extent' => ['start' => '2020-01-01', 'end' => '2023-12-31'],
    'license' => ['id' => 'cc-by'],
    'contact' => ['name' => 'Dinas Peta'],
]);
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Eric Ariyanto](https://github.com/ericariyanto)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance82

Actively maintained with recent releases

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 98% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~2 days

Total

13

Last Release

90d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/596b65102235479db3432a79a6bb20fa0e138fe77a12b3cd83f157351c8f2bcc?d=identicon)[ericariyanto](/maintainers/ericariyanto)

---

Top Contributors

[![ericariyanto](https://avatars.githubusercontent.com/u/6174525?v=4)](https://github.com/ericariyanto "ericariyanto (48 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")

---

Tags

laravelEric Ariyantolaravel-geonode-client

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/ericariyanto-laravel-geonode-client/health.svg)

```
[![Health](https://phpackages.com/badges/ericariyanto-laravel-geonode-client/health.svg)](https://phpackages.com/packages/ericariyanto-laravel-geonode-client)
```

###  Alternatives

[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.0k7.8M57](/packages/dedoc-scramble)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[ryangjchandler/bearer

Minimalistic token-based authentication for Laravel API endpoints.

8129.8k](/packages/ryangjchandler-bearer)[combindma/laravel-facebook-pixel

Meta pixel integration for Laravel

4956.9k](/packages/combindma-laravel-facebook-pixel)[stechstudio/laravel-hubspot

A Laravel SDK for the HubSpot CRM Api

2971.0k](/packages/stechstudio-laravel-hubspot)[njoguamos/laravel-plausible

A laravel package for interacting with plausible analytics api.

208.8k](/packages/njoguamos-laravel-plausible)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
