vkr/geolocation-bundle
Composer 安装命令:
composer require vkr/geolocation-bundle
包简介
A bundle for Symfony2/3 that offers fast way to get nearest points from geolocation data
README 文档
README
This bundle was created to sort out a rather nasty problem I've encountered - searching for a point in a large chunk of data that is the nearest one to some point N. There is a rather complicated formula that helps us do it precisely, however, it's a really bad idea to use it in your DB query - you will kill your database.
This bundle provides a solution for this problem by creating a two-step algorithm that first executes a simple DB query that looks for any point that has a remote chance to be the nearest one and then using the script to apply the formula and choose a 'winner' among these points.
The bundle consists of three services that you can use separately - first for step #1, second for step #2, third for talking to Doctrine. The bundle depends on Symfony and Doctrine, however, you do not need to actually use Doctrine if you prefer not to activate the third service.
Installation
Nothing to install here, except for activating the bundle in AppKernel.php.
Usage
Retrieving a bounding box
First of all, we will need to create a bounding box which is a square chunk of land, and then find all points that lie inside that box.
I assume that all your geospatial data uses degrees of latitude and longitude.
To create a bounding box, we need to know the side of the square. As all our data is in degrees, we will use degrees for that measure as well. However, a degree of longitude corresponds to different distances, depending on the latitude. Therefore, we will measure the box in degrees of latitude, that are immutable. One degree of latitude equals 111.375 km.
Here is how the box is created around the point with given latitude and longitude.
$boundingBoxFinder = $this->get('vkr_geolocation.bounding_box_finder');
$lat = 40;
$lng = -100;
$allowance = 0.5;
$boundingBox = $this->boundingBoxFinder->setBoundingBox($lat, $lng, $allowance);
Here we have a square with a side of roughly 55 km (half a degree of latitude) with a point (40, -100) at the center.
The desired allowance depends on how densely the points are distributed in your data source. For example, if you are searching for zip codes in a metropolitan zone, you wouldn't want to use anything more than 0.1 for allowance.
If your coordinates are located near the international date line (longitude of +180/-180), the service will take that into account and will still give you a perfectly square box.
If you prefer not to use the BoundingBoxFinder service, you can create the
BoundingBox object yourself, according to the following rules:
latproperty consists of an array withminandmaxvalues;lngproperty consists of an array with one or more arrays ofminandmaxvalues.
Example:
$latPair = [
'min' => 30,
'max' => 35,
];
$lngPairs = [
[
'min' => '-100',
'max' => '-95',
],
];
$boundingBox = new VKR\GeolocationBundle\Entity\Perishable\BoundingBox($latPair, $lngPairs);
Querying the DB
With the bounding box ready, we need to parse its contents into a DQL query. That is
what the doctrine_querier service is for. However, you need to define a data source
entity to use it. The entity must conform to VKR\GeolocationBundle\Interfaces\GeolocatableEntityInterface
that defines getLat() and getLng() methods. The service will collect all
points that lie inside your bounding box.
$doctrineQuerier = $this->get('vkr_geolocation.doctrine_querier');
$result = $doctrineQuerier->getRecords($boundingBox, YourEntity::class);
The contents of $result are nothing more than what you usually get from
getResult() in Doctrine.
Sometimes you might want to get a list of all values of a non-unique field that are
encountered in a bounding box. For example, you have a DB with zip codes but you are
only interested in cities. If this is the case, you can utilize getDistinctRecords():
$result = $doctrineQuerier->getDistinctRecords($boundingBox, YourEntity::class, 'city');
You will get a zero-indexed array of city names.
Calculating the nearest point
Finally, we can test which point inside your query result is the nearest one.
$calculator = $this->get('vkr_geolocation.nearest_point_calculator');
$index = $calculator->findNearestPoint($lat, $lng, $result);
$nearestPointCoords = [
'lat' => $result[$index]->getLat(),
'lng' => $result[$index]->getLng(),
];
That's about it.
Optional: defining the entity manager
If you are using a setup with multiple entity managers, you can define an optional
parameter in config.yml. Suppose that your manager is called "my", then add this
to config.yml:
vkr_geolocation:
entity_manager_service: "doctrine.orm.my_entity_manager"
This way, the doctrine_querier service will query the DB using the specified
entity manager.
API
VKR\GeolocationBundle\Entity\Perishable\BoundingBox BoundingBoxFinder::setBoundingBox(float $lat, float $lng, float $allowanceLat)
void DoctrineQuerier::__construct(Doctrine\ORM\EntityManager $em)
array|null DoctrineQuerier::getRecords(VKR\GeolocationBundle\Entity\Perishable\BoundingBox $boundingBox, string $entityClassName)
array DoctrineQuerier::getDistinctRecords(VKR\GeolocationBundle\Entity\Perishable\BoundingBox $boundingBox, string $entityClassName, string $fieldName)
int NearestPointCalculator::findNearestPoint(float $lat, float $lng, array $valueList)
The third argument must be a zero-indexed array of VKR\GeolocationBundle\Interfaces\GeolocatableEntityInterface
objects.
vkr/geolocation-bundle 适用场景与选型建议
vkr/geolocation-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 154 次下载、GitHub Stars 达 3, 最近一次更新时间为 2016 年 07 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Symfony2」 「geolocation」 「latitude」 「longitude」 「symfony3」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 vkr/geolocation-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 vkr/geolocation-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 vkr/geolocation-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Maps in minutes. Powered by the Google Maps API.
The official PHP library for apiip.net that allowing customers to automate IP address validation and geolocation lookup in websites, applications and back-office system. Visit our API docs at https://apiip.net/documentation
Metamel Addresses is a polymorphic Laravel package, for address book management. You can add addresses to any eloquent model with ease.
Supports GeoIP services (sypexgeo.net).
Symfony2 Barcode Generator Bundle with Twig function extension
Symfony bundle to connect AWS sns and sqs to create offline queue processing
统计信息
- 总下载量: 154
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-07-16