qwikgeo-api icon indicating copy to clipboard operation
qwikgeo-api copied to clipboard

QwikGeo is a enterprise scale api for a GIS portal.

Results 12 qwikgeo-api issues
Sort by recently updated
recently updated
newest added

Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.3 to 41.0.6. Changelog Sourced from cryptography's changelog. 41.0.6 - 2023-11-27 * Fixed a null-pointer-dereference and segfault that could occur when loading certificates from a PKCS#7 bundle....

dependencies

Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.8.5 to 3.9.0. Release notes Sourced from aiohttp's releases. 3.9.0 Features Introduced AppKey for static typing support of Application storage. See https://docs.aiohttp.org/en/stable/web_advanced.html#application-s-config (#5864) Added a graceful shutdown...

dependencies

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.12 to 1.26.18. Release notes Sourced from urllib3's releases. 1.26.18 Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other"...

dependencies

In env.sample and in the readme.md change JWT_TOKEN_EXPIRE_IN_**MIUNTES**=xxx to JWT_TOKEN_EXPIRE_IN_**MINUTES**=xxx

## Description Allow user to perform analysis to find nearest point for each polygon or vice versa Example: ```sql SELECT points.name, polygons.name, points.dist*100 as distance_in_kilometers, polygons.geom FROM counties as polygons...

enhancement

## Description Allow user to perform spatial join analysis Example: ```sql WITH join_points AS( SELECT points.gid, polygons.name, polygons.state_name, polygons.population FROM starbucks AS points JOIN counties AS polygons ON ST_INTERSECTS(polygons.geom, points.geom)...

enhancement

## Description Currently if importing a service from ArcGIS the timestamp will stay in epoch time `1672631874000`. When converting data into geojson format, convert these columns to human readable timestamps...

enhancement

## Description Allows users to import data via a OGC API - Features collection using https://pypi.org/project/ogcFeatureApiCollectionDownloader/ ## Endpoint `api/v1/imports/ogc_api_features_collection`

enhancement

## Description Allow users to import a dataset via a WFS service. ## Endpoint `api/v1/imports/wfs_service`

enhancement

## Description Currently the min and max connections are hardcoded. Allow user to pass in settings via env file for their database, have those loaded into the `config.py` file, and...

enhancement