voyager 1
Export Images in the Golden Disk
航海者 1 号是 NASA 于 1977 年 9 月 5 日发射的太空探测器。作为研究外太阳系航海者计划的一部分,航海者 1 号在其双胞胎航海者 2 号发射 16 天后发射。 --维基百科
该存储库包含 R# 脚本所需的代码,用于解码 Voyager Golden Record 上的图像数据。
鸣谢:测试wav文件数据和部分解码器算法实现来自项目存储库:Voyager-Golden-Record-Decoder。
下面是一个示例R#
脚本,用于解码 goden 记录中的第一个圆形图像:
# R# "E:voyager-1Rscriptfirst-circle.R" --debug --ignore-missing-startup-packages
imports " voyager1 " from " voyager-1 " ;
imports " wav " from " signalKit " ;
const goldenRecord as string = " J: G oogleDrive V oyager 3 84kHzStereo.wav " ;
# A demo R# script for image decode from the goden record wave data
# this very first circle image on the goden record is used for
# parameter calibration of the image decoder
using wav as read.wav( file = file( goldenRecord ), lazy = TRUE ) {
# view of the raw file data summary;
print( wav );
# parameters of the first circle image
# and wav decoder arguments
let first_circle = new image.chunk( channel = " Left " , start = 6000208 , length = 1928181 );
let decoder = new decode( windowSize = 3400 , offset = 217 );
print( first_circle );
print( " data size of this image chunk: " );
print( wav : > chunk_size( chunk = first_circle ));
# run decoder and save the
# result image file
wav
: > decode( chunk = first_circle , decode = decoder )
: > as.bitmap( white = 1.125 )
: > bitmap( file = `${dirname(!script$dir)}/docs/circle.png` )
;
}
使用 R# 解释器运行演示脚本:
那么演示脚本应该输出从 wav 数据解码的灰度图像,如下所示:
最后,您可以在 Photoshop 中微调结果图像输出,使其更加清晰。