Categorygithub.com/buckhx/gofence
modulepackage
0.0.4
Repository: https://github.com/buckhx/gofence.git
Documentation: pkg.go.dev

# README

gofence

Build Status

Tool for geofencing with different algorithms for profiling.

Installation

// omitting the dot installs to /usr/local/bin
curl -sSL https://raw.githubusercontent.com/buckhx/gofence/master/scripts/install.py | python - .

Usage

Invoking the fence cli will start an HTTP server and read geojson files from a directory into memory for searching. The features in the geojson will be searchable at different endpoints for each file. The endpoints will use a url-safe slug of the file name as their identifiers.

NAME:
   fence - Fence geojson point features

USAGE:
   cli [global options] command [command options] path/to/geojson/dir
   
VERSION:
   0.0.0
   
COMMANDS:
   help, h	Shows a list of commands or help for one command
   
GLOBAL OPTIONS:
   --fence "rtree"	Type of fence to use rtree|brute|qtree|qrtree|city|city-bbox|bbox
   --zoom, -z "18"	Some fences require a zoom level
   --port, -p "8080"	Port to bind to
   --help, -h		show help
   --version, -v	print the version

The city algorithms are special cases and both require NYC_BOROS_PATH envvar to be set to a geojson file. Don't use either of them for anything besides benchmarking. The boros and tracts data can be found on NYC Open Data Maps

HTTP Methods

GET /fence

A list of the available fence names

POST /fence/:name/add

Adds a geojon feature from the post body to the fence at. This feature will not be saved to the server and will be gone if the server is restarted. Features in a fence have no notion of uniqueness, so if you add the same feature twice, the searchs will return both.

POST /fence/:name/search

Search a fence for the query in the post body. This query must be a geojson feature with a point geometry. The properties of the matched features in the fence will be returned as a list.

GET /fence/:name/search?lat=<LAT>&lon=<LON>

Convenience method for search with GET parameters. Both lat and lon and required and must be numbers. Any other parameters in the query string will be treated as properties of the query in the result.

Micro Benchmarks

BenchmarkOperationsTime (ns/op)Bytes (b/op)Mallocs (allocs/op)
BenchmarkBrute-45000251641191
BenchmarkCity-43000039913401
BenchmarkBbox-45000037085111
BenchmarkCityBbox-42000009484131
BenchmarkQfence-4300000395939918
BenchmarkRfence-4100000022901749

chart link broken

Benchmarking requires NYC_TRACTS_PATH envvar to be set. Benchmarks are ran by checking which census tract a point is in code here

HTTP profiling is done via https://golang.org/pkg/net/http/pprof/

See https://github.com/buckhx/gofence-profiling for more in depth benmarking.

# Packages

+build ignore An example stdin implementation.