I'm trying to plot MGRS lines over a map in an overlay using OpenLayers (JavaScript). Where I'm really having problems is identifying the strange squares (non-100kmx100km grids). Does anyone know where I might find an algorithm for plotting these?

In particular, the information I have or can find is: Convert a Lat/Long to MGRS Convert a full MGRS string (i.e., 17SLA123678 but not 17SLA) to Lat/Lon Convert Lat/Lon to screen pixel and vice-versa

Thanks!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I don't know the MGRS system, but the Proj4JS library may be useful. This is used to transform between coordinate systems, so you can set it up to convert from a coordsys to pixels, or more commonly from one coordsys to another.

it is open source, and broadly based on the well known proj.4 library, and interfaces with OpenLayers. Actually, OpenLayers uses proj4js to transform between different coordinate systems.

link|improve this answer
feedback

You may find http://dhost.info/usngweb/ quite useful (enable the Zones checkbox)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.