rewrite-in-python: flatten marker sets

This commit is contained in:
2025-11-11 21:39:26 +09:00
parent bf012ea24f
commit 3d5f5ea9d8
99 changed files with 570 additions and 1033 deletions
+14
View File
@@ -0,0 +1,14 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Area Names",
markers=[
Point(
name="Grisebukta",
icon=None,
x=-900,
y=64,
z=27,
),
],
)
@@ -1,10 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .grisebukta import MARKERS as grisebukta_markers
MARKER_SET = MarkerSet(
name="Area Names",
markers=[
*grisebukta_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Grisebukta",
icon=None,
x=-900,
y=64,
z=27,
),
]
@@ -1,4 +1,4 @@
from lib_marker.marker_set import MarkerSet
from lib_marker import MarkerSet
MARKER_SET = MarkerSet(
@@ -1,4 +1,4 @@
from lib_marker.marker_set import MarkerSet
from lib_marker import MarkerSet
MARKER_SET = MarkerSet(
@@ -1,4 +1,4 @@
from lib_marker.marker_set import MarkerSet
from lib_marker import MarkerSet
MARKER_SET = MarkerSet(
@@ -1,4 +1,4 @@
from lib_marker.marker_set import MarkerSet
from lib_marker import MarkerSet
MARKER_SET = MarkerSet(
+42
View File
@@ -0,0 +1,42 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Area Names",
markers=[
Point(
name="Andøya",
icon=None,
x=2300,
y=64,
z=250,
),
Point(
name="England",
icon=None,
x=-1189,
y=64,
z=1556,
),
Point(
name="Hemmelig mesabiom",
icon=None,
x=-980,
y=64,
z=4090,
),
Point(
name="Summefjord",
icon=None,
x=-220,
y=64,
z=2890,
),
Point(
name="Vestisødet",
icon=None,
x=-800,
y=64,
z=0,
),
],
)
@@ -1,18 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .andoya import MARKERS as andoya_markers
from .england import MARKERS as england_markers
from .hemmelig_mesabiom import MARKERS as hemmelig_mesabiom_markers
from .summefjord import MARKERS as summefjord_markers
from .vestisodet import MARKERS as vestisodet_markers
MARKER_SET = MarkerSet(
name="Area Names",
markers=[
*andoya_markers,
*england_markers,
*hemmelig_mesabiom_markers,
*summefjord_markers,
*vestisodet_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Andøya",
icon=None,
x=2300,
y=64,
z=250,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="England",
icon=None,
x=-1189,
y=64,
z=1556,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Hemmelig mesabiom",
icon=None,
x=-980,
y=64,
z=4090,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Summefjord",
icon=None,
x=-220,
y=64,
z=2890,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Vestisødet",
icon=None,
x=-800,
y=64,
z=0,
),
]
+70
View File
@@ -0,0 +1,70 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Buildings",
markers=[
Point(
name="Der Kölner Dom",
icon=None,
x=4630,
y=64,
z=270,
),
Point(
name="Fyret",
icon=None,
x=3085,
y=64,
z=424,
),
Point(
name="Hodeskallegrotten",
icon=None,
x=267,
y=89,
z=-496,
),
Point(
name="Isjungelkatedralen",
icon=None,
x=-378,
y=64,
z=153,
),
Point(
name="Jesus Christ Superstore",
icon=None,
x=280,
y=64,
z=-2800,
),
Point(
name="Kystbasen",
icon=None,
x=-334,
y=116,
z=473,
),
Point(
name="Tårnodden",
icon=None,
x=-22,
y=76,
z=67,
),
Point(
name="Tegltårnet",
icon=None,
x=-99,
y=99,
z=1025,
),
Point(
name="Vinterstranda hotel & resort",
icon=None,
x=3481,
y=75,
z=210,
),
],
)
@@ -1,28 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .der_kolner_dom import MARKERS as der_kolner_dom_markers
from .fyret import MARKERS as fyret_markers
from .hodeskallegrotten import MARKERS as hodeskallegrotten_markers
from .isjungelkatedralen import MARKERS as isjungelkatedralen_markers
from .jesus_christ_superstore import MARKERS as jesus_christ_superstore_markers
from .kystbasen import MARKERS as kystbasen_markers
from .taarnodden import MARKERS as taarnodden_markers
from .tegltaarnet import MARKERS as tegltaarnet_markers
from .vinterstranda_hotel_og_resort import (
MARKERS as vinterstranda_hotel_og_resort_markers,
)
MARKER_SET = MarkerSet(
name="Buildings",
markers=[
*der_kolner_dom_markers,
*fyret_markers,
*hodeskallegrotten_markers,
*isjungelkatedralen_markers,
*jesus_christ_superstore_markers,
*kystbasen_markers,
*taarnodden_markers,
*tegltaarnet_markers,
*vinterstranda_hotel_og_resort_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Der Kölner Dom",
icon=None,
x=4630,
y=64,
z=270,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Fyret",
icon=None,
x=3085,
y=64,
z=424,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Hodeskallegrotten",
icon=None,
x=267,
y=89,
z=-496,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Isjungelkatedralen",
icon=None,
x=-378,
y=64,
z=153,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Jesus Christ Superstore",
icon=None,
x=280,
y=64,
z=-2800,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Kystbasen",
icon=None,
x=-334,
y=116,
z=473,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Tårnodden",
icon=None,
x=-22,
y=76,
z=67,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Tegltårnet",
icon=None,
x=-99,
y=99,
z=1025,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Vinterstranda hotel & resort",
icon=None,
x=3481,
y=75,
z=210,
),
]
+42
View File
@@ -0,0 +1,42 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Cities",
markers=[
Point(
name="Heimfjell",
icon=None,
x=177,
y=64,
z=177,
),
Point(
name="Holmgard",
icon=None,
x=4468,
y=64,
z=1337,
),
Point(
name="Tangen",
icon=None,
x=58,
y=63,
z=-2860,
),
Point(
name="Tosjødalen",
icon=None,
x=960,
y=64,
z=460,
),
Point(
name="Vikingelandsbyen",
icon=None,
x=360,
y=64,
z=-460,
),
],
)
@@ -1,18 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .heimfjell import MARKERS as heimfjell_markers
from .holmgard import MARKERS as holmgard_markers
from .tangen import MARKERS as tangen_markers
from .tosjodalen import MARKERS as tosjodalen_markers
from .vikingelandsbyen import MARKERS as vikingelandsbyen_markers
MARKER_SET = MarkerSet(
name="Cities",
markers=[
*heimfjell_markers,
*holmgard_markers,
*tangen_markers,
*tosjodalen_markers,
*vikingelandsbyen_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Heimfjell",
icon=None,
x=177,
y=64,
z=177,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Holmgard",
icon=None,
x=4468,
y=64,
z=1337,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Tangen",
icon=None,
x=58,
y=63,
z=-2860,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Tosjødalen",
icon=None,
x=960,
y=64,
z=460,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Vikingelandsbyen",
icon=None,
x=360,
y=64,
z=-460,
),
]
+84
View File
@@ -0,0 +1,84 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Homes",
markers=[
Point(
name="Akasienborg",
icon=None,
x=-128,
y=64,
z=1460,
),
Point(
name="Bikkjeby",
icon=None,
x=2950,
y=64,
z=270,
),
Point(
name="Biosfæren",
icon=None,
x=834,
y=65,
z=-3089,
),
Point(
name="Bjørkeholmen",
icon=None,
x=102,
y=77,
z=37,
),
Point(
name="Bjørnebukten",
icon=None,
x=473,
y=78,
z=-3043,
),
Point(
name="Huløyeid",
icon=None,
x=-54,
y=64,
z=234,
),
Point(
name="Singapore",
icon=None,
x=-600,
y=64,
z=1130,
),
Point(
name="Summevatn",
icon=None,
x=-110,
y=64,
z=3465,
),
Point(
name="SuperTheodors fiskehus",
icon=None,
x=1570,
y=64,
z=3285,
),
Point(
name="Svartskoghavn",
icon=None,
x=-370,
y=64,
z=2390,
),
Point(
name="Vestlandet",
icon=None,
x=-2204,
y=64,
z=447,
),
],
)
@@ -1,30 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .biosfaeren import MARKERS as biosfaeren_markers
from .akasienborg import MARKERS as akasienborg_markers
from .bikkjeby import MARKERS as bikkjeby_markers
from .bjorkeholmen import MARKERS as bjorkeholmen_markers
from .bjornebukten import MARKERS as bjornebukten_markers
from .huloyeid import MARKERS as huloyeid_markers
from .singapore import MARKERS as singapore_markers
from .summevatn import MARKERS as summevatn_markers
from .supertheodors_fiskehus import MARKERS as supertheodors_fiskehus_markers
from .svartskoghavn import MARKERS as svartskoghavn_markers
from .vestlandet import MARKERS as vestlandet_markers
MARKER_SET = MarkerSet(
name="Homes",
markers=[
*akasienborg_markers,
*bikkjeby_markers,
*biosfaeren_markers,
*bjorkeholmen_markers,
*bjornebukten_markers,
*huloyeid_markers,
*singapore_markers,
*summevatn_markers,
*supertheodors_fiskehus_markers,
*svartskoghavn_markers,
*vestlandet_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Akasienborg",
icon=None,
x=-128,
y=64,
z=1460,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Bikkjeby",
icon=None,
x=2950,
y=64,
z=270,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Biosfæren",
icon=None,
x=834,
y=65,
z=-3089,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Bjørkeholmen",
icon=None,
x=102,
y=77,
z=37,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Bjørnebukten",
icon=None,
x=473,
y=78,
z=-3043,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Huløyeid",
icon=None,
x=-54,
y=64,
z=234,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Singapore",
icon=None,
x=-600,
y=64,
z=1130,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Summevatn",
icon=None,
x=-110,
y=64,
z=3465,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="SuperTheodors fiskehus",
icon=None,
x=1570,
y=64,
z=3285,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Svartskoghavn",
icon=None,
x=-370,
y=64,
z=2390,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Vestlandet",
icon=None,
x=-2204,
y=64,
z=447,
),
]
+28
View File
@@ -0,0 +1,28 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Huts",
markers=[
Point(
name="Dypskiferhytta",
icon=None,
x=-1563,
y=64,
z=-1966,
),
Point(
name="Grensebuelvbu",
icon=None,
x=550,
y=64,
z=-1480,
),
Point(
name="Nyverdenhytta",
icon=None,
x=848,
y=70,
z=1583,
),
],
)
@@ -1,14 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .dypskiferhytta import MARKERS as dypskiferhytta_markers
from .grensebuelvbu import MARKERS as grensebuelvbu_markers
from .nyverdenhytta import MARKERS as nyverdenhytta_markers
MARKER_SET = MarkerSet(
name="Huts",
markers=[
*dypskiferhytta_markers,
*grensebuelvbu_markers,
*nyverdenhytta_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Dypskiferhytta",
icon=None,
x=-1563,
y=64,
z=-1966,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Grensebuelvbu",
icon=None,
x=550,
y=64,
z=-1480,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Nyverdenhytta",
icon=None,
x=848,
y=70,
z=1583,
),
]
@@ -0,0 +1,21 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Infrastructure",
markers=[
Point(
name="Grantrebukta",
icon=None,
x=2350,
y=64,
z=-136,
),
Point(
name="Smalelvbro",
icon=None,
x=77,
y=69,
z=-348,
),
],
)
@@ -1,12 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .grantrebukta import MARKERS as grantrebukta_markers
from .smalelvbro import MARKERS as smalelvbro_markers
MARKER_SET = MarkerSet(
name="Infrastructure",
markers=[
*grantrebukta_markers,
*smalelvbro_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Grantrebukta",
icon=None,
x=2350,
y=64,
z=-136,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Smalelvbro",
icon=None,
x=77,
y=69,
z=-348,
),
]
+21
View File
@@ -0,0 +1,21 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Mines",
markers=[
Point(
name="Sandsteingruva",
icon=None,
x=56,
y=67,
z=-266,
),
Point(
name="Slimegruva",
icon=None,
x=-206,
y=64,
z=-35,
),
],
)
@@ -1,12 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .sandsteingruva import MARKERS as sandsteingruva_markers
from .slimegruva import MARKERS as slimegruva_markers
MARKER_SET = MarkerSet(
name="Mines",
markers=[
*sandsteingruva_markers,
*slimegruva_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Sandsteingruva",
icon=None,
x=56,
y=67,
z=-266,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Slimegruva",
icon=None,
x=-206,
y=64,
z=-35,
),
]
+140
View File
@@ -0,0 +1,140 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Nature",
markers=[
Point(
name="Blindodden",
icon=None,
x=874,
y=65,
z=160,
),
Point(
name="Hulevatna",
icon=None,
x=240,
y=64,
z=3070,
),
Point(
name="Kirkemyr",
icon=None,
x=6880,
y=64,
z=-465,
),
Point(
name="Lamafjellet",
icon=None,
x=1810,
y=64,
z=-1630,
),
Point(
name="Langstrand",
icon=None,
x=-305,
y=64,
z=535,
),
Point(
name="Lille isbjørnelv",
icon=None,
x=730,
y=64,
z=-1900,
),
Point(
name="Naturreservat",
icon=None,
x=4,
y=64,
z=800,
),
Point(
name="Piratbukta",
icon=None,
x=150,
y=64,
z=80,
),
Point(
name="Snøklippan",
icon=None,
x=-1654,
y=64,
z=-654,
),
Point(
name="Store isbjørnelv",
icon=None,
x=850,
y=64,
z=-2130,
),
Point(
name="Storhavet i øst",
icon=None,
x=3000,
y=64,
z=1000,
),
Point(
name="Storhavskanalen",
icon=None,
x=1005,
y=64,
z=1335,
),
Point(
name="Storsnøfjella",
icon=None,
x=5470,
y=64,
z=-270,
),
Point(
name="Storvatnet",
icon=None,
x=675,
y=64,
z=362,
),
Point(
name="SuperTheodors strand",
icon=None,
x=2111,
y=64,
z=3777,
),
Point(
name="Trangdalen",
icon=None,
x=-47,
y=64,
z=146,
),
Point(
name="Turrikkelmyra",
icon=None,
x=-160,
y=64,
z=1480,
),
Point(
name="Ulveelva",
icon=None,
x=910,
y=64,
z=3050,
),
Point(
name="Vestsumpland",
icon=None,
x=-1818,
y=64,
z=98,
),
],
)
@@ -1,47 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .blindodden import MARKERS as blindodden_markers
from .hulevatna import MARKERS as hulevatna_markers
from .kirkemyr import MARKERS as kirkemyr_markers
from .lamafjellet import MARKERS as lamafjellet_markers
from .langstrand import MARKERS as langstrand_markers
from .lille_isbjornelv import MARKERS as lille_isbjornelv_markers
from .naturreservat import MARKERS as naturreservat_markers
from .piratbukta import MARKERS as piratbukta_markers
from .snoklippan import MARKERS as snoklippan_markers
from .store_isbjornelv import MARKERS as store_isbjornelv_markers
from .storhavet_i_ost import MARKERS as storhavet_i_ost_markers
from .storhavs_kanalen import MARKERS as storhavs_kanalen_markers
from .storsnofjella import MARKERS as storsnofjella_markers
from .storvatnet import MARKERS as storvatnet_markers
from .supertheodors_strand import MARKERS as supertheodors_strand_markers
from .trangdalen import MARKERS as trangdalen_markers
from .turrikkelmyra import MARKERS as turrikkelmyra_markers
from .ulveelva import MARKERS as ulveelva_markers
from .vestsumpland import MARKERS as vestsumpland_markers
MARKER_SET = MarkerSet(
name="Nature",
markers=[
*blindodden_markers,
*hulevatna_markers,
*kirkemyr_markers,
*lamafjellet_markers,
*langstrand_markers,
*lille_isbjornelv_markers,
*naturreservat_markers,
*piratbukta_markers,
*snoklippan_markers,
*store_isbjornelv_markers,
*storhavet_i_ost_markers,
*storhavs_kanalen_markers,
*storsnofjella_markers,
*storvatnet_markers,
*supertheodors_strand_markers,
*trangdalen_markers,
*turrikkelmyra_markers,
*ulveelva_markers,
*vestsumpland_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Blindodden",
icon=None,
x=874,
y=65,
z=160,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Hulevatna",
icon=None,
x=240,
y=64,
z=3070,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Kirkemyr",
icon=None,
x=6880,
y=64,
z=-465,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Lamafjellet",
icon=None,
x=1810,
y=64,
z=-1630,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Langstrand",
icon=None,
x=-305,
y=64,
z=535,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Lille isbjørnelv",
icon=None,
x=730,
y=64,
z=-1900,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Naturreservat",
icon=None,
x=4,
y=64,
z=800,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Piratbukta",
icon=None,
x=150,
y=64,
z=80,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Snøklippan",
icon=None,
x=-1654,
y=64,
z=-654,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Store isbjørnelv",
icon=None,
x=850,
y=64,
z=-2130,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Storhavet i øst",
icon=None,
x=3000,
y=64,
z=1000,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Storhavskanalen",
icon=None,
x=1005,
y=64,
z=1335,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Storsnøfjella",
icon=None,
x=5470,
y=64,
z=-270,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Storvatnet",
icon=None,
x=675,
y=64,
z=362,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="SuperTheodors strand",
icon=None,
x=2111,
y=64,
z=3777,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Trangdalen",
icon=None,
x=-47,
y=64,
z=146,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Turrikkelmyra",
icon=None,
x=-160,
y=64,
z=1480,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Ulveelva",
icon=None,
x=910,
y=64,
z=3050,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Vestsumpland",
icon=None,
x=-1818,
y=64,
z=98,
),
]
+21
View File
@@ -0,0 +1,21 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Other",
markers=[
Point(
name="Leirhavn",
icon=None,
x=512,
y=64,
z=-3320,
),
Point(
name="Nullpunkt",
icon=None,
x=0,
y=64,
z=0,
),
],
)
@@ -1,12 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .leirhavn import MARKERS as leirhavn_markers
from .nullpunkt import MARKERS as nullpunkt_markers
MARKER_SET = MarkerSet(
name="Other",
markers=[
*leirhavn_markers,
*nullpunkt_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Leirhavn",
icon=None,
x=512,
y=64,
z=-3320,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Nullpunkt",
icon=None,
x=0,
y=64,
z=0,
),
]
@@ -1,4 +1,4 @@
from lib_marker.marker_set import MarkerSet
from lib_marker import MarkerSet
MARKER_SET = MarkerSet(
@@ -1,4 +1,4 @@
from lib_marker.marker_set import MarkerSet
from lib_marker import MarkerSet
MARKER_SET = MarkerSet(
+70
View File
@@ -0,0 +1,70 @@
from lib_marker import MarkerSet, Point
MARKER_SET = MarkerSet(
name="Villages",
markers=[
Point(
name="Bondeby",
icon=None,
x=6200,
y=64,
z=-300,
),
Point(
name="Gammelleirnes",
icon=None,
x=800,
y=64,
z=-3300,
),
Point(
name="Hestelandsby",
icon=None,
x=2734,
y=64,
z=-984,
),
Point(
name="Isbjørnby",
icon=None,
x=723,
y=64,
z=-2380,
),
Point(
name="Ittoqqortoormiit",
icon=None,
x=100,
y=64,
z=-3830,
),
Point(
name="Kløfteby",
icon=None,
x=695,
y=64,
z=2812,
),
Point(
name="NPC-landsby nord",
icon=None,
x=337,
y=64,
z=-853,
),
Point(
name="NPC-landsby",
icon=None,
x=1278,
y=64,
z=-397,
),
Point(
name="Smedby",
icon=None,
x=-1760,
y=64,
z=-2440,
),
],
)
@@ -1,27 +0,0 @@
from lib_marker.marker_set import MarkerSet
from .bondeby import MARKERS as bondeby_markers
from .gammelleirnes import MARKERS as gammelleirnes_markers
from .hestelandsby import MARKERS as hestelandsby_markers
from .isbjornby import MARKERS as isbjornby_markers
from .ittoqqortoormiit import MARKERS as ittoqqortoormiit_markers
from .klofteby import MARKERS as kloftebye_markers
from .npc_landsby import MARKERS as npc_landsby_markers
from .npc_landsby_nord import MARKERS as npc_landsby_nord_markers
from .smedby import MARKERS as smedby_markers
MARKER_SET = MarkerSet(
name="Villages",
markers=[
*bondeby_markers,
*gammelleirnes_markers,
*hestelandsby_markers,
*isbjornby_markers,
*ittoqqortoormiit_markers,
*kloftebye_markers,
*npc_landsby_markers,
*npc_landsby_nord_markers,
*smedby_markers,
],
)
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Bondeby",
icon=None,
x=6200,
y=64,
z=-300,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Gammelleirnes",
icon=None,
x=800,
y=64,
z=-3300,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Hestelandsby",
icon=None,
x=2734,
y=64,
z=-984,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Isbjørnby",
icon=None,
x=723,
y=64,
z=-2380,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Ittoqqortoormiit",
icon=None,
x=100,
y=64,
z=-3830,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Kløfteby",
icon=None,
x=695,
y=64,
z=2812,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="NPC-landsby",
icon=None,
x=1278,
y=64,
z=-397,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="NPC-landsby nord",
icon=None,
x=337,
y=64,
z=-853,
),
]
@@ -1,11 +0,0 @@
from lib_marker import Point
MARKERS = [
Point(
name="Smedby",
icon=None,
x=-1760,
y=64,
z=-2440,
),
]
@@ -1,4 +1,4 @@
from lib_marker.marker_set import MarkerSet
from lib_marker import MarkerSet
MARKER_SET = MarkerSet(
@@ -1,4 +1,4 @@
from lib_marker.marker_set import MarkerSet
from lib_marker import MarkerSet
MARKER_SET = MarkerSet(