Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Base Worker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Workers
Base Worker
Commits
a52cbd99
Verified
Commit
a52cbd99
authored
2 years ago
by
Yoann Schneider
Browse files
Options
Downloads
Patches
Plain Diff
polygon shortcut
parent
02f4a0c1
No related branches found
No related tags found
1 merge request
!234
Add element polygon shortcut as a property
Pipeline
#79699
passed
2 years ago
Stage: test
Stage: build
Stage: release
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
arkindex_worker/models.py
+14
-1
14 additions, 1 deletion
arkindex_worker/models.py
tests/test_element.py
+13
-0
13 additions, 0 deletions
tests/test_element.py
with
27 additions
and
1 deletion
arkindex_worker/models.py
+
14
−
1
View file @
a52cbd99
...
...
@@ -5,7 +5,7 @@ Wrappers around API results to provide more convenient attribute access and IIIF
import
tempfile
from
contextlib
import
contextmanager
from
typing
import
Generator
,
Optional
from
typing
import
Generator
,
List
,
Optional
from
PIL
import
Image
from
requests
import
HTTPError
...
...
@@ -93,6 +93,19 @@ class Element(MagicDict):
url
+=
"
/
"
return
"
{}full/{}/0/default.jpg
"
.
format
(
url
,
size
)
@property
def
polygon
(
self
)
->
List
[
float
]:
"""
Access an Element
'
s polygon.
This is a shortcut to an Element
'
s polygon, normally accessed via
its zone field via `zone.polygon`. This is mostly done
to facilitate access to this important field by matching
the [CachedElement][arkindex_worker.cache.CachedElement].polygon field.
"""
if
not
self
.
get
(
"
zone
"
):
raise
ValueError
(
"
Element {} has no zone
"
.
format
(
self
.
id
))
return
self
.
zone
.
polygon
@property
def
requires_tiles
(
self
)
->
bool
:
"""
...
...
This diff is collapsed.
Click to expand it.
tests/test_element.py
+
13
−
0
View file @
a52cbd99
...
...
@@ -402,3 +402,16 @@ def test_setattr_setitem():
element
=
Element
({
"
name
"
:
"
something
"
})
element
.
type
=
"
page
"
assert
dict
(
element
)
==
{
"
name
"
:
"
something
"
,
"
type
"
:
"
page
"
}
def
test_element_polygon
():
element
=
Element
(
{
"
zone
"
:
{
"
polygon
"
:
[[
0
,
0
],
[
181
,
0
],
[
181
,
240
],
[
0
,
240
],
[
0
,
0
]]}}
)
assert
element
.
polygon
==
[[
0
,
0
],
[
181
,
0
],
[
181
,
240
],
[
0
,
240
],
[
0
,
0
]]
def
test_element_no_polygon
():
element
=
Element
(
id
=
"
element_id
"
)
with
pytest
.
raises
(
ValueError
,
match
=
"
Element element_id has no zone
"
):
_
=
element
.
polygon
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment