-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Hello,
I have a question about producing georeferenced APT images using APTDecoder. I am new to Julia and to most programming, but georeferenced NOAA APT images are crucial for a new research project I'm currently working on, and it seems to me that APTDecoder has the ability to produce them. I followed the instructions on this github to install APTDecoder, and I was following the example decoding process here: https://github.com/Alexander-Barth/APTDecoder.jl/blob/master/examples/APTDecoder.ipynb
When it came to acquiring the NOAA satellite's TLEs, Alexander suggests this line of code:
tles = SatelliteToolbox.read_tle("weather-20190825.txt")
Which I adapted (for my satellite pass time on September 2nd 2021) to:
tles = SatelliteToolbox.read_tle("weather-20210902.txt")
However, instead of the TLE element array received by Alexander, I get:
ERROR: SystemError: opening file "weather-20210902.txt": No such file or directory
I tried different dates and played around with the syntax of the txt file name, but to no avail. Without TLEs, I don't think APTDecoder can georeference my NOAA images. Any help and advice is much appreciated.
Sasha