Skip to content

Instantly share code, notes, and snippets.

I'm trying to find geospatial data, specifically terrain/topography/landcover like urban, forest, desert, tundra, ocean, river, etc...
The first question I had asked on this site (see below) had an answer which stated that I'd need to interrogate the layers in order to generate the dataset I'd like to get.
I have some idea of what the user is talking about now, but it implies that in order for me to get this data, I will need to learn some sort of GIS application, load up some raster/vector data, and then get the information on a per lat/long/elevation basis.
Some related questions I've asked on stack exchange while trying to figure out how to get this data include http://gis.stackexchange.com/questions/200767/geographic-characteristics-by-lat-long and http://opendata.stackexchange.com/questions/9145/geospatial-data-at-a-particular-lat-long. I've also skimmed through the sites listed here: http://opendata.stackexchange.com/questions/7303/collection-of-large-geospatial-datasets and it seems to me that mos
@tonyeung
tonyeung / app.ts
Last active February 10, 2016 22:16 — forked from scottmcarthur/app.ts
How to use AngularJS ng.resource.IResource with TypeScript.
/// <reference path="angular.d.ts" />
/// <reference path="angular-resource.d.ts" />
interface IEmployee extends ng.resource.IResource<IEmployee>
{
id: number;
firstName : string;
lastName : string;
}
interface IEmployeeResource extends ng.resource.IResourceClass<IEmployee>
@tonyeung
tonyeung / gist:5513769
Created May 3, 2013 20:27
Error Sending AccessTokenAuthorizationCodeRequestC request.
2013-05-03 15:14:37,625 (GMT-5) [7] INFO DotNetOpenAuth.Messaging.Channel - Scanning incoming request for messages: http://localhost:2257/Home/About
2013-05-03 15:14:37,637 (GMT-5) [7] DEBUG DotNetOpenAuth.Messaging.Channel - Incoming HTTP request: GET http://localhost:2257/Home/About
2013-05-03 15:14:37,648 (GMT-5) [7] DEBUG DotNetOpenAuth.Messaging - The following required parameters were missing from the DotNetOpenAuth.OAuth2.Messages.EndUserAuthorizationSuccessAuthCodeResponse message: {code,
}
2013-05-03 15:14:37,649 (GMT-5) [7] DEBUG DotNetOpenAuth.Messaging - The following required parameters were missing from the DotNetOpenAuth.OAuth2.Messages.EndUserAuthorizationSuccessAccessTokenResponse message: {token_type,
access_token,
}
2013-05-03 15:14:37,649 (GMT-5) [7] DEBUG DotNetOpenAuth.Messaging - The following required parameters were missing from the DotNetOpenAuth.OAuth2.Messages.EndUserAuthorizationFailedResponse message: {error,
}
2013-05-03 15:14:37,658 (GMT-5) [7] DEBUG DotNetOpenAuth.Messaging.C