All Projects → devork → twkb

devork / twkb

Licence: Apache-2.0 license
A small GO parser for the TWKB format

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to twkb

school-navigator
Navigate the Durham, NC public school system
Stars: ✭ 25 (+47.06%)
Mutual labels:  gis, postgis
postile
Project migrated to: https://gitlab.com/Oslandia/postile
Stars: ✭ 67 (+294.12%)
Mutual labels:  gis, postgis
cloud-tileserver
Serve mapbox vectortiles via AWS stack
Stars: ✭ 48 (+182.35%)
Mutual labels:  gis, postgis
mergin-db-sync
A tool for two-way synchronization between Mergin and a PostGIS database
Stars: ✭ 29 (+70.59%)
Mutual labels:  gis, postgis
Geography for hackers
Geography for Hackers - Teaching all how to hack geography, use GIS, and think spatially
Stars: ✭ 25 (+47.06%)
Mutual labels:  gis, postgis
Geotrek-admin
Paths management for National Parks and Tourism organizations
Stars: ✭ 103 (+505.88%)
Mutual labels:  gis, postgis
gismanager
Publish Your GIS Data(Vector Data) to PostGIS and Geoserver
Stars: ✭ 45 (+164.71%)
Mutual labels:  gis, postgis
Spatial
Neo4j Spatial is a library of utilities for Neo4j that faciliates the enabling of spatial operations on data. In particular you can add spatial indexes to already located data, and perform spatial operations on the data like searching for data within specified regions or within a specified distance of a point of interest. In addition classes are provided to expose the data to geotools and thereby to geotools enabled applications like geoserver and uDig.
Stars: ✭ 695 (+3988.24%)
Mutual labels:  gis, postgis
Postgis
PostGIS spatial database extension to PostgreSQL [mirror]
Stars: ✭ 925 (+5341.18%)
Mutual labels:  gis, postgis
Tegola
Tegola is a Mapbox Vector Tile server written in Go
Stars: ✭ 754 (+4335.29%)
Mutual labels:  gis, postgis
QWAT
TEKSI Water module (project QWAT) - QGIS project
Stars: ✭ 52 (+205.88%)
Mutual labels:  gis, postgis
Geotools
Official GeoTools repository
Stars: ✭ 1,109 (+6423.53%)
Mutual labels:  gis, postgis
lopocs
Migrated to: https://gitlab.com/Oslandia/lopocs
Stars: ✭ 78 (+358.82%)
Mutual labels:  gis, postgis
aruco-geobits
geobits: ArUco Ground Control Point Targets and Detection for Aerial Imagery (UAV/MAV).
Stars: ✭ 32 (+88.24%)
Mutual labels:  gis
sentinel-util
A CLI for downloading, processing, and making a mosaic from Sentinel-1, -2 and -3 data
Stars: ✭ 22 (+29.41%)
Mutual labels:  gis
geojson-to-wfs-t-2
A lightweight javascript module to format WFS-T-2 statements from GeoJSON features
Stars: ✭ 21 (+23.53%)
Mutual labels:  gis
es6-template-regex
Regular expression for matching es6 template delimiters in a string.
Stars: ✭ 15 (-11.76%)
Mutual labels:  parse
mapalgebra
Efficient, polymorphic Map Algebra in Haskell.
Stars: ✭ 34 (+100%)
Mutual labels:  gis
conrex
An Elixir implementation of the CONREC algorithm for topographic or isochrone maps.
Stars: ✭ 52 (+205.88%)
Mutual labels:  gis
importer-exporter
3D City Database client for high-performance import and export of 3D city model data
Stars: ✭ 104 (+511.76%)
Mutual labels:  gis

TWKB Go Library

Build Status

A small GO parser for the TWKB specification

Usage

go get github.com/devork/twkb

data, _ := hex.DecodeString("01000204")
geom, err := Decode(bytes.NewReader(data))

if err != nil {
		t.Fatalf("Failed to decode point geometry: err = %s", err)
}

// Do something magical with the geometry returned

The library is usable, but could do with some optimisations.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].