I'm building an application (C#, .NET framework) for boaters to conduct a wide range of navigation tasks. I need it to be able to read in data from a variety of map formats and display the underlying map data in a number of different projections (equirectangular, Mercator, gnomic, etc). I've structured the application using the following classes:
ChartTabPage: a class that inherits System.Windows.Forms.TabPage. It will have as fields a XXXChart and a Viewport.
XXXChart: a class that reads in chart data in the given format (XXX represents the format...World Vector Shoreline, NOAA's BSB format, Electronic Navigation Chart (ENC), etc). In general, the given charts have their data represented in latitude/longitude format. XXXChart objects have, among other fields, the XXXProjection that the chart is to be displayed in. The XXXChart objects use their XXXProjection field to translate the lat/lon into x/y coordinates and vice versa.
XXXProjection: a class that contains the applicable math for whatever projection (equirectangular, Mercator, gnomic, etc) the user is viewing the chart in. Each projection defines the math that translates latitude/longitude values into cartesian (x/y) coordinates. The simplest projection is equirectangular, which maps lat/lon to x/y as follows: x = (lon-(central meridian)) * cos(standard parallel); y = latitude. The Mercator projection maps as follows: x = (radius of earth) * (lon - (central meridian)); y = (radius of earth) * ln(tan(lat) + sec(lat)). Each projection has a corresponding mathematical formula to go from lat/lon to x/y and vice versa.
Viewport: a class that represents, for a ChartTabPage, the "window" onto the XXXChart's cartesian representation of the underlying chart data. Imagine a chart that contains the whole world. The ChartTabPage may be displaying North America, which would be a window of sorts onto the whole world. The Viewport can specify a rotation (i.e., "up" on the screen could correspond to northeast or whatever on the map); a center (i.e. the Viewport could be centered on Chicago); and a size (i.e. the Viewport could encompass North America).
Whew! All that explanation to get to my question: what's the best way to translate the cartesian coordinates that XXXCharts generate by translating their lat/lon values to screen coordinates in accordance with what the Viewport represents? I've searched transforms, and affine transforms seem to be the right answer, but frankly I'm getting lost in the math. Can someone help me understand the best way to use affine transformations to get from a cartesian representation to a rotated, scaled, and translated Viewport? Thanks.
John