Is there a way to fix the icosahedral export to support Traveller?

The current export does not match the traveller standard or even most of the cosmographer world templates.
I have been exporting them, editing with gimp and then bringing them into CC3+ but this leads to human error issues.
I don't know if FT3 is still in development but it would be great to use it for Traveller.
Tagged:
Comments
I am not to familiar with the details of Traveller myself, but have you tried saving it using File -> Export World -> Cosmographer template? That should save both an image and a .fcw file, which as far as I understand it, is in Traveller format.
The issue is, there are two different styles for Traveller world maps. One that has the world split into 20 triangles, while the other style splits one of the triangles in half and has it on each side of the export.
You can cut the half triangle from the left side of the image and paste it onto the right side of the image, but you need to do some image repair due to the way the edges of the png export is slightly alpha blended (so the line where the pasted image connects to the right hand side, is shows some transparency so that needs to be repaired)
If you have cosmographer, you can open the world map templates and you will see that there are two different versions of the worlds ie two size 7 world templates, two size 8 templates etc.,
It should be possible to edit the projection.txt file in your FT data directory (default location as installed on my machine is C:\ProgramData\Profantasy\FT352) to create a composite projection to have the desired behavior, but it will be very slow to draw. The "6-way Interrupted Pointy" or "6-way Interrupted Sinusoidal" examples are probably good starting points, but you'll need to calculate out the segments that you need.
The existing icosahedral output is an image-space bit of ugliness that generates something plausible, but not something "correct". Being an image-space trick is why it's not available as a projection in the main user interface because an image is generated and then undergoes a set of piecewise linear warps to get the final output.
Is there a good set of documentation I should read to give me the step by step of how the file is setup/calculations are done?
The top of the projection.txt file has about all of the documentation available and the interrupted examples should get you an idea of what needs to happen. The hard part is the exclusion areas that need to be defined, but more or less what you need to do is identify each of the vertices of the triangles involved in the projection and plug those in for each segment. The "Pointy" projection was the first step toward getting an equivalent to the screen-space icosahedral operation, but I never got the full projection finished for delivery.
Interesting, the projection I will try to make, is 19 equilateral triangles, plus two right angle triangles representing a equilateral triangle split in half. So 21 sections.
I wish I had the settings that the existing icosahedral export uses. I will try to figure the system out.
Are you the developer or are you just really experienced with the program?
Yes, I wrote ft3+.
Is it possible to get the numbers you used for the export? I would like to match your work as closely as possible.
Also, is it possible to sweet talk you into supporting the ability to pass a script name that should be run?
I love the functionality of FT but I need it from the command line, unfortunately the options aren't available from the existing command line but are available from the scripts. Passing the script name would solve that problem.
I have already pulled all the world data from the traveller map and I am hoping to do up library data entries for all the worlds with images generated by FT3
I don't understand what you mean by "Is it possible to get the numbers you used for the export?"
Implementing the script from command line feature is a small task, but spinning a new FT release is not a small task. I don't know when the next significant development push with FT will be, unfortunately. It's likely going to need to wait until after CC4 because that's where my effort is going at the moment.
In the export section, there is a icosahedral export option. That is the version I am trying to copy, but, I need to make one small adjustment. If I had the values you used in calculating the export, I could use them to make a projection.
As for a new version, no rush, but, if you need a beta tester, I will gladly help.
If you are looking for other suggestions, a 64 bit version would also be helpful to use more memory.
Fractal Terrains 3+ is a 64-bit version.
See if these construction lines help any:
In projection.txt, there is a projection called "6-way Interrupted Pointy" (incorrect name) that has five points above and below an empty band. That might be a good starting point for a true icosahedral projection if you're willing to go that way using the above diagram.
Here's the code for the existing image-space icosahedral-like thing:
On the construction line diagram front:
Each triangle should be an equilateral one (all sides the same length). That means that each of the right two triangles that make up a face are 30-60-90 triangles, meaning that the side are of length 1, 2 (hypotenuse), and sqrt(3)=1.732050807568877. The screen-space location of each triangle's edges can be read from the chart.
You are an absolute champion!!!