{% extends 'base.html.twig' %} {% block body %} {% include 'iannotate-navigation.html.twig' %} {% if system_error %}
{{ system_error }}
{% else %}
{{ form(form) }}
(Details of these fields are explained in the HELP panel).
{% if first_view == true %}

Image Search

Searching the NASA Image Library involves entering terms that will be applied to the various meta fields used by NASA.

  • Free form searches all meta fields
  • Description searches only description field
  • Keyword uses comma separated terms to search keyword fields
  • Asset ID requires the NASA identifier
  • AI Scored applies search terms to all meta fields, and returns 100 records with the highest score as determined by OpenAI

EPIC Search

Searching the Earth Polychromatic Imaging Camera (EPIC) images involves the selection of a desired image type along with the desired dates

Details describing use of these fields are found under the 'HELP' option at the top right corner of the page.

{% else %}
{% if SearchResults %}

Search Results

{% if SearchResults.status == 3 %} No results {% else %} {{ SearchResults.message }}
{% set prevDisabledString = page_number <= 1 ? "disabled" : "" %} {% set nextDisabledString = not SearchResults.hasMore ? "disabled" : "" %}
{% for img in SearchResults.content %} {% set firstProp = true %} {% for propKey, propVal in img.properties %} {% if firstProp %} {% set firstProp = false %} {% else %} {% endif %} {% endfor %} {% endfor %}
{% endif %} {% endif %}
{% endif %}
{% endif %} {% include 'footer.html.twig' %} {% endblock %}