Printable Version of Topic

Click here to view this topic in its original format

Unmanned Spaceflight.com _ Rosetta _ NAVCAM image projection

Posted by: lucasz Aug 25 2017, 09:41 AM

Gday everyone,

My name is Lucas. I've been a long time lurker of Unmanned Spaceflight and I'm always in awe of what the members of this site can achieve!

For a few weeks I've been attempting to project the Rosetta NAVCAM and OSIRIS imagery onto the ESA shape model. My goal is to end up with a very high resolution texture of 67P's surface.
I'm new to processing data from probes and as such have run into some issues. I could definitely use some expert advice!

My technique is to set the relative position\orientation of Rosetta\67P at the time each NAVCAM image was taken, then project each pixel out of the "virtual NAVCAM" and find it's intersection point on the ESA shape model.

I've tried this 2 different ways but with no success:

1. Reading SC_TARGET_POSITION_VECTOR, SUB_SPACECRAFT_LATITUDE, SUB_SPACECRAFT_LONGITUDE, RIGHT_ASCENSION and DECLINATION from each image label.
With those values I was able to correctly position the objects in my scene and get the virtual NAVCAM pointing at 67P. However I couldn't get the shape model in the correct orientation.
I suspect I wasn't computing the correct rotational axis for the shape model.

2. Using CSPICE to get the relative positions of the NAVCAM and 67P and finding their orientations relative to J2000.
Once again the object positioning was perfect and the virtual NAVCAM pointed at 67P, but the shape model was in the incorrect orientation. If it's any help the code for this was:

CODE
   str2et_c(lbl.IMAGE_TIME, &et);
   spkezr_c("67P/C-G", et, "J2000", "NONE", "ROSETTA", pos, &lt);        // Get the position from Rosetta to 67P.
   pxform_c("J2000", "67P/C-G_CK", et, rot_67p);                        // Get the absolute 67P rotation.
   pxform_c("J2000", "ROS_NAVCAM-A", et, rot_ros);                        // Get the absolute Rosetta rotation.



The results are being rendered in OpenGL (Y axis up) which makes me think I'm might also be missing a transform from Z up to Y up.


Any insight into this problem would be greatly appreciated!

Best regards

Posted by: JohnVV Aug 28 2017, 05:35 PM

are you using the correct axis

see the ros v25 .tf
ftp://naif.jpl.nasa.gov/pub/naif/pds/data/ro_rl-e_m_a_c-spice-6-v1.0/rossp_1000/DATA/FK/ROS_V25.TF

CODE
   +X s/c side (HGA side) view:
   ----------------------------
                                    ^
                                    | toward comet
                                    |

                               Science Deck
                             ._____________.
   .__  _______________.     |             |     .______________  ___.
   |  \ \               \    |             |    /               \ \  |
   |  / /                \   |  +Zsc       |   /                / /  |
   |  \ \                 `. |      ^      | .'                 \ \  |
   |  / /                 | o|      |      |o |                 / /  |
   |  \ \                 .' |      |      | `.                 \ \  |
   |  / /                /   |      |      |   \                / /  |
   .__\ \_______________/    |  +Xsc|      |    \_______________\ \__.
     -Y Solar Array          .______o-------> +Ysc   +Y Solar Array
                                 ._____.
                               .'       `.
                              /           \
                             .   `.   .'   .          +Xsc is out of
                             |     `o'     |             the page
                             .      |      .
                              \     |     /
                               `.       .'
                            HGA  ` --- '


   +Z s/c side (science deck side) view:
   -------------------------------------
                                  _____
                                 /     \  Lander
                                |       |
                             ._____________.
                             |             |
                             |             |
                             |  +Zsc       | +Ysc
   o==/ /==================o |      o------->o==================/ /==o
     -Y Solar Array          |      |      |        +Y Solar Array
                             |      |      |
                             .______|______.
                               `.   |   .'
                                 .--V +Xsc
                          HGA  .'       `.
                              /___________\
                                  `.|.'                 +Zsc is out
                                                       of the page


   Since the orientation of the ROS_SPACECRAFT frame is computed
   on-board, sent down in telemetry, and stored in the s/c CK files, it
   is defined as a CK-based frame.


and using the correct frame name in the spice code
the main frame reference should be 'ROS_SPACECRAFT'

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)