Home >Backend Development >PHP Tutorial >Geospatial Search with SOLR and Solarium
This article delves into geospatial search within Apache Solr and its interaction with the Solarium PHP library. Solr, a powerful search service, offers features like faceted search and result highlighting. Solarium simplifies Solr integration in PHP applications. This article focuses on geospatial search capabilities, crucial for location-based queries in sectors like real estate and logistics.
Key Concepts:
schema.xml
, including defining a location
field type with latitude and longitude sub-fields.Geospatial Search Explained:
Geospatial search addresses the need to search for geographically located items. Finding "Italian restaurants" is helpful, but specifying "Italian restaurants within 5 miles" adds crucial context. This involves using latitude and longitude coordinates to define points on the globe.
The example application uses three methods to determine the search origin: HTML5 geolocation (browser-based location), a predefined list of cities, and manual latitude/longitude input.
Schema Setup:
Enabling geospatial capabilities in Solr requires modifications to schema.xml
. A location
field type is added using the solr.LatLonType
class, with latitude and longitude as sub-fields (tdouble
type). A corresponding field (e.g., latlon
) is defined to store the location data, and a dynamic field handles the latitude and longitude components. An example schema.xml
is included in the sample application's repository.
Assigning Location Data:
Location data is assigned in the format {latitude},{longitude}
. Using Solarium, this is achieved with: $doc->latlon = doubleval($latitude) . "," . doubleval($longitude);
Geospatial Queries with Solarium:
Solarium's helpers simplify query creation. A distance filter is added using $helper->geofilt()
, specifying the field, latitude, longitude, and distance. The geodist()
helper calculates distances, and aliases (e.g., _distance_
) help retrieve distances in results. Sorting by distance is done using $query->setQuery('{!func}' . $helper->geodist(...))
and $query->addSort('score', 'asc');
.
Example Application:
The provided Github repository (link omitted for brevity) contains a Silex and Twig-based application demonstrating geospatial search for nearby airports using data from OpenFlights.org. The data population script is also included. The application features a search form with location input options (geolocation, city selection, manual input) and distance selection. The search results display airport names, cities, countries, and distances.
Conclusion:
This article provides a comprehensive guide to implementing geospatial search using Solr and Solarium. The example application showcases practical implementation and demonstrates how to combine text-based and geospatial searches for more refined results.
Frequently Asked Questions (FAQ): (The original FAQ section is retained in its entirety as it provides valuable supplementary information.)
What is the significance of geospatial search in Solr and Solarium?
How does Solr handle geospatial data?
How can I perform a geospatial search in Solarium?
What is the difference between “geofilt” and “bbox” filters in Solarium?
How can I sort documents by distance in Solr?
Can I perform geospatial search on multiple fields in Solr?
How can I improve the performance of geospatial search in Solr?
What is the role of the “SpatialRecursivePrefixTreeFieldType” in Solr?
How does Solr handle multi-valued location fields?
Can I use geospatial search with other types of search in Solr?
The answers to these FAQs are included in the original input and are not repeated here for brevity.
The above is the detailed content of Geospatial Search with SOLR and Solarium. For more information, please follow other related articles on the PHP Chinese website!