# This file contains metadata for your plugin.

# This file should be included when you package your plugin.# Mandatory items:

[general]
name=Geohash Expressions Plugin
qgisMinimumVersion=3.0
qgisMaximumVersion=4.99
description=This plugin adds expression functions to work with geohash in the field calculator
version=0.3
author=Valentin Buira
email=valentin.buira@gmail.com

about=
    This plugin adds expression functions to work with geohash in the field calculator:

    - geohash_from_geom | geohash -> Calculate the GeoHash from a geometry 
    - geohash_yx -> Calculate the GeoHash from y, x (latitude, longitude) coordinates. 
    - geom_from_geohash ->Return a geometry from a GeoHash string. The geometry will be a polygon representing the GeoHash bounds. 
    - point_from_geohash -> Return a point geometry from a GeoHash string. The point represents the center point of the GeoHash.
    - geohash_neighbors -> Return an array of all the neighbors from a GeoHash string
    - geohash_neighbors_map -> Return a map of all the neighbors from a GeoHash string
    - geohash_(north|northeast|east|southeast|south|southwest|west|northwest) -> Return the specified cardinal point neighbor of a geohash string.

    If you want to support my work, you can donate to me : https://ko-fi.com/valentinbuira

tracker=https://github.com/ValentinBuira/qgis-geohash-expressions-plugin/issues
repository=https://github.com/ValentinBuira/qgis-geohash-expressions-plugin
# End of mandatory metadata

# Recommended items:

hasProcessingProvider=no
# Uncomment the following line and add your changelog:
changelog=
  Add expression functions to deal with geohash neighbors:
    * geohash_neighbors
    * geohash_neighbors_map
    * geohash_(north|northeast|east|southeast|south|southwest|west|northwest)
    * Add a more explicit synonym for the geohash function : geohash_from_geom
  fix QGIS 4 compatibility
  <p>0.2
  - Make plugin compatible with QGIS 4.x
  <p>0.1
  - Initial release

# Tags are comma separated with spaces allowed
tags=python,geohash,expression, field-calculator

homepage=https://github.com/ValentinBuira/qgis-geohash-expressions-plugin
category=Plugins
icon=icon.png
# experimental flag
experimental=False

# deprecated flag (applies to the whole plugin, not just a single version)
deprecated=False

supportsQt6=yes

# Since QGIS 3.8, a comma separated list of plugins to be installed
# (or upgraded) can be specified.
# Check the documentation for more information.
# plugin_dependencies=

Category of the plugin: Raster, Vector, Database or Web
# category=

# If the plugin can run on QGIS Server.
server=False

