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
// requirements | |
var carto = require('cartodb'), | |
express = require('express'), | |
secret = require('./secret.js'); | |
// initialize express | |
var app = express(); | |
// a friendly little route | |
app.get('/', function(req, res) { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
I was looking for a way to simplify the following process:
- Have a CSV projected in EPSG:26919
- Convert it to a GeoJSON
- Reproject that GeoJSON to EPSG:4326
It's a very common pattern, and I don't like retyping it. These are the 'solutions' to that problem.
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
long | lat | |
---|---|---|
594162 | 4932451 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.