Skip to content

Instantly share code, notes, and snippets.

@yetzt
Created October 3, 2013 12:35
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yetzt/b18528b6063660d718f3 to your computer and use it in GitHub Desktop.
Save yetzt/b18528b6063660d718f3 to your computer and use it in GitHub Desktop.
soldner to wgs84 for soldner coordinates 26197,19294
#!/usr/bin/env node
var proj = require("proj4");
proj.defs("EPSG:3068", "+proj=cass +lat_0=52.41864827777778 +lon_0=13.62720366666667 +x_0=40000 +y_0=10000 +ellps=bessel +datum=potsdam +units=m +no_defs");
console.log(proj("EPSG:3068", "WGS84", [26197,19294]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment