diff --git a/README.md b/README.md index fa578a6..40530df 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,8 @@ Along with querying by date, results can also be filtered by the camera with whi REAR_HAZCAM_RIGHT|Rear Hazard Avoidance Camera - Right SKYCAM|MEDA Skycam SHERLOC_WATSON|SHERLOC WATSON Camera + SUPERCAM_RMI|SuperCam Remote Micro Imager + LCAM|Lander Vision System Camera #### Other rovers @@ -53,6 +55,7 @@ Along with querying by date, results can also be filtered by the camera with whi NAVCAM|Navigation Camera|✔|✔|✔| PANCAM|Panoramic Camera| |✔|✔| MINITES|Miniature Thermal Emission Spectrometer (Mini-TES)| |✔|✔| + ENTRY|Entry, Descent, and Landing Camera| |✔|✔| ## Querying the API diff --git a/spec/models/perseverance_scraper_spec.rb b/spec/models/perseverance_scraper_spec.rb index a045656..8ea8a26 100644 --- a/spec/models/perseverance_scraper_spec.rb +++ b/spec/models/perseverance_scraper_spec.rb @@ -35,6 +35,7 @@ let!(:skycam) { create :camera, rover: perseverance, name: "SKYCAM" } let!(:waston) { create :camera, rover: perseverance, name: "SHERLOC_WATSON" } let!(:supercam) { create :camera, rover: perseverance, name: "SUPERCAM_RMI" } + let!(:lcam) { create :camera, rover: perseverance, name: "LCAM" } before(:each) do allow(scraper).to receive(:collect_links).and_return ["https://mars.nasa.gov/rss/api/?feed=raw_images&category=mars2020&feedtype=json&sol=1"]