Results 1 to 10 of 166

Thread: unexplored Lands

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #11

    Default

    For your amusement, here's what happened when I used MMPS (under Cygwin) to project the south pole in gnomonic (where one could make appropriate changes, but I didn't)

    Click image for larger version. 

Name:	south_pole.jpg 
Views:	52 
Size:	400.3 KB 
ID:	98789

    and here it is reprojected to equirectangular. One could then use appropriate tools to merge it with the original artwork, although MMPS could do that for you, too.

    Click image for larger version. 

Name:	eq_south_pole.jpg 
Views:	72 
Size:	405.8 KB 
ID:	98790

    Here's the script that I used.

    Code:
    #! /usr/bin/sh -x
    #
    # project equirectangular to gnomonic
    #
    convert detail_colored.jpg tmp.ppm
    project \
        gnomonic \
        -scale 2 -lat -90 -long 0 -w 2500 -h 2500 \
        -f tmp.ppm >tmp2.ppm
    convert tmp2.ppm south_pole.jpg
    #
    # project gnomonic to equirectangular
    #
    project \
        -i gnomonic \
        -scale 2 -lat -90 -long 0 -w 5000 -h 2500 \
        -f tmp2.ppm >tmp3.ppm
    convert tmp3.ppm eq_south_pole.jpg
    "project" is the MMPS re-projection utility and "convert" is the ImageMagick image format conversion utility.

    p.s.
    Note that .ppm is a lossless, uncompressed image format. Of course, any intermediate editing should be done in a similarly lossless image format like png or bmp, for example, using a lossy format like jpg only for the final image.
    Last edited by selden; 08-24-2017 at 05:23 PM.
    Selden

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •