What is the best way to access high resolution lunar Clementine data? I'm getting bogged down in the PDS. I'd like to download actual images, rather than using what map-a-planet puts out.
This doesn't answer your question exactly, but a while back I decided I wanted all the clementine images so I wrote a pythonscript to do this. This script works for linux using wget and will attack the JPL servers. JPL doesn't seem to have all the images but they seemed to be the fastest server. In the end, you'll need to budget for a space of about 24G.
A downloader for Clementine
This doesn't answer your question exactly, but a while back I decided I wanted all the clementine images so I wrote a pythonscript to do this. This script works for linux using wget and will attack the JPL servers. JPL doesn't seem to have all the images but they seemed to be the fastest server. In the end, you'll need to budget for a space of about 24G.
#!/usr/bin/python
import os;
import glob;
import subprocess;
import commands;
cd_count = 1;
for i in range(1,346):
if (not(os.path.exists("lun%03d"%i))):
os.mkdir("lun%03d"%i);
os.chdir("lun%03d"%i);
print "Working lun%03d"%i;
conditional = 1
while (conditional):
cmd = " wget http://starbase.jpl.nasa.gov/archive/clem1-l_e_y-a_b_u_h_l_n-2-edr-v1.0/cl_%04d"%cd_count+"/lun%03d"%i+"/luxxxxxx/ -np -nH --cut-dirs 4 -r --reject \"index.html*\" "
#print cmd;
text = commands.getoutput(cmd);
conditional = text.find('No such file or directory') > 0;
if (conditional):
print "\tDirectory doesn't seem correct"
cd_count = cd_count + 1;
if (cd_count > 80):
print "FAILED LOOKING TOO HIGH"
print "Gave up on %03d"%i
i = i + 1;
cd_count = 1;
cmd = " wget http://starbase.jpl.nasa.gov/archive/clem1-l_e_y-a_b_u_h_l_n-2-edr-v1.0/cl_%04d"%cd_count+"/lun%03d"%i+"/lhxxxxxx/ -np -nH --cut-dirs 4 -r --reject \"index.html*\" "
#print cmd;
text = commands.getoutput(cmd);
os.chdir("..");