@jjlmoya/utils-nautical 1.5.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +72 -71
- package/src/tests/i18n_coverage.test.ts +36 -0
- package/src/tests/locale_completeness.test.ts +42 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/slug_uniqueness.test.ts +81 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tool/endurance/component.astro +340 -1
- package/src/tool/endurance/i18n/de.ts +249 -0
- package/src/tool/endurance/i18n/id.ts +249 -0
- package/src/tool/endurance/i18n/it.ts +249 -0
- package/src/tool/endurance/i18n/ja.ts +249 -0
- package/src/tool/endurance/i18n/ko.ts +249 -0
- package/src/tool/endurance/i18n/nl.ts +249 -0
- package/src/tool/endurance/i18n/pl.ts +249 -0
- package/src/tool/endurance/i18n/pt.ts +249 -0
- package/src/tool/endurance/i18n/ru.ts +249 -0
- package/src/tool/endurance/i18n/sv.ts +249 -0
- package/src/tool/endurance/i18n/tr.ts +249 -0
- package/src/tool/endurance/i18n/zh.ts +249 -0
- package/src/tool/endurance/index.ts +12 -0
- package/src/tool/nauticalConverter/component.astro +208 -1
- package/src/tool/nauticalConverter/i18n/de.ts +239 -0
- package/src/tool/nauticalConverter/i18n/id.ts +239 -0
- package/src/tool/nauticalConverter/i18n/it.ts +239 -0
- package/src/tool/nauticalConverter/i18n/ja.ts +239 -0
- package/src/tool/nauticalConverter/i18n/ko.ts +239 -0
- package/src/tool/nauticalConverter/i18n/nl.ts +239 -0
- package/src/tool/nauticalConverter/i18n/pl.ts +239 -0
- package/src/tool/nauticalConverter/i18n/pt.ts +239 -0
- package/src/tool/nauticalConverter/i18n/ru.ts +239 -0
- package/src/tool/nauticalConverter/i18n/sv.ts +239 -0
- package/src/tool/nauticalConverter/i18n/tr.ts +239 -0
- package/src/tool/nauticalConverter/i18n/zh.ts +239 -0
- package/src/tool/nauticalConverter/index.ts +12 -0
- package/src/tool/sailArea/component.astro +355 -2
- package/src/tool/sailArea/i18n/de.ts +275 -0
- package/src/tool/sailArea/i18n/id.ts +275 -0
- package/src/tool/sailArea/i18n/it.ts +275 -0
- package/src/tool/sailArea/i18n/ja.ts +275 -0
- package/src/tool/sailArea/i18n/ko.ts +275 -0
- package/src/tool/sailArea/i18n/nl.ts +275 -0
- package/src/tool/sailArea/i18n/pl.ts +275 -0
- package/src/tool/sailArea/i18n/pt.ts +275 -0
- package/src/tool/sailArea/i18n/ru.ts +275 -0
- package/src/tool/sailArea/i18n/sv.ts +275 -0
- package/src/tool/sailArea/i18n/tr.ts +275 -0
- package/src/tool/sailArea/i18n/zh.ts +275 -0
- package/src/tool/sailArea/index.ts +12 -0
- package/src/tool/speedConverter/component.astro +242 -1
- package/src/tool/speedConverter/i18n/de.ts +271 -0
- package/src/tool/speedConverter/i18n/id.ts +271 -0
- package/src/tool/speedConverter/i18n/it.ts +271 -0
- package/src/tool/speedConverter/i18n/ja.ts +271 -0
- package/src/tool/speedConverter/i18n/ko.ts +271 -0
- package/src/tool/speedConverter/i18n/nl.ts +271 -0
- package/src/tool/speedConverter/i18n/pl.ts +271 -0
- package/src/tool/speedConverter/i18n/pt.ts +271 -0
- package/src/tool/speedConverter/i18n/ru.ts +194 -0
- package/src/tool/speedConverter/i18n/sv.ts +271 -0
- package/src/tool/speedConverter/i18n/tr.ts +225 -0
- package/src/tool/speedConverter/i18n/zh.ts +271 -0
- package/src/tool/speedConverter/index.ts +12 -0
- package/src/tool/tideCalculator/component.astro +313 -1
- package/src/tool/tideCalculator/i18n/de.ts +203 -0
- package/src/tool/tideCalculator/i18n/id.ts +203 -0
- package/src/tool/tideCalculator/i18n/it.ts +203 -0
- package/src/tool/tideCalculator/i18n/ja.ts +203 -0
- package/src/tool/tideCalculator/i18n/ko.ts +203 -0
- package/src/tool/tideCalculator/i18n/nl.ts +203 -0
- package/src/tool/tideCalculator/i18n/pl.ts +203 -0
- package/src/tool/tideCalculator/i18n/pt.ts +203 -0
- package/src/tool/tideCalculator/i18n/ru.ts +203 -0
- package/src/tool/tideCalculator/i18n/sv.ts +203 -0
- package/src/tool/tideCalculator/i18n/tr.ts +203 -0
- package/src/tool/tideCalculator/i18n/zh.ts +203 -0
- package/src/tool/tideCalculator/index.ts +12 -0
- package/src/tool/underKeel/component.astro +321 -1
- package/src/tool/underKeel/i18n/de.ts +189 -0
- package/src/tool/underKeel/i18n/en.ts +2 -2
- package/src/tool/underKeel/i18n/fr.ts +2 -2
- package/src/tool/underKeel/i18n/id.ts +189 -0
- package/src/tool/underKeel/i18n/it.ts +176 -0
- package/src/tool/underKeel/i18n/ja.ts +185 -0
- package/src/tool/underKeel/i18n/ko.ts +185 -0
- package/src/tool/underKeel/i18n/nl.ts +176 -0
- package/src/tool/underKeel/i18n/pl.ts +176 -0
- package/src/tool/underKeel/i18n/pt.ts +176 -0
- package/src/tool/underKeel/i18n/ru.ts +176 -0
- package/src/tool/underKeel/i18n/sv.ts +176 -0
- package/src/tool/underKeel/i18n/tr.ts +185 -0
- package/src/tool/underKeel/i18n/zh.ts +185 -0
- package/src/tool/underKeel/index.ts +12 -0
- package/src/tool/endurance/style.css +0 -337
- package/src/tool/nauticalConverter/style.css +0 -205
- package/src/tool/sailArea/style.css +0 -351
- package/src/tool/speedConverter/style.css +0 -239
- package/src/tool/tideCalculator/style.css +0 -310
- package/src/tool/underKeel/style.css +0 -318
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
|
+
|
|
4
|
+
const slug = 'tide-height-calculator';
|
|
5
|
+
const title = '조석 높이 계산기';
|
|
6
|
+
const description =
|
|
7
|
+
'항해용 12분의 1 법칙을 사용하여 조석 사이클의 특정 시점의 수심을 추정합니다. 연안 계획 및 선박 자격증 학습에 적합합니다.';
|
|
8
|
+
|
|
9
|
+
const ui: TideCalculatorUI = {
|
|
10
|
+
parametersLabel: '매개변수',
|
|
11
|
+
highTideLabel: '만조',
|
|
12
|
+
lowTideLabel: '간조',
|
|
13
|
+
targetTimeLabel: '조회 시각',
|
|
14
|
+
estimatedHeightLabel: '추정 조고',
|
|
15
|
+
metersLabel: '미터',
|
|
16
|
+
amplitudeLabel: '조차',
|
|
17
|
+
durationLabel: '지속 시각',
|
|
18
|
+
tableBreakdownLabel: '12분의 1 세부 내역',
|
|
19
|
+
tableHourLabel: '시각',
|
|
20
|
+
tableStateLabel: '상태',
|
|
21
|
+
tableStartLabel: '시작',
|
|
22
|
+
tableEndLabel: '종료',
|
|
23
|
+
statusUpLabel: '밀물',
|
|
24
|
+
statusDownLabel: '썰물',
|
|
25
|
+
statusOutOfRange: '범위 초과',
|
|
26
|
+
faqTitle: '자주 묻는 질문',
|
|
27
|
+
bibliographyTitle: '참고 문헌',
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
const faq: TideCalculatorLocaleContent['faq'] = [
|
|
31
|
+
{
|
|
32
|
+
question: '12분의 1 법칙(Rule of Twelfths)이란 무엇이며 어디에 쓰이나요?',
|
|
33
|
+
answer:
|
|
34
|
+
'12분의 1 법칙은 만조와 간조 사이의 특정 시점에서 조석의 높이를 추정하기 위해 항해에서 사용하는 간이 수학적 방법입니다. 조석의 흐름이 근사적으로 사인 곡선을 따른다는 관찰에 기초하며, 6시간의 전체 조차를 12개 부분(1/12, 2/12, 3/12, 3/12, 2/12, 1/12)으로 나눕니다.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: '이 방법을 실제 항해에서 신뢰할 수 있나요?',
|
|
38
|
+
answer:
|
|
39
|
+
'빠른 계획 수립 및 교육 목적으로는 매우 유용한 이론적 추정 방법입니다. 하지만 기압이나 바람과 같은 기상 요인을 고려하지 않으므로 실제 수위는 수십 센티미터 차이가 날 수 있습니다. 실제 항해에서는 항상 공식 조석표를 확인하십시오.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: '조고를 계산하려면 어떤 데이터가 필요한가요?',
|
|
43
|
+
answer:
|
|
44
|
+
'조회하고자 하는 시각에서 가장 가까운 만조와 간조의 시각 및 높이(미터 단위)가 필요합니다. 이 데이터는 조석표나 해양 기상 앱에서 확인할 수 있습니다.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
question: '왜 조석은 항상 같은 속도로 차오르지 않나요?',
|
|
48
|
+
answer:
|
|
49
|
+
'거대한 수괴(water mass)의 관성과 해분(ocean basin)의 형태 때문입니다. 조석은 간조 이후 천천히 오르기 시작하여 중간 시간대(3/12 및 4/12시간째)에 최대 속도에 도달하고, 만조에 가까워지면 다시 느려집니다.',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
question: '기압은 조석에 어떤 영향을 미치나요?',
|
|
53
|
+
answer:
|
|
54
|
+
'고기압(고기압권)은 해수면을 아래로 눌러 실제 높이를 낮춥니다. 저기압(저기압권)은 해수면을 상승시킵니다. 일반적으로 평균 기압에서 1hPa 차이가 나면 해수면이 약 1cm 변하는 것으로 간주합니다.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: '조차(tidal range)란 무엇인가요?',
|
|
58
|
+
answer:
|
|
59
|
+
'만조와 그 직전 또는 직후의 간조 사이의 수직적인 높이 차이입니다. 이 수치는 달의 위상(사리와 조금) 및 지리적 위치에 따라 달라집니다.',
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
const howTo: TideCalculatorLocaleContent['howTo'] = [
|
|
64
|
+
{
|
|
65
|
+
name: '만조 및 간조 확인',
|
|
66
|
+
text: '조석표를 확인하여 관심 있는 조석 사이클의 시각과 높이를 파악합니다.',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: '계산기에 데이터 입력',
|
|
70
|
+
text: '만조와 간조의 시각 및 높이를 입력합니다. 툴이 자동으로 지속 시간과 조차를 계산합니다.',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: '조회 시각 설정',
|
|
74
|
+
text: '수위를 알고 싶은 시각을 조정합니다. 차트에서 해당 지점이 강조 표시됩니다.',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
name: '12분의 1 표 분석',
|
|
78
|
+
text: '시간대별 세부 내역을 검토하여 전체 기간 동안 수위가 어떻게 변하는지 이해합니다.',
|
|
79
|
+
},
|
|
80
|
+
];
|
|
81
|
+
|
|
82
|
+
const bibliography: TideCalculatorLocaleContent['bibliography'] = [
|
|
83
|
+
{
|
|
84
|
+
name: 'Puertos del Estado - Tide Prediction',
|
|
85
|
+
url: 'https://portus.puertos.es/#/',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: 'Instituto Hidrografico de la Marina',
|
|
89
|
+
url: 'https://armada.defensa.gob.es/ihm/',
|
|
90
|
+
},
|
|
91
|
+
];
|
|
92
|
+
|
|
93
|
+
const seo: TideCalculatorLocaleContent['seo'] = [
|
|
94
|
+
{
|
|
95
|
+
type: 'title',
|
|
96
|
+
text: '조석 마스터하기: 항해의 12분의 1 법칙',
|
|
97
|
+
level: 2,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: 'paragraph',
|
|
101
|
+
html: '연안 항해나 수심이 제한된 항구에 입항할 때는 항상 정확한 수심을 아는 것이 중요합니다. 오늘날 실시간 데이터를 제공하는 디지털 앱과 GPS가 널리 쓰이지만, <strong>12분의 1 법칙</strong>은 여전히 모든 선장과 항해사 교육의 기초가 되는 도구입니다. 이 법칙은 복잡한 계산기 없이도 조석 사이클의 특정 지점의 조고를 근사치로 구할 수 있게 해주는 수학적 추정법입니다.',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: 'title',
|
|
105
|
+
text: '12분의 1 법칙이란 정확히 무엇인가요?',
|
|
106
|
+
level: 3,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'paragraph',
|
|
110
|
+
html: '12분의 1 법칙은 조석의 흐름이 일정하지 않다는 관찰에 근거합니다. 해수면은 만조와 간조 사이의 약 6시간 동안 일정한 속도로 오르내리지 않습니다. 대신 사인 곡선을 그리며 움직입니다. 첫 1시간 동안은 천천히 움직이다가 중간 시간대에 속도가 붙고, 다음 극값에 가까워지면 다시 속도가 줄어듭니다.',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'table',
|
|
114
|
+
headers: ['사이클 시간대', '비율', '흐름 상태'],
|
|
115
|
+
rows: [
|
|
116
|
+
['<strong>1시간째</strong>', '조차의 1/12', '느린 시작 (게류 시점)'],
|
|
117
|
+
['<strong>2시간째</strong>', '조차의 2/12', '흐름 가속'],
|
|
118
|
+
['<strong>3시간째</strong>', '조차의 3/12', '최대 흐름 (강한 조류)'],
|
|
119
|
+
['<strong>4시간째</strong>', '조차의 3/12', '흐름 유지'],
|
|
120
|
+
['<strong>5시간째</strong>', '조차의 2/12', '눈에 띄는 감속'],
|
|
121
|
+
['<strong>6시간째</strong>', '조차의 1/12', '최종 감속 (다음 게류를 향해)'],
|
|
122
|
+
],
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
type: 'title',
|
|
126
|
+
text: '기술적 한계: 실제 조석에 영향을 미치는 요인들',
|
|
127
|
+
level: 3,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'glossary',
|
|
131
|
+
items: [
|
|
132
|
+
{ term: '기압', definition: '저기압은 해수면을 높이고, 고기압은 해수면을 낮춥니다. 일반적으로 평균 기압에서 1hPa 차이당 약 1cm의 변동이 발생합니다.' },
|
|
133
|
+
{ term: '연안풍', definition: '지속적으로 육지 쪽으로 부는 바람은 조석표의 예측치보다 수위를 더 높게 쌓을 수 있습니다.' },
|
|
134
|
+
{ term: '국지적 지형', definition: '해안의 형태, 해저 수심, 강어귀의 유무는 조석의 흐름을 상당히 지연시키거나 가속화할 수 있습니다.' },
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
type: 'tip',
|
|
139
|
+
title: '안전 유의 사항',
|
|
140
|
+
html: '본 툴은 수학적 추정법을 사용합니다. 기상 요인이나 국지적 지형은 반영되지 않습니다. 실제 항해 시에는 반드시 공식 조석표를 참조하십시오.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: '초보 선원을 위한 핵심 개념',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'glossary',
|
|
149
|
+
items: [
|
|
150
|
+
{
|
|
151
|
+
term: '조차 (Tidal range)',
|
|
152
|
+
definition: '만조와 간조 사이의 수직적 높이 차이. 비스케이만에서는 수 미터에 달할 수 있으나 지중해에서는 거의 무시할 수준입니다.',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
term: '조석 지속 시간',
|
|
156
|
+
definition: '만조와 다음 간조 사이의 시간 간격. 보통 약 6시간 12분 정도입니다(반일주조 사이클).',
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
term: '기본 수준면 (Chart datum)',
|
|
160
|
+
definition: '해도상에 표시된 수심의 기준면입니다. 실제 수심은 해도에 표시된 수치보다 낮아지는 경우가 거의 없습니다.',
|
|
161
|
+
},
|
|
162
|
+
],
|
|
163
|
+
},
|
|
164
|
+
];
|
|
165
|
+
|
|
166
|
+
const schemas: TideCalculatorLocaleContent['schemas'] = [
|
|
167
|
+
{
|
|
168
|
+
'@context': 'https://schema.org',
|
|
169
|
+
'@type': 'SoftwareApplication',
|
|
170
|
+
name: title,
|
|
171
|
+
description,
|
|
172
|
+
applicationCategory: 'UtilityApplication',
|
|
173
|
+
operatingSystem: 'Web',
|
|
174
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
175
|
+
} as WithContext<SoftwareApplication>,
|
|
176
|
+
{
|
|
177
|
+
'@context': 'https://schema.org',
|
|
178
|
+
'@type': 'FAQPage',
|
|
179
|
+
mainEntity: faq.map((item) => ({
|
|
180
|
+
'@type': 'Question',
|
|
181
|
+
name: item.question,
|
|
182
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
183
|
+
})),
|
|
184
|
+
} as WithContext<FAQPage>,
|
|
185
|
+
{
|
|
186
|
+
'@context': 'https://schema.org',
|
|
187
|
+
'@type': 'HowTo',
|
|
188
|
+
name: `사용법: ${title}`,
|
|
189
|
+
step: howTo.map((s) => ({ '@type': 'HowToStep', name: s.name, text: s.text })),
|
|
190
|
+
} as WithContext<HowTo>,
|
|
191
|
+
];
|
|
192
|
+
|
|
193
|
+
export const content: TideCalculatorLocaleContent = {
|
|
194
|
+
slug,
|
|
195
|
+
title,
|
|
196
|
+
description,
|
|
197
|
+
ui,
|
|
198
|
+
seo,
|
|
199
|
+
faq,
|
|
200
|
+
bibliography,
|
|
201
|
+
howTo,
|
|
202
|
+
schemas,
|
|
203
|
+
};
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
|
+
|
|
4
|
+
const slug = 'getijde-calculator-nl';
|
|
5
|
+
const title = 'Getijdenhoogte Calculator';
|
|
6
|
+
const description =
|
|
7
|
+
'Schat de waterdiepte op elk punt in de getijdencyclus met behulp van de nautische Zwölftel-Regel. Ideaal voor kustplanning en studie voor vaarbewijzen.';
|
|
8
|
+
|
|
9
|
+
const ui: TideCalculatorUI = {
|
|
10
|
+
parametersLabel: 'Parameters',
|
|
11
|
+
highTideLabel: 'Hoogwater',
|
|
12
|
+
lowTideLabel: 'Laagwater',
|
|
13
|
+
targetTimeLabel: 'Opvraagtijd',
|
|
14
|
+
estimatedHeightLabel: 'Geschatte Hoogte',
|
|
15
|
+
metersLabel: 'meter',
|
|
16
|
+
amplitudeLabel: 'Amplitude',
|
|
17
|
+
durationLabel: 'Duur',
|
|
18
|
+
tableBreakdownLabel: 'Zwölftel-verdeling',
|
|
19
|
+
tableHourLabel: 'Tijd',
|
|
20
|
+
tableStateLabel: 'Status',
|
|
21
|
+
tableStartLabel: 'Start',
|
|
22
|
+
tableEndLabel: 'Einde',
|
|
23
|
+
statusUpLabel: 'Opkomend',
|
|
24
|
+
statusDownLabel: 'Afnemend',
|
|
25
|
+
statusOutOfRange: 'Buiten bereik',
|
|
26
|
+
faqTitle: 'Veelgestelde Vragen',
|
|
27
|
+
bibliographyTitle: 'Bibliografie',
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
const faq: TideCalculatorLocaleContent['faq'] = [
|
|
31
|
+
{
|
|
32
|
+
question: 'Wat is de Zwölftel-Regel en waarvoor wordt deze gebruikt?',
|
|
33
|
+
answer:
|
|
34
|
+
'De Zwölftel-Regel (of Twaalfde-regel) is een vereenvoudigde wiskundige methode die in de navigatie wordt gebruikt om de getijdenhoogte te schatten op elk punt tussen hoog- en laagwater. Het is gebaseerd op de waarneming dat de getijdenstroom een sinusvormige curve volgt, waarbij het totale bereik over 6 uur in 12 delen wordt verdeeld (1/12, 2/12, 3/12, 3/12, 2/12, 1/12).',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: 'Is deze methode betrouwbaar voor echte navigatie?',
|
|
38
|
+
answer:
|
|
39
|
+
'Het is een zeer nuttige theoretische schattingsmethode voor snelle planning en educatieve doeleinden. Het houdt echter geen rekening met meteorologische factoren zoals atmosferische druk of wind, die de zeespiegel met enkele decimeters kunnen veranderen. Raadpleeg voor echte navigatie altijd de officiële getijdentafels.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: 'Welke gegevens heb ik nodig om de getijdenhoogte te berekenen?',
|
|
43
|
+
answer:
|
|
44
|
+
'U hebt de tijd en hoogte (in meters) nodig van het hoog- en laagwater dat het dichtst bij het moment ligt waarop u wilt opvragen. Deze gegevens vindt u in getijdenalmanakken of maritieme weerapps.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
question: 'Waarom stijgt het getij niet altijd met dezelfde snelheid?',
|
|
48
|
+
answer:
|
|
49
|
+
'Vanwege de traagheid van grote watermassa\'s en de configuratie van oceaanbekkens. Het getij begint langzaam te stijgen na laagwater, bereikt de maximale snelheid in de middelste uren (de 3/12 uren) und vertraagt weer als het hoogwater nadert.',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
question: 'Hoe beïnvloedt de atmosferische druk het getij?',
|
|
53
|
+
answer:
|
|
54
|
+
'Hoge druk (anticycloon) drukt het water naar beneden, waardoor de werkelijke hoogte afneemt. Lage druk (depressie) zorgt ervoor dat het water hoger kan stijgen. Als algemene regel geldt dat een variatie van 1 hPa ten opzichte van het gemiddelde overeenkomt met een verandering van ongeveer 1 cm in de zeespiegel.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Wat is het getijverschil?',
|
|
58
|
+
answer:
|
|
59
|
+
'Het is het verticale verschil in hoogte tussen een hoogwater en het onmiddellijk voorafgaande of volgende laagwater. Deze meting varieert afhankelijk van de schijngestalte van de maan (spring- en doodtij) en de geografische locatie.',
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
const howTo: TideCalculatorLocaleContent['howTo'] = [
|
|
64
|
+
{
|
|
65
|
+
name: 'Identificeer hoog- en laagwater',
|
|
66
|
+
text: 'Raadpleeg uw getijdenalmanak voor de tijden en hoogtes van de getijdencyclus waarin u geïnteresseerd bent.',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: 'Voer de gegevens in de calculator in',
|
|
70
|
+
text: 'Voer de tijd en hoogte van hoogwater en laagwater in. De tool bepaalt automatisch de duur en de amplitude.',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: 'Stel de opvraagtijd in',
|
|
74
|
+
text: 'Pas de tijd aan waarvoor u het waterniveau wilt weten. U ziet het exacte punt gemarkeerd op de grafiek.',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
name: 'Analyseer de twaalfden-tabel',
|
|
78
|
+
text: 'Bekijk de verdeling per uur om te begrijpen hoe het waterniveau gedurende de gehele periode zal fluctueren.',
|
|
79
|
+
},
|
|
80
|
+
];
|
|
81
|
+
|
|
82
|
+
const bibliography: TideCalculatorLocaleContent['bibliography'] = [
|
|
83
|
+
{
|
|
84
|
+
name: 'Puertos del Estado - Tide Prediction',
|
|
85
|
+
url: 'https://portus.puertos.es/#/',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: 'Instituto Hidrografico de la Marina',
|
|
89
|
+
url: 'https://armada.defensa.gob.es/ihm/',
|
|
90
|
+
},
|
|
91
|
+
];
|
|
92
|
+
|
|
93
|
+
const seo: TideCalculatorLocaleContent['seo'] = [
|
|
94
|
+
{
|
|
95
|
+
type: 'title',
|
|
96
|
+
text: 'Het getij beheersen: de Zwölftel-Regel in de navigatie',
|
|
97
|
+
level: 2,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: 'paragraph',
|
|
101
|
+
html: 'Kustnavigatie en het binnenlopen van havens met beperkte diepte vereisen te allen tijde een nauwkeurige kennis van de waterdiepte. Hoewel er tegenwoordig digitale toepassingen en GPS beschikbaar zijn die real-time gegevens leveren, blijft de <strong>Zwölftel-Regel</strong> een fundamenteel hulpmiddel in de training van elke schipper. Deze regel is een wiskundige schattingsmethode waarmee u, bij benadering en zonder complexe rekenmachines, de getijdenhoogte op elk punt in een getijdencyclus kunt berekenen.',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: 'title',
|
|
105
|
+
text: 'Wat is de Zwölftel-Regel precies?',
|
|
106
|
+
level: 3,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'paragraph',
|
|
110
|
+
html: 'De Zwölftel-Regel is gebaseerd op de waarneming dat de getijdenstroom niet constant is. Het water stijgt of daalt niet met dezelfde snelheid gedurende de ongeveer zes uur tussen hoog- en laagwater. In plaats daarvan volgt de beweging een sinusvormige curve. Tijdens het eerste uur beweegt het getij langzaam; het versnelt in de middelste uren en vertraagt weer als het het volgende extreme punt bereikt.',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'table',
|
|
114
|
+
headers: ['Uur van de cyclus', 'Proportie', 'Stroomtoestand'],
|
|
115
|
+
rows: [
|
|
116
|
+
['<strong>1e Uur</strong>', '1/12 van het bereik', 'Langzame start (Doodtij)'],
|
|
117
|
+
['<strong>2e Uur</strong>', '2/12 van het bereik', 'Versnellende stroom'],
|
|
118
|
+
['<strong>3e Uur</strong>', '3/12 van het bereik', 'Maximale stroom (Sterke stroom)'],
|
|
119
|
+
['<strong>4e Uur</strong>', '3/12 van het bereik', 'Aanhoudende stroom'],
|
|
120
|
+
['<strong>5e Uur</strong>', '2/12 van het bereik', 'Merkbare vertraging'],
|
|
121
|
+
['<strong>6e Uur</strong>', '1/12 van het bereik', 'Uiteindelijke vertraging (Richting stroomkentering)'],
|
|
122
|
+
],
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
type: 'title',
|
|
126
|
+
text: 'Technische beperkingen: Factoren die het werkelijke getij beïnvloeden',
|
|
127
|
+
level: 3,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'glossary',
|
|
131
|
+
items: [
|
|
132
|
+
{ term: 'Atmosferische druk', definition: 'Een depressie doet de zeespiegel stijgen; een anticycloon doet deze dalen. Als algemene regel geldt: ~1 cm variatie per hPa verschil ten opzichte van het gemiddelde.' },
|
|
133
|
+
{ term: 'Kustwind', definition: 'Aanhoudende aanlandige wind kan het water opstuwen boven de niveaus die in de getijdentafels worden voorspeld.' },
|
|
134
|
+
{ term: 'Lokale topografie', definition: 'Kustvorm, zeebodemdiepte en de aanwezigheid van estuaria kunnen de getijdenstroom aanzienlijk vertragen of versnellen.' },
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
type: 'tip',
|
|
139
|
+
title: 'Veiligheidsopmerking',
|
|
140
|
+
html: 'Deze tool maakt gebruik van een wiskundige schattingsmethode. Er wordt geen rekening gehouden met meteorologische factoren of lokale topografie. Raadpleeg voor echte navigatie altijd de officiële getijdentafels.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Kernconcepten voor nieuwe zeilers',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'glossary',
|
|
149
|
+
items: [
|
|
150
|
+
{
|
|
151
|
+
term: 'Getijverschil',
|
|
152
|
+
definition: 'Verticaal verschil tussen hoogwater en laagwater. In de Golf van Biskaje kan dit enkele meters bedragen; in de Middellandse Zee is het bijna verwaarloosbaar.',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
term: 'Getijduur',
|
|
156
|
+
definition: 'Tijdsinterval tussen hoogwater en het volgende laagwater. Meestal ongeveer 6 uur en 12 minuten (semi-diurnal cyclus).',
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
term: 'Reductievlak (Chart datum)',
|
|
160
|
+
definition: 'Referentieniveau van waaruit alle diepten op zeekaarten worden gemeten. Werkelijke diepten zijn bijna nooit minder dan de aangegeven diepten.',
|
|
161
|
+
},
|
|
162
|
+
],
|
|
163
|
+
},
|
|
164
|
+
];
|
|
165
|
+
|
|
166
|
+
const schemas: TideCalculatorLocaleContent['schemas'] = [
|
|
167
|
+
{
|
|
168
|
+
'@context': 'https://schema.org',
|
|
169
|
+
'@type': 'SoftwareApplication',
|
|
170
|
+
name: title,
|
|
171
|
+
description,
|
|
172
|
+
applicationCategory: 'UtilityApplication',
|
|
173
|
+
operatingSystem: 'Web',
|
|
174
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
175
|
+
} as WithContext<SoftwareApplication>,
|
|
176
|
+
{
|
|
177
|
+
'@context': 'https://schema.org',
|
|
178
|
+
'@type': 'FAQPage',
|
|
179
|
+
mainEntity: faq.map((item) => ({
|
|
180
|
+
'@type': 'Question',
|
|
181
|
+
name: item.question,
|
|
182
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
183
|
+
})),
|
|
184
|
+
} as WithContext<FAQPage>,
|
|
185
|
+
{
|
|
186
|
+
'@context': 'https://schema.org',
|
|
187
|
+
'@type': 'HowTo',
|
|
188
|
+
name: `Gebruiksaanwijzing: ${title}`,
|
|
189
|
+
step: howTo.map((s) => ({ '@type': 'HowToStep', name: s.name, text: s.text })),
|
|
190
|
+
} as WithContext<HowTo>,
|
|
191
|
+
];
|
|
192
|
+
|
|
193
|
+
export const content: TideCalculatorLocaleContent = {
|
|
194
|
+
slug,
|
|
195
|
+
title,
|
|
196
|
+
description,
|
|
197
|
+
ui,
|
|
198
|
+
seo,
|
|
199
|
+
faq,
|
|
200
|
+
bibliography,
|
|
201
|
+
howTo,
|
|
202
|
+
schemas,
|
|
203
|
+
};
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { TideCalculatorUI, TideCalculatorLocaleContent } from '../index';
|
|
3
|
+
|
|
4
|
+
const slug = 'kalkulator-plywow-pl';
|
|
5
|
+
const title = 'Kalkulator Wysokości Pływów';
|
|
6
|
+
const description =
|
|
7
|
+
'Oszacuj głębokość wody w dowolnym punkcie cyklu pływów za pomocą nawigacyjnej zasady dwunastu części. Idealny do planowania przybrzeżnego i nauki do licencji morskiej.';
|
|
8
|
+
|
|
9
|
+
const ui: TideCalculatorUI = {
|
|
10
|
+
parametersLabel: 'Parametry',
|
|
11
|
+
highTideLabel: 'Wysoka Woda',
|
|
12
|
+
lowTideLabel: 'Niska Woda',
|
|
13
|
+
targetTimeLabel: 'Czas zapytania',
|
|
14
|
+
estimatedHeightLabel: 'Szacowana Wysokość',
|
|
15
|
+
metersLabel: 'metry',
|
|
16
|
+
amplitudeLabel: 'Skok Pływu',
|
|
17
|
+
durationLabel: 'Czas Trwania',
|
|
18
|
+
tableBreakdownLabel: 'Rozkład Dwunastych Części',
|
|
19
|
+
tableHourLabel: 'Czas',
|
|
20
|
+
tableStateLabel: 'Stan',
|
|
21
|
+
tableStartLabel: 'Start',
|
|
22
|
+
tableEndLabel: 'Koniec',
|
|
23
|
+
statusUpLabel: 'Wznoszenie',
|
|
24
|
+
statusDownLabel: 'Opadanie',
|
|
25
|
+
statusOutOfRange: 'Poza zakresem',
|
|
26
|
+
faqTitle: 'Często Zadawane Pytania',
|
|
27
|
+
bibliographyTitle: 'Bibliografia',
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
const faq: TideCalculatorLocaleContent['faq'] = [
|
|
31
|
+
{
|
|
32
|
+
question: 'Co to jest zasada dwunastych części i do czego służy?',
|
|
33
|
+
answer:
|
|
34
|
+
'Zasada dwunastych części to uproszczona metoda matematyczna stosowana w nawigacji do szacowania wysokości pływu w dowolnym momencie między wysoką a niską wodą. Opiera się na obserwacji, że przepływ pływów następuje po przybliżonej krzywej sinusoidalnej, dzieląc całkowity skok na 12 części w ciągu 6 godzin (1/12, 2/12, 3/12, 3/12, 2/12, 1/12).',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: 'Czy ta metoda jest wiarygodna w rzeczywistej nawigacji?',
|
|
38
|
+
answer:
|
|
39
|
+
'Jest to bardzo przydatna teoretyczna metoda szacowania do szybkiego planowania i celów edukacyjnych. Nie uwzględnia ona jednak czynników meteorologicznych, takich jak ciśnienie atmosferyczne czy wiatr, które mogą zmienić poziom morza o kilka decymetrów. W przypadku rzeczywistej nawigacji należy zawsze korzystać z oficjalnych tablic pływów.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: 'Jakich danych potrzebuję do obliczenia wysokości pływu?',
|
|
43
|
+
answer:
|
|
44
|
+
'Potrzebujesz czasu i wysokości (w metrach) wysokiej i niskiej wody najbliższej momentowi, o który chcesz zapytać. Dane te można znaleźć w almanachach pływowych lub aplikacjach pogodowych dla żeglarzy.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
question: 'Dlaczego pływ nie zawsze wznosi się z tą samą prędkością?',
|
|
48
|
+
answer:
|
|
49
|
+
'Wynika to z bezwładności dużych mas wody i konfiguracji basenów oceanicznych. Pływ zaczyna wznosić się powoli po niskiej wodzie, osiąga maksymalną prędkość w środkowych godzinach (3/12 i 4/12 wody) i ponownie zwalnia, gdy zbliża się do wysokiej wody.',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
question: 'Jak ciśnienie atmosferyczne wpływa na pływy?',
|
|
53
|
+
answer:
|
|
54
|
+
'Wysokie ciśnienie (antycyklon) spycha wodę w dół, zmniejszając rzeczywistą wysokość. Niskie ciśnienie (niż) pozwala wodzie podnieść się wyżej. Zasadniczo zmiana o 1 hPa od średniej odpowiada zmianie poziomu morza o około 1 cm.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Co to jest skok pływu?',
|
|
58
|
+
answer:
|
|
59
|
+
'Jest to pionowa różnica wysokości między wysoką wodą a bezpośrednio poprzedzającą ją lub następującą po niej niską wodą. Pomiar ten zmienia się w zależności od fazy księżyca (pływy syzygijne i kwadraturowe) oraz lokalizacji geograficznej.',
|
|
60
|
+
},
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
const howTo: TideCalculatorLocaleContent['howTo'] = [
|
|
64
|
+
{
|
|
65
|
+
name: 'Zidentyfikuj wysoką i niską wodę',
|
|
66
|
+
text: 'Sprawdź w swoim almanachu pływów czasy i wysokości cyklu pływowego, który Cię interesuje.',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: 'Wprowadź dane do kalkulatora',
|
|
70
|
+
text: 'Wprowadź czas i wysokość wysokiej i niskiej wody. Narzędzie automatycznie określi czas trwania i skok pływu.',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: 'Ustaw czas zapytania',
|
|
74
|
+
text: 'Dostosuj czas, dla którego chcesz poznać poziom wody. Zobaczysz dokładny punkt zaznaczony na wykresie.',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
name: 'Przeanalizuj tabelę dwunastych części',
|
|
78
|
+
text: 'Przejrzyj rozkład godzina po godzinie, aby zrozumieć, jak poziom wody będzie się zmieniać w całym okresie.',
|
|
79
|
+
},
|
|
80
|
+
];
|
|
81
|
+
|
|
82
|
+
const bibliography: TideCalculatorLocaleContent['bibliography'] = [
|
|
83
|
+
{
|
|
84
|
+
name: 'Puertos del Estado - Tide Prediction',
|
|
85
|
+
url: 'https://portus.puertos.es/#/',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: 'Instituto Hidrografico de la Marina',
|
|
89
|
+
url: 'https://armada.defensa.gob.es/ihm/',
|
|
90
|
+
},
|
|
91
|
+
];
|
|
92
|
+
|
|
93
|
+
const seo: TideCalculatorLocaleContent['seo'] = [
|
|
94
|
+
{
|
|
95
|
+
type: 'title',
|
|
96
|
+
text: 'Mistrzostwo w Pływach: Zasada Dwunastych Części w Nawigacji',
|
|
97
|
+
level: 2,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: 'paragraph',
|
|
101
|
+
html: 'Nawigacja przybrzeżna i wchodzenie do portów o ograniczonej głębokości wymagają dokładnej wiedzy o głębokości wody w każdym momencie. Chociaż obecnie dostępne są aplikacje cyfrowe i GPS dostarczające dane w czasie rzeczywistym, <strong>Zasada Dwunastych Części</strong> pozostaje podstawowym narzędziem w szkoleniu każdego sternika jachtowego lub kapitana jachtowego. Zasada ta jest matematyczną metodą szacowania, która pozwala obliczyć w przybliżeniu i bez skomplikowanych kalkulatorów wysokość pływu w dowolnym momencie cyklu pływowego.',
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: 'title',
|
|
105
|
+
text: 'Czym dokładnie jest Zasada Dwunastych Części?',
|
|
106
|
+
level: 3,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'paragraph',
|
|
110
|
+
html: 'Zasada dwunastych części opiera się na obserwacji, że przepływ pływów nie jest stały. Woda nie wznosi się ani nie opada z tą samą prędkością w ciągu około sześciu godzin między wysoką a niską wodą. Zamiast tego ruch następuje po krzywej sinusoidalnej. W ciągu pierwszej godziny pływ przemieszcza się powoli; przyspiesza w środkowych godzinach i ponownie zwalnia w miarę zbliżania się do kolejnego ekstremum.',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'table',
|
|
114
|
+
headers: ['Godzina Cyklu', 'Proporcja', 'Stan Przepływu'],
|
|
115
|
+
rows: [
|
|
116
|
+
['<strong>1. Godzina</strong>', '1/12 skoku pływu', 'Powolny start (Woda stojąca)'],
|
|
117
|
+
['<strong>2. Godzina</strong>', '2/12 skoku pływu', 'Przepływ przyspieszający'],
|
|
118
|
+
['<strong>3. Godzina</strong>', '3/12 skoku pływu', 'Maksymalny przepływ (Silny prąd)'],
|
|
119
|
+
['<strong>4. Godzina</strong>', '3/12 skoku pływu', 'Przepływ podtrzymany'],
|
|
120
|
+
['<strong>5. Godzina</strong>', '2/12 skoku pływu', 'Zauważalne spowolnienie'],
|
|
121
|
+
['<strong>6. Godzina</strong>', '1/12 skoku pływu', 'Końcowe spowolnienie (W kierunku martwej wody)'],
|
|
122
|
+
],
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
type: 'title',
|
|
126
|
+
text: 'Ograniczenia techniczne: Czynniki wpływające na rzeczywisty pływ',
|
|
127
|
+
level: 3,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'glossary',
|
|
131
|
+
items: [
|
|
132
|
+
{ term: 'Ciśnienie atmosferyczne', definition: 'Niż podnosi poziom morza; wyż go obniża. Przyjmuje się zasadę ~1 cm zmiany na każdy 1 hPa różnicy względem średniej.' },
|
|
133
|
+
{ term: 'Wiatr przybrzeżny', definition: 'Utrzymujące się wiatry dopychające mogą spiętrzać wodę powyżej poziomów przewidzianych w tablicach pływów.' },
|
|
134
|
+
{ term: 'Lokalna topografia', definition: 'Kształt wybrzeża, głębokość dna i obecność estuariów mogą znacząco opóźnić lub przyspieszyć przepływ pływów.' },
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
type: 'tip',
|
|
139
|
+
title: 'Uwaga dotycząca bezpieczeństwa',
|
|
140
|
+
html: 'To narzędzie wykorzystuje matematyczną metodę szacowania. Nie uwzględnia czynników meteorologicznych ani lokalnej topografii. W przypadku rzeczywistej nawigacji należy zawsze korzystać z oficjalnych tablic pływów.',
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Kluczowe pojęcia dla nowych żeglarzy',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'glossary',
|
|
149
|
+
items: [
|
|
150
|
+
{
|
|
151
|
+
term: 'Skok pływu',
|
|
152
|
+
definition: 'Pionowa różnica między wysoką a niską wodą. W Zatoce Biskajskiej może wynosić kilka metrów; w regionie Morza Śródziemnego jest niemal pomijalny.',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
term: 'Czas trwania pływu',
|
|
156
|
+
definition: 'Interwał czasowy między wysoką wodą a następną niską wodą. Zazwyczaj około 6 godzin i 12 minut (cykl półdobowy).',
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
term: 'Zero mapy (Chart datum)',
|
|
160
|
+
definition: 'Poziom odniesienia, od którego mierzone są wszystkie głębokości na mapach morskich. Rzeczywiste głębokości niemal nigdy nie są mniejsze niż te wskazane.',
|
|
161
|
+
},
|
|
162
|
+
],
|
|
163
|
+
},
|
|
164
|
+
];
|
|
165
|
+
|
|
166
|
+
const schemas: TideCalculatorLocaleContent['schemas'] = [
|
|
167
|
+
{
|
|
168
|
+
'@context': 'https://schema.org',
|
|
169
|
+
'@type': 'SoftwareApplication',
|
|
170
|
+
name: title,
|
|
171
|
+
description,
|
|
172
|
+
applicationCategory: 'UtilityApplication',
|
|
173
|
+
operatingSystem: 'Web',
|
|
174
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
175
|
+
} as WithContext<SoftwareApplication>,
|
|
176
|
+
{
|
|
177
|
+
'@context': 'https://schema.org',
|
|
178
|
+
'@type': 'FAQPage',
|
|
179
|
+
mainEntity: faq.map((item) => ({
|
|
180
|
+
'@type': 'Question',
|
|
181
|
+
name: item.question,
|
|
182
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
183
|
+
})),
|
|
184
|
+
} as WithContext<FAQPage>,
|
|
185
|
+
{
|
|
186
|
+
'@context': 'https://schema.org',
|
|
187
|
+
'@type': 'HowTo',
|
|
188
|
+
name: `Jak używać: ${title}`,
|
|
189
|
+
step: howTo.map((s) => ({ '@type': 'HowToStep', name: s.name, text: s.text })),
|
|
190
|
+
} as WithContext<HowTo>,
|
|
191
|
+
];
|
|
192
|
+
|
|
193
|
+
export const content: TideCalculatorLocaleContent = {
|
|
194
|
+
slug,
|
|
195
|
+
title,
|
|
196
|
+
description,
|
|
197
|
+
ui,
|
|
198
|
+
seo,
|
|
199
|
+
faq,
|
|
200
|
+
bibliography,
|
|
201
|
+
howTo,
|
|
202
|
+
schemas,
|
|
203
|
+
};
|