Query
Latitude: {{tj.query['latitude']}}
Longitude: {{tj.query['longitude']}}
{% if tj.query['start_date'] %}
Start Date: {{tj.query['start_date']}}
{% endif %}
{% if tj.query['end_date'] %}
End Date: {{tj.query['end_date']}}
{% endif %}
{% if tj.query['collections'] %}
Collections:
{% for cl in tj.query['collections'] %}
- {{ cl }}
{% endfor %}
{% endif %}
{% if 'geometry' in tj.trajectory %}
Geometry: {{tj.trajectory['geometry']}}
Trajectory
| Class |
Collection |
Date |
Geometry |
{% for traj in tj.trajectory['trajectory'] %}
| {{ traj['class'] }} |
{{ traj['collection'] }} |
{{ traj['date'] }} |
{{ traj['geometry'] }} |
{% endfor %}
{% else %}
Trajectory
| Class |
Collection |
Date |
{% for traj in tj.trajectory %}
| {{ traj['class'] }} |
{{ traj['collection'] }} |
{{ traj['date'] }} |
{% endfor %}
{% endif %}