I have a 3d landscape that I'd like to convert into an equirectangular panorama image (more specifically, one that I can plug into google maps like this: http://code.google.com/apis/maps/documentation/javascript/services.html#CreatingPanoramas ).
I know where I want to put my camera, so normally I'd just render out a cubemap. However I can't see a good way of converting from a cubemap to an equirectangular projection.
Alternatively I guess I could just render an equirectangular projection (or a series of views that can be stitched into a equirectangular projection), but I can't seem to wrap my head around what views and camera setup would be needed for that.
This is supposed to be automated, so I can't require hand touching up or running an external tool unfortunately.
Has anyone any suggestions as to how to generate this specific kind of panorama image? Thanks.