PHPackages                             simpledev/geofinder - 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. simpledev/geofinder

ActiveLibrary

simpledev/geofinder
===================

Geofinder find geolocation in jpeg photos metadata

11PHP

Since Feb 15Pushed 7y ago1 watchersCompare

[ Source](https://github.com/simpledev/geofinder)[ Packagist](https://packagist.org/packages/simpledev/geofinder)[ RSS](/packages/simpledev-geofinder/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Very short description of the package
=====================================

[](#very-short-description-of-the-package)

This package can find latitude and longitude from jpeg photos metadata.

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

[](#installation)

You can install the package via composer:

```
composer require simpledev/geofinder:dev-master
```

Usage Example
-------------

[](#usage-example)

```
use Simpledev\Geofinder\Geofinder;

if(!empty($_FILES['photo']))
{
	$photo = $_FILES['photo'];
	$finder = new Geofinder();
	$coords = $finder->getCoords($photo['tmp_name']);

	var_dump($coords); //return array(2) { ["latitude"]=> float(47.977730555556) ["longitude"]=> float(-4.4286277777778) } or false if geolocation not found

	if($coords){
		$lat = $coords['latitude']; //get latitude
		$lng = $coords['longitude']; //get longitude

		//do something with latitude and longitude
	}
}
```

### Changelog

[](#changelog)

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

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

[](#contributing)

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

Credits
-------

[](#credits)

- [Fabien LE CORRE](https://github.com/simpledev)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

PHP Package Boilerplate
-----------------------

[](#php-package-boilerplate)

This package was generated using the [PHP Package Boilerplate](https://laravelpackageboilerplate.com).

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/f7dd7851e70a2f75334624bb3ea2bb921b27537302a613074248222f9ec2630c?d=identicon)[simpledev](/maintainers/simpledev)

---

Top Contributors

[![simpledev](https://avatars.githubusercontent.com/u/2912268?v=4)](https://github.com/simpledev "simpledev (9 commits)")

### Embed Badge

![Health badge](/badges/simpledev-geofinder/health.svg)

```
[![Health](https://phpackages.com/badges/simpledev-geofinder/health.svg)](https://phpackages.com/packages/simpledev-geofinder)
```

PHPackages © 2026

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