Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukasmartinelli/postgis-editor
An accessible PostGIS query editor and visualizer.
https://github.com/lukasmartinelli/postgis-editor
Last synced: 12 days ago
JSON representation
An accessible PostGIS query editor and visualizer.
- Host: GitHub
- URL: https://github.com/lukasmartinelli/postgis-editor
- Owner: lukasmartinelli
- License: mit
- Archived: true
- Created: 2016-04-09T15:16:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-03T14:06:02.000Z (over 6 years ago)
- Last Synced: 2024-08-01T02:28:03.093Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 7.13 MB
- Stars: 193
- Watchers: 17
- Forks: 29
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - lukasmartinelli/postgis-editor - An accessible PostGIS query editor and visualizer. (others)
README
# PostGIS Query Editor [![Linux Build Status](https://travis-ci.org/lukasmartinelli/postgis-editor.svg?branch=master)](https://travis-ci.org/lukasmartinelli/postgis-editor) [![Windows Build status](https://ci.appveyor.com/api/projects/status/a90g1nkv2a792w98?svg=true)](https://ci.appveyor.com/project/lukasmartinelli/postgis-editor) [![MIT license](https://img.shields.io/badge/license-MIT-blue.svg)](https://tldrlegal.com/license/mit-license)
> :warning: This repository is no longer maintained by Lukas Martinelli.
A very accessible **PostGIS query editor** and visualizer.
Getting started with [PostGIS](http://postgis.net/) is harder than it should be. We spent much time in **psql** and wished to visualize
our queries quickly without big complicated tools.**Features:**
- Just type your query - we try to figure out the geometry/projection
- Beautiful MapboxGL based visualization
- Click on any feature for full information
- Table view to jump to important features
- Display 100k objects with ease
- Cross platform support for Windows, OSX and Linux![Demo video](demo.gif)
## Install
[**Download the app for your platform from the releases page**](https://github.com/lukasmartinelli/postgis-editor/releases/latest).
Now unzip the release and either execute **postgis-editor.app** for OSX, **postgis-editor.exe** for Windows or **postgis-editor** for Linux.
If this project gains traction we can start building installers for Windows and create packages for different Linux distros. You can also clone the repo
and run **postgis-editor** directly with npm.## Introduction
Video introduction into using PostGIS editor with Natural Earth data.
**https://www.youtube.com/watch?v=NSIUAca_DEU**
[![Using PostGIS Editor to explore Natural Earth ](https://img.youtube.com/vi/NSIUAca_DEU/0.jpg)](https://www.youtube.com/watch?v=NSIUAca_DEU)
## Develop
The PostGIS query editor is based on Electron using React and MapboxGL.
Install node dependencies and generate `dist`.```bash
npm install
npm run build
```Run Electron app.
```bash
npm start
```Create releases.
```bash
npm run package-all
```The cross platform artifacts on the release page are automatically build by either Travis (for OSX and Linux) and by AppVeyor (for Windows).