Created
February 2, 2014 11:17
-
-
Save stoolrossa/8766787 to your computer and use it in GitHub Desktop.
Node.js + Express + Leaflet + PostGIS Controller
This file contains hidden or 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
/** | |
* Module dependencies. | |
*/ | |
var express = require('express'); | |
var pg = require('pg'); | |
var app = module.exports = express.createServer(); | |
// Configuration | |
app.configure(function(){ | |
app.set('views', __dirname + '/views'); | |
app.set('view engine', 'haml'); | |
app.use(express.bodyParser()); | |
app.use(express.methodOverride()); | |
app.use(app.router); | |
app.use(express.static(__dirname + '/public')); | |
}); | |
app.configure('development', function(){ | |
app.use(express.errorHandler({ dumpExceptions: true, showStack: true })); | |
}); | |
app.configure('production', function(){ | |
app.use(express.errorHandler()); | |
}); | |
app.set('view options', { | |
layout: false | |
}); | |
// Use hamljs for HAML views | |
app.register('.haml', require('hamljs')); | |
// Routes | |
app.get('/', function(req, res){ | |
res.render('index', { | |
}); | |
}); | |
app.post('/RetrieveCadastre', function(req, res){ | |
RetrieveCadastre(req.body, res); | |
}); | |
// RetrieveCadastre | |
function RetrieveCadastre(bounds, res){ | |
var connString = 'tcp://spatial:spatial@localhost/Spatial'; | |
pg.connect(connString, function(err, client) { | |
var sql = 'select ST_AsGeoJSON(geog) as shape '; | |
sql = sql + 'from spatial.state_1 '; | |
sql = sql + 'where geog && ST_GeogFromText(\'SRID=4326;POLYGON(($1 $2,$3 $4,$5 $6,$7 $8,$9 $10))\') '; | |
sql = sql + 'and ST_Intersects(geog, ST_GeogFromText(\'SRID=4326;POLYGON(($11 $12,$13 $14,$15 $16,$17 $18,$19 $20))\'));'; | |
var vals = [bounds._southWest.lng, bounds._southWest.lat, bounds._northEast.lng, bounds._southWest.lat, bounds._northEast.lng, bounds._northEast.lat, bounds._southWest.lng, bounds._northEast.lat, bounds._southWest.lng, bounds._southWest.lat]; | |
var vals = vals.concat(vals); | |
client.query(sql, vals, function(err, result) { | |
var featureCollection = new FeatureCollection(); | |
for (i = 0; i < result.rows.length; i++) | |
{ | |
featureCollection.features[i] = JSON.parse(result.rows[i].shape); | |
} | |
res.send(featureCollection); | |
}); | |
}); | |
} | |
// GeoJSON Feature Collection | |
function FeatureCollection(){ | |
this.type = 'FeatureCollection'; | |
this.features = new Array(); | |
} | |
app.listen(3000); | |
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment