Spaces:
Running
Running
File size: 1,209 Bytes
aea73e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# -*- coding: utf-8 -*-
# GeoJson templates
#
# @ Fabian Hörst, [email protected]
# Institute for Artifical Intelligence in Medicine,
# University Medicine Essen
def get_template_point() -> dict:
"""Return a template for a Point geojson object
Returns:
dict: Template
"""
template_point = {
"type": "Feature",
"id": "TODO",
"geometry": {
"type": "MultiPoint",
"coordinates": [
[],
],
},
"properties": {
"objectType": "annotation",
"classification": {"name": "TODO", "color": []},
},
}
return template_point
def get_template_segmentation() -> dict:
"""Return a template for a MultiPolygon geojson object
Returns:
dict: Template
"""
template_multipolygon = {
"type": "Feature",
"id": "TODO",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[],
],
},
"properties": {
"objectType": "annotation",
"classification": {"name": "TODO", "color": []},
},
}
return template_multipolygon
|