Welcome to GNIKville...

Wed, 14 Apr 2004

Terraserver: Tiles Vs OpenGIS Web Map Server

Starting with TerraServer tile:

  • X=204
  • Y=2932
  • Z=19N
  • S=13 (8m)
Using this python snippet:
TILE_PX = 200
def terra2utm(x, y, z, s):
    x = x * TILE_PX * math.pow(2, s-10)
    y = y * TILE_PX * math.pow(2, s-10)
    return x, y
The extent of the tile can be computed:
uL = terra2utm(204, 2933, "19N", 13)
lR = terra2utm(205, 2932, "19N", 13)
Which gives:
  • uL = 326400, 4692800
  • lR = 328000, 4691200
That then converts to (in WGS-84):
  • uL = 42.36810, -71.10832
  • lR = 42.35405, -71.08843
Now we can compare the tile to the WMS version:
TileWMS

Close, but a bit distorted. Bringing the WMS image up in the Terra-Map Server web interface shows that we ended up with the wrong resolution. (Width Resolution (m/px): 8.3850 Height Resolution (m/px): 7.5952)

Where did I go wrong?

Sat, 10 Apr 2004

New Features

Some new features to the GNIKville mapper:

  • New theme: Tiger street level maps (try it)
  • Overview map, also using the Tiger service.

Sun, 14 Mar 2004

Mapping at GNIKville

So last night I created a new little mapping service. It uses the TerraServer for the images and is inspired by, and inferior to, the ACME Mapper. But, next I'm going to add support for drawing GPS trails and linking to GPS-tagged digital pictures. Then it might just be something...

Update: I've added photos! Check out our walk into Boston. I've got code to draw trails as well, but right now gnik.com doesn't have the Python interface to the GD graphics library...

Sun, 25 Jan 2004

TerraServer


Maporama.com

  • Main page: Maporama.com
  • Coverate: World
  • Notes:

    World wide street/city look ups. Gives lat/lon for current location.


Geospatial Engine

  • Main page: Geospatial Engine
  • Info: NIMA Geospatial Engine Help
  • Coverate: World
  • Notes:

    I have only begun to figure this thing out. A couple of cool features I haven't found elsewhere: Gives the extent of the current map and let's you draw Area of Interest (AOI) boxes.


ACME Mapper


MapQuest

  • Main page: MapQuest: Maps: Lat / Long
  • Coverate: World
  • Notes:

    Can only (have to) mark the center with a red star, only one size map. (I think they used to have a lot of configuration options, but those seem to be gone now.)


TIGER Map Server

  • Main page: TIGER Map Server
  • Info: Mapsurfer Feedback and FAQs
  • Coverate: USA
  • Notes:

    Use the "Marker URL" to reference a file of locations to be marked on the map. Format is one line for each location, formatted:

    <longitude deg>,<latitude deg>:<marker>:<caption>
    The <marker>'s look like blupin, green5, etc...


 







Last modified: Fri, Mar 20 02:18:23 2009 GMT