picture.html
HTML document, ASCII text
1
{% extends "default.html" %}
2
{% block title %}Picture | gigadata{% endblock %}
3
{% macro shape_label(x, y, text) %}
4
{% if text %}
5
<foreignObject height="100%" width="100%" x="{{ x * size[0] }}" y="{{ y * size[1] }}">
6
<div class="shape-label">
7
{{ text }}
8
</div>
9
</foreignObject>
10
{% endif %}
11
{% endmacro %}
12
{% block content %}
13
<x-frame style="--width: 768px">
14
<h1>{{ resource.title }}</h1>
15
<p>{{ resource.description }}</p>
16
<p>
17
<a href="{{ resource.origin_url }}">Original source</a> |
18
<a href="/raw/picture/{{ resource.id }}">View</a> |
19
<a href="/raw/picture/{{ resource.id }}" download="GigadataPicture_{{ resource.id }}{{ file_extension }}">Download</a> |
20
<a href="/picture/{{ resource.id }}/annotate">Annotate</a>
21
</p>
22
<div id="annotation-zone">
23
<img id="annotation-image" src="/raw/picture/{{ resource.id }}" alt="{{ resource.title }}">
24
{% for region in resource.regions %}
25
{% if region.json.type == "bbox" %}
26
<svg class="shape-container-viewonly" viewBox="0 0 {{ size[0] }} {{ size[1] }}">
27
<rect x="{{ region.json.shape.x * size[0] }}"
28
y="{{ region.json.shape.y * size[1] }}"
29
width="{{ region.json.shape.w * size[0] }}"
30
height="{{ region.json.shape.h * size[1] }}"
31
fill="none" class="shape-bbox shape"
32
></rect>
33
{% set centre_x = region.json.shape.x + region.json.shape.w / 2 %}
34
{% set centre_y = region.json.shape.y + region.json.shape.h / 2 %}
35
{{ shape_label(centre_x, centre_y, region.object_id) }}
36
</svg>
37
{% elif region.json.type == "polygon" %}
38
<svg class="shape-container-viewonly" viewBox="0 0 {{ size[0] }} {{ size[1] }}">
39
<polygon points="{% for point in region.json.shape %}{{ point.x * size[0] }},{{ point.y * size[1] }} {% endfor %}" fill="none" class="shape-polygon shape"></polygon>
40
{% set top = region.json.shape | sort(attribute='y') | last %}
41
{% set left = region.json.shape | sort(attribute='x') | first %}
42
{% set bottom = region.json.shape | sort(attribute='y') | first %}
43
{% set right = region.json.shape | sort(attribute='x') | last %}
44
{% set centre_x = (left.x + right.x) / 2 %}
45
{% set centre_y = (top.y + bottom.y) / 2 %}
46
{{ shape_label(centre_x, centre_y, region.object_id) }}
47
</svg>
48
{% elif region.json.type == "polyline" %}
49
<svg class="shape-container-viewonly" viewBox="0 0 {{ size[0] }} {{ size[1] }}">
50
<polyline points="{% for point in region.json.shape %}{{ point.x * size[0] }},{{ point.y * size[1] }} {% endfor %}" fill="none" class="shape-polyline shape"></polyline>
51
{# Median point #}
52
{% set centre_x = region.json.shape | map(attribute="x") | median %}
53
{% set centre_y = region.json.shape | map(attribute="y") | median %}
54
{{ shape_label(centre_x, centre_y, region.object_id) }}
55
</svg>
56
{% elif region.json.type == "point" %}
57
<svg class="shape-container-viewonly" viewBox="0 0 {{ size[0] }} {{ size[1] }}">
58
<circle cx="{{ region.json.shape.x * size[0] }}" cy="{{ region.json.shape.y * size[1] }}" r="0" fill="none" class="shape-point shape"></circle>
59
{{ shape_label(region.json.shape.x, region.json.shape.y, region.object_id) }}
60
</svg>
61
{% endif %}
62
{% endfor %}
63
</div>
64
<x-buttonbox>
65
<label>
66
<input type="checkbox" id="show-shapes" checked>
67
Show shapes
68
</label>
69
<label>
70
<input type="checkbox" id="show-objects" checked>
71
Show objects
72
</label>
73
</x-buttonbox>
74
{% set licences = resource.licences | map(attribute="licence") | list %}
75
{% set contains = resource.regions | map(attribute="object_id") | set | sort | select | list %}
76
<x-vbox>
77
<div class="icon-explainer">
78
<span>Type</span>
79
<span>{{ resource.nature.id }}</span>
80
<span>File format</span>
81
<span>{{ resource.file_format }}</span>
82
<span>Size</span>
83
<span>{{ size[0] }}×{{ size[1] }}</span>
84
<span>Number of regions</span>
85
<span>{{ resource.regions | length }}</span>
86
<span>Number of labelled regions</span>
87
<span>{{ resource.regions | selectattr("object_id") | list | length }}</span>
88
</div>
89
Contains objects: {{ contains | join(", ") }}
90
<x-hbox>
91
<small class="picture-licensing-info">
92
Available under:
93
{% for licence in licences %}
94
<a href="{{ licence.url }}" target="_blank">
95
{{ licence.title }}
96
</a>
97
{% if not loop.last %}, {% endif %}
98
{% endfor %}
99
</small>
100
<x-vbox class="picture-licence-logos">
101
{% for licence in licences %}
102
{% if licence.logo_url %}
103
<a href="{{ licence.url }}" target="_blank" tabindex="-1">
104
{# An equivalent link already exists, only one is focusable #}
105
<img src="{{ licence.logo_url }}" alt="{{ licence.title }}" class="licence-logo">
106
</a>
107
{% endif %}
108
{% endfor %}
109
</x-vbox>
110
</x-hbox>
111
</x-vbox>
112
</x-frame>
113
{% endblock %}