I was thinking of a feature I'd *really* like to see (and it'd be relatively easy to code) in these software tools.
Given that they produce maps, and Universe produces (IMO) quite beautiful ones, I'd love to see them create an image map file (or at least a vertex list) to go with them.
Here is an example:
</font><blockquote>code:</font><hr /><pre style="font-size:x-small; font-family: monospace;"><html>
<head>
<title>
Image Map Test
</title>
</head>
<body>
<h1>Spinward Marches Sector</h1>
<p>
<map name="TestMap">
<area href="sm_1511_tionale.html" shape="polygon" coords="601,480, 630,480, 643,504, 630,528, 601,528, 589,504, 601,480">
<area href="sm_1711_extolay.html" shape="polygon" coords="686,480, 714,480, 727,504, 714,528, 686,528, 674,504, 686,480">
<area href="sm_1910_regina.html" shape="polygon" coords="770,432, 799,432, 811,456, 799,480, 770,480, 758,456, 770,432">
</map>
<img border="0" src="sm.gif" usemap="#TestMap">
</p>
</body>
</html> </pre>[/QUOTE]This is only partial, and relies upon the particular map image in question.
What does this do? It essentially makes each hex a 'hotspot' on the image. What's it for? If you ever want to post your sector designs or detail your campaign area on the web (even if it is only an intranet for your players), this is phenominally useful - the ability to have a map hex link to another set of html pages is huge.
What's the stopper? Well, doing it manually, as I have done, means using an image editor to locate the six vertices of the system hex. ARGH! (If you try it for a sector, you'll see why ARGH!)
Yet each and evey utility that draws these must locate the points in order to draw the GIF or JPEG in the first place! If they'd then export the vertex list (or better yet, be unlazy enough to spend the extra few lines on making a working image map), that would be a huge asset.
Note the format I took above for naming the subpages (if you wanted to generate skeletal subpages for a sector, that would be easy too...) - "sector name" underscore "hex location" underscore "system name". (Again, all things the software knows).
Is something like this feasible? It'd be a great asset for web-ifying one's universe development.