Indexing latitude/longitude field

Created on 2 September 2021, over 3 years ago
Updated 6 April 2023, almost 2 years ago

Problem/Motivation

I'd like to be able to index data from a Geofield β†’ field in a format/syntax that can be recognized by Algolia as documented here. Has anyone done something like this yet?

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

✨ Feature request
Status

Needs review

Version

3.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States maskedjellybean Portland, OR

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡¬πŸ‡§United Kingdom simonmc

    Thanks! Your patch is working for me also.

  • πŸ‡ΊπŸ‡¦Ukraine Anna D

    Patch #4 was added to the project more than a year ago and has been working well ever since. Thank you for your work.

  • πŸ‡ΊπŸ‡¦Ukraine Anna D

    1. We should ensure that $value is not empty and string as it is required by strpos() and explode().

      // Ensure the value is a non-empty string.
      if (empty($value) || !is_string($value)) {
        throw new \InvalidArgumentException('The provided value must be a non-empty string.');
      }
    

    2. Variable $lat_lon_split in empty() always exists and is not falsy. (PHPStan error)

    if (!empty($lat_lon_split) && isset($lat_lon_split[0]) && isset($lat_lon_split[1]))
    

    could be simplified with:

    if (count($lat_lon_split) === 2) 
    

    3. Uppercase for boolean: false -> FALSE
    4. I'd change plugin id: geolocation_algolia to specify that this is Geo location.

  • πŸ‡§πŸ‡ͺBelgium dieterholvoet Brussels
  • πŸ‡§πŸ‡ͺBelgium dieterholvoet Brussels
  • Status changed to Needs work 30 days ago
  • Pipeline finished with Success
    30 days ago
    Total: 141s
    #442606
  • πŸ‡ΊπŸ‡¦Ukraine Anna D

    Rerolled patch #4 to be applicable to 3.0.x. Also renamed data type from location_algolia to geolocation_algolia.

    Phpstan returns
    Line src/Plugin/search_api/data_type/GeolocationAlgoliaDataType.php
    ------ ----------------------------------------------------------------------------------
    17 Class
    Drupal\search_api_algolia\Plugin\search_api\data_type\GeolocationAlgoliaDataType
    extends unknown class Drupal\search_api\DataType\DataTypePluginBase.
    πŸ’‘ Learn more at https://phpstan.org/user-guide/discovering-symbols

    That might be fixed with adding drupal/search_api to the composer.json.

  • Pipeline finished with Success
    30 days ago
    Total: 138s
    #442627
Production build 0.71.5 2024