Skip to content

Instantly share code, notes, and snippets.

@bradbrowne
Last active August 29, 2015 14:25
Show Gist options
  • Save bradbrowne/42bc7dbc053c15e5040e to your computer and use it in GitHub Desktop.
Save bradbrowne/42bc7dbc053c15e5040e to your computer and use it in GitHub Desktop.
List<int> GetEpsgFromProj4(string proj4)
{
var pattern = new Regex("<(\\d+)>");
return EpsgLines
.Where(x => x.Contains(proj4))
.Select(text => int.Parse(pattern.Match(text).Groups[1].Value)).ToList();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment