- Stores geometries
- multi-dimensional
- R-Tree indexing (Query planner uses it?)
- projections
- Supports Datums ?
- Vector and raster support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = require('url'); | |
var http = require('http'); | |
var stream = require('stream');; | |
http.createServer(function(req, res) { | |
res.writeHead(200, { | |
'Content-Type' : 'text/plain' | |
}); |