Hi, I'm very new to ISIS and ASP so this is somewhat of a beginner-oriented question. So my goal is to make a color mosaic of Valles Marineris using ASP, I noticed that after calibrating and cleaning the Viking Orbiter 1 data in ISIS, I needed to actually mapproject the images, so I just went through this workflow:
spiceinit from=cal_clear1.cub
spiceinit from=cal_clear2.cub
spiceinit from=cal_clear3.cub
... (and more)
bundle_adjust \
cal_clear1.cub \
cal_clear2.cub \
cal_clear3.cub \
...
--max-pairwise-matches 100000 \
--heights-from-dem /home/ytthe/.Isis/isis_data/base/dems/molaMarsPlanetaryRadius0005.cub \
--heights-from-dem-uncertainty 10 \
--tri-weight 0.1 \
-o ba-valles-marineris-color/ba
mapproject --tr 200 --datum D_MARS --bundle-adjust-prefix ba-valles-marineris-color/ba /home/ytthe/.Isis/isis_data/base/dems/molaMarsPlanetaryRadius0005.cub cal_clear1.cub s_cal_clear1.tif
mapproject --tr 200 --datum D_MARS --bundle-adjust-prefix ba-valles-marineris-color/ba /home/ytthe/.Isis/isis_data/base/dems/molaMarsPlanetaryRadius0005.cub cal_clear2.cub s_cal_clear2.tif
...
and I end up getting tif files with large artifacts on the edges outside of the original boundaries, which is ruining my mosaics. Are there any fixes for this, or am I simply missing something?