@jjlmoya/utils-astronomy 1.35.1 → 1.37.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.
Files changed (86) hide show
  1. package/package.json +18 -5
  2. package/scripts/postbuild.mjs +17 -0
  3. package/scripts/postinstall.mjs +2 -4
  4. package/src/category/index.ts +2 -1
  5. package/src/components/ProductionBreadcrumb.astro +134 -0
  6. package/src/components/ProductionStructuredData.astro +46 -0
  7. package/src/components/ProductionWidget.astro +182 -0
  8. package/src/entries.ts +4 -2
  9. package/src/i18n/header-ui.ts +15 -0
  10. package/src/i18n/language-ui.ts +9 -0
  11. package/src/i18n/languages.ts +24 -0
  12. package/src/identity/brands.ts +5 -0
  13. package/src/index.ts +2 -1
  14. package/src/layouts/ProductionCategoryPage.astro +184 -0
  15. package/src/layouts/ProductionPage.astro +218 -0
  16. package/src/layouts/ProductionUtilityPage.astro +283 -0
  17. package/src/mfe/assets.ts +39 -0
  18. package/src/mfe/category-ui.ts +34 -0
  19. package/src/mfe/manifest.ts +45 -0
  20. package/src/mfe/routes.ts +50 -0
  21. package/src/pages/[locale]/[utilities]/[categories]/[category]/[slug]/manifest.json.ts +49 -0
  22. package/src/pages/[locale]/[utilities]/[categories]/[category]/[slug].astro +100 -0
  23. package/src/pages/[locale]/[utilities]/[categories]/[category].astro +44 -0
  24. package/src/pages/index.astro +4 -4
  25. package/src/pages/mfe-sitemaps/[locale]/[vertical]/sitemap.xml.ts +75 -0
  26. package/src/pages/utilidades/[slug]/manifest.json.ts +28 -0
  27. package/src/pages/utilidades/[slug].astro +90 -0
  28. package/src/pages/utilidades/categorias/[category].astro +38 -0
  29. package/src/tests/locale_completeness.test.ts +2 -2
  30. package/src/tests/mfe_cache_contract.test.ts +14 -0
  31. package/src/tests/mfe_manifest.test.ts +28 -0
  32. package/src/tests/registry_contract.test.ts +67 -0
  33. package/src/tests/tool_validation.test.ts +4 -3
  34. package/src/tool/astrophotographyExposureStackPlanner/astrophotography-exposure-stacking-planner.css +496 -0
  35. package/src/tool/astrophotographyExposureStackPlanner/bibliography.astro +14 -0
  36. package/src/tool/astrophotographyExposureStackPlanner/bibliography.ts +12 -0
  37. package/src/tool/astrophotographyExposureStackPlanner/component.astro +149 -0
  38. package/src/tool/astrophotographyExposureStackPlanner/controller.ts +125 -0
  39. package/src/tool/astrophotographyExposureStackPlanner/dom-views.ts +41 -0
  40. package/src/tool/astrophotographyExposureStackPlanner/entry.ts +29 -0
  41. package/src/tool/astrophotographyExposureStackPlanner/evaluator.ts +44 -0
  42. package/src/tool/astrophotographyExposureStackPlanner/i18n/de.ts +40 -0
  43. package/src/tool/astrophotographyExposureStackPlanner/i18n/en.ts +232 -0
  44. package/src/tool/astrophotographyExposureStackPlanner/i18n/es.ts +52 -0
  45. package/src/tool/astrophotographyExposureStackPlanner/i18n/fr.ts +40 -0
  46. package/src/tool/astrophotographyExposureStackPlanner/i18n/id.ts +40 -0
  47. package/src/tool/astrophotographyExposureStackPlanner/i18n/it.ts +40 -0
  48. package/src/tool/astrophotographyExposureStackPlanner/i18n/ja.ts +40 -0
  49. package/src/tool/astrophotographyExposureStackPlanner/i18n/ko.ts +40 -0
  50. package/src/tool/astrophotographyExposureStackPlanner/i18n/nl.ts +40 -0
  51. package/src/tool/astrophotographyExposureStackPlanner/i18n/pl.ts +40 -0
  52. package/src/tool/astrophotographyExposureStackPlanner/i18n/pt.ts +40 -0
  53. package/src/tool/astrophotographyExposureStackPlanner/i18n/ru.ts +40 -0
  54. package/src/tool/astrophotographyExposureStackPlanner/i18n/sv.ts +40 -0
  55. package/src/tool/astrophotographyExposureStackPlanner/i18n/tr.ts +40 -0
  56. package/src/tool/astrophotographyExposureStackPlanner/i18n/zh.ts +40 -0
  57. package/src/tool/astrophotographyExposureStackPlanner/index.ts +11 -0
  58. package/src/tool/astrophotographyExposureStackPlanner/localized.ts +59 -0
  59. package/src/tool/astrophotographyExposureStackPlanner/logic.test.ts +74 -0
  60. package/src/tool/astrophotographyExposureStackPlanner/logic.ts +95 -0
  61. package/src/tool/astrophotographyExposureStackPlanner/seo.astro +14 -0
  62. package/src/tool/astrophotographyExposureStackPlanner/storage.ts +22 -0
  63. package/src/tool/astrophotographyExposureStackPlanner/ui.ts +102 -0
  64. package/src/tool/meteorShowerObservingPlanner/dom-views.ts +38 -16
  65. package/src/tool/meteorShowerObservingPlanner/i18n/de.ts +219 -219
  66. package/src/tool/meteorShowerObservingPlanner/i18n/en.ts +219 -219
  67. package/src/tool/meteorShowerObservingPlanner/i18n/es.ts +219 -219
  68. package/src/tool/meteorShowerObservingPlanner/i18n/fr.ts +219 -219
  69. package/src/tool/meteorShowerObservingPlanner/i18n/id.ts +223 -223
  70. package/src/tool/meteorShowerObservingPlanner/i18n/it.ts +223 -223
  71. package/src/tool/meteorShowerObservingPlanner/i18n/ja.ts +219 -219
  72. package/src/tool/meteorShowerObservingPlanner/i18n/ko.ts +219 -219
  73. package/src/tool/meteorShowerObservingPlanner/i18n/nl.ts +223 -223
  74. package/src/tool/meteorShowerObservingPlanner/i18n/pl.ts +223 -223
  75. package/src/tool/meteorShowerObservingPlanner/i18n/pt.ts +223 -223
  76. package/src/tool/meteorShowerObservingPlanner/i18n/ru.ts +219 -219
  77. package/src/tool/meteorShowerObservingPlanner/i18n/sv.ts +223 -223
  78. package/src/tool/meteorShowerObservingPlanner/i18n/tr.ts +223 -223
  79. package/src/tool/meteorShowerObservingPlanner/i18n/zh.ts +219 -219
  80. package/src/tool/meteorShowerObservingPlanner/meteor-shower-observing-planner.css +16 -9
  81. package/src/tool/meteorShowerObservingPlanner/ui.ts +87 -87
  82. package/src/tools.ts +3 -1
  83. package/src/types.ts +2 -2
  84. package/src/worker.ts +27 -0
  85. package/src/pages/[locale]/[slug].astro +0 -161
  86. package/src/pages/[locale].astro +0 -251
@@ -1,219 +1,219 @@
1
- import type { MeteorShowerObservingPlannerLocaleContent } from '../ui';
2
- import { METEOR_PLANNER_BIBLIOGRAPHY } from '../bibliography';
3
-
4
- const slug = 'meteor-shower-observing-planner';
5
-
6
- export const content: MeteorShowerObservingPlannerLocaleContent = {
7
- slug,
8
- title: '유성우 관측 시간대 플래너',
9
- description: 'ZHR 제니스시간당출현율, 광해 등급, 달빛 영향을 계산하여 최적의 유성우 관측 시간대를 계획하세요.',
10
- ui: {
11
- title: '유성우 관측 플래너',
12
- subtitle: '최적 관측 시간대 및 시간당 유성 출현 예측 수치 계산',
13
- presetLabel: '주요 유성우 선택',
14
- customZhrLabel: '사용자 지정 제니스 시간당 출현율 ZHR',
15
- latitudeLabel: '관측자 위도',
16
- bortleLabel: '보틀 어두운 하늘 등급',
17
- moonPhaseLabel: '달 위상 및 조도',
18
- sessionHoursLabel: '계획된 관측 시간대',
19
- toLabel: '~',
20
- classLabel: '등급',
21
- radiantTelemetryLabel: '복사점 텔레메트리',
22
- belowHorizonLabel: '지평선 아래',
23
- altLabel: '고도',
24
- moonLabel: '달',
25
- hrUnit: '/ 시간',
26
- presets: {
27
- perseids: '페르세우스자리 유성우 (8월 12일)',
28
- geminids: '쌍둥이자리 유성우 (12월 14일)',
29
- quadrantids: '용자리 유성우 (1월 4일)',
30
- lyrids: '거문고자리 유성우 (4월 22일)',
31
- orionids: '오리온자리 유성우 (10월 21일)',
32
- 'eta-aquariids': '물병자리 eta 유성우 (5월 6일)',
33
- leonids: '사자자리 유성우 (11월 17일)',
34
- custom: '사용자 지정 유성우',
35
- },
36
- constellations: {
37
- Perseus: '페르세우스자리',
38
- Gemini: '쌍둥이자리',
39
- Bootes: '목동자리',
40
- Lyra: '거문고자리',
41
- Orion: '오리온자리',
42
- Aquarius: '물병자리',
43
- Leo: '사자자리',
44
- Zenith: '천정',
45
- },
46
- badgeLabels: {
47
- darkSky: '최상의 어두운 밤하늘',
48
- lightPollution: '높은 광해 영향',
49
- favorableMoon: '유리한 달 조건',
50
- moonWashout: '달빛에 의한 희석 위험',
51
- primeWindow: '최고 활성 시간대',
52
- },
53
- bortleDescriptions: {
54
- 2: '최상의 어두운 밤하늘',
55
- 5: '교외 밤하늘',
56
- 8: '도시 광해 밤하늘',
57
- },
58
- moonPhaseNames: {
59
- new: '달빛 영향 최소',
60
- quarter: '중간 수준 달빛 방해',
61
- full: '심각한 달빛 방해',
62
- },
63
- resultsTitle: '관측 세션 분석 결과',
64
- bestWindowLabel: '최적 관측 시간대',
65
- maxRateLabel: '최대 예측 출현율',
66
- skyQualityLabel: '밤하늘 품질 지수',
67
- hourlyChartTitle: '시간별 예측 출현율 및 복사점 고도',
68
- checklistTitle: '관측 준비 사항',
69
- checklistItems: [
70
- '관측을 시작하기 전 적어도 20분 동안 눈을 어둠에 적응시키세요',
71
- '야간 시력을 보호하기 위해 적색 필터 라이트를 사용하세요',
72
- '지평선 위 45도를 바라볼 수 있는 편안한 야외 의자에 누우세요',
73
- '관측 중에는 밝은 스마트폰 화면을 보지 않도록 주의하세요',
74
- ],
75
- },
76
- seo: [
77
- {
78
- type: 'title',
79
- text: '제니스 시간당 출현율 ZHR과 실제 관측 유성 수치',
80
- level: 2,
81
- },
82
- {
83
- type: 'paragraph',
84
- html: '제니스 시간당 출현율 ZHR은 이상적인 어두운 밤하늘 아래에서 복사점이 천정에 있을 때 한 명의 관측자가 볼 수 있는 이론상 최대 유성 수를 의미합니다. 실제 환경에서는 광해와 복사점 고도 영향으로 관측되는 수치가 줄어듭니다.',
85
- },
86
- {
87
- type: 'paragraph',
88
- html: '최적 관측 시간대를 계산하려면 기하학적 조건과 환경 요소를 고려해야 합니다. 복사점 고도가 지평선에 가까우면 분위기를 통과하는 길목이 제한되어 유성을 덜 관측하게 됩니다.',
89
- },
90
- {
91
- type: 'list',
92
- items: [
93
- '복사점 고도가 낮을수록 관측 유성 수가 고도의 사인 값에 비례하여 감소',
94
- '보틀 등급 광해로 인해 희미한 유성 궤적이 가려짐',
95
- '달 위상에 따른 바탕 하늘 밝기 증가',
96
- '관측자의 시야각에 따른 시야 제한',
97
- ],
98
- },
99
- {
100
- type: 'tip',
101
- title: '어두운 밤하늘 추천',
102
- html: '보틀 2등급 또는 3등급 장소에서 관측하면 도심 마당에 비해 볼 수 있는 희미한 유성이 급격히 늘어납니다.',
103
- },
104
- {
105
- type: 'title',
106
- text: '달 위상과 광해의 영향',
107
- level: 2,
108
- },
109
- {
110
- type: 'paragraph',
111
- html: '달빛은 유성우 극대기 동안 가장 큰 자연 광해원입니다. 보름달은 희미한 유성 궤적을 지워버려 시골 밤하늘에서도 실제 관측 수치를 70퍼센트 이상 감소시킵니다.',
112
- },
113
- {
114
- type: 'paragraph',
115
- html: '월몰 후 또는 월출 전 시간을 선택하면 바탕 하늘과의 대비를 극대화할 수 있습니다.',
116
- },
117
- {
118
- type: 'title',
119
- text: '유성 관측 밤을 준비하는 방법',
120
- level: 2,
121
- },
122
- {
123
- type: 'paragraph',
124
- html: '유성 관측은 인내심과 따뜻한 복장이 필수적입니다. 유성은 하늘 전체에 돌발적으로 나타나므로 망원경보다 맨눈으로 보는 것이 시야 확보에 훨씬 유리합니다.',
125
- },
126
- {
127
- type: 'list',
128
- items: [
129
- '여름철 밤이라도 겹쳐 입을 따뜻한 옷 준비',
130
- '야외 의자용 침낭이나 따뜻한 담요 준비',
131
- '체온 유지를 위한 따뜻한 음료 준비',
132
- '밝은 화구가 보이면 시각과 방향 기록',
133
- ],
134
- },
135
- {
136
- type: 'title',
137
- text: '기술적 계산 방법론',
138
- level: 2,
139
- },
140
- {
141
- type: 'paragraph',
142
- html: '본 계산기는 극대 ZHR 수치에 기하학적 고도 보정 보틀 광해 감쇄 달빛 영향을 종합하여 시뮬레이션 수치를 제공합니다.',
143
- },
144
- ],
145
- faq: [
146
- {
147
- question: '제니스 시간당 출현율 ZHR이란 무엇인가요',
148
- answer: 'ZHR은 어두운 밤하늘과 천정 복사점 조건에서의 이론상 최대 시간당 유성 수입니다.',
149
- },
150
- {
151
- question: '공표된 ZHR보다 유성이 덜 보이는 이유는 무엇인가요',
152
- answer: '공표 ZHR은 완벽한 조건을 가정합니다. 광해 낮은 복사점 달빛이 실제 수를 줄입니다.',
153
- },
154
- {
155
- question: '유성을 보려면 망원경이 필요한가요',
156
- answer: '아닙니다. 망원경은 시야가 너무 좁습니다. 맨눈 관측이 가장 좋습니다.',
157
- },
158
- ],
159
- howTo: [
160
- {
161
- name: '유성우 선택',
162
- text: '페르세우스자리 유성우 등 원하는 유성우를 선택하거나 ZHR 값을 입력합니다.',
163
- },
164
- {
165
- name: '위도 설정',
166
- text: '슬라이더를 사용해 현재 관측지 위도를 맞춥니다.',
167
- },
168
- {
169
- name: '광해 및 달 위상 설정',
170
- text: '보틀 등급과 달 조도를 입력합니다.',
171
- },
172
- {
173
- name: '예측 수치 확인',
174
- text: '차트를 통해 최적의 시간대를 확인합니다.',
175
- },
176
- ],
177
- bibliography: METEOR_PLANNER_BIBLIOGRAPHY,
178
- schemas: [
179
- {
180
- '@context': 'https://schema.org',
181
- '@type': 'SoftwareApplication',
182
- name: '유성우 관측 시간대 플래너',
183
- operatingSystem: 'Any',
184
- applicationCategory: 'EducationalApplication',
185
- offers: {
186
- '@type': 'Offer',
187
- price: '0',
188
- priceCurrency: 'KRW',
189
- },
190
- },
191
- {
192
- '@context': 'https://schema.org',
193
- '@type': 'FAQPage',
194
- mainEntity: [
195
- {
196
- '@type': 'Question',
197
- name: '제니스 시간당 출현율 ZHR이란 무엇인가요',
198
- acceptedAnswer: {
199
- '@type': 'Answer',
200
- text: 'ZHR은 어두운 밤하늘과 천정 복사점 조건에서의 이론상 최대 시간당 유성 수입니다.',
201
- },
202
- },
203
- ],
204
- },
205
- {
206
- '@context': 'https://schema.org',
207
- '@type': 'HowTo',
208
- name: '유성우 관측 플래너 사용법',
209
- description: '최적의 유성 관측 시간대를 찾는 단계입니다.',
210
- step: [
211
- {
212
- '@type': 'HowToStep',
213
- name: '유성우 선택',
214
- text: '페르세우스자리 유성우 등 원하는 유성우를 선택하거나 ZHR 값을 입력합니다.',
215
- },
216
- ],
217
- },
218
- ],
219
- };
1
+ import type { MeteorShowerObservingPlannerLocaleContent } from '../ui';
2
+ import { METEOR_PLANNER_BIBLIOGRAPHY } from '../bibliography';
3
+
4
+ const slug = 'meteor-shower-observing-planner';
5
+
6
+ export const content: MeteorShowerObservingPlannerLocaleContent = {
7
+ slug,
8
+ title: '유성우 관측 시간대 플래너',
9
+ description: 'ZHR 제니스시간당출현율, 광해 등급, 달빛 영향을 계산하여 최적의 유성우 관측 시간대를 계획하세요.',
10
+ ui: {
11
+ title: '유성우 관측 플래너',
12
+ subtitle: '최적 관측 시간대 및 시간당 유성 출현 예측 수치 계산',
13
+ presetLabel: '주요 유성우 선택',
14
+ customZhrLabel: '사용자 지정 제니스 시간당 출현율 ZHR',
15
+ latitudeLabel: '관측자 위도',
16
+ bortleLabel: '보틀 어두운 하늘 등급',
17
+ moonPhaseLabel: '달 위상 및 조도',
18
+ sessionHoursLabel: '계획된 관측 시간대',
19
+ toLabel: '~',
20
+ classLabel: '등급',
21
+ radiantTelemetryLabel: '복사점 텔레메트리',
22
+ belowHorizonLabel: '지평선 아래',
23
+ altLabel: '고도',
24
+ moonLabel: '달',
25
+ hrUnit: '/ 시간',
26
+ presets: {
27
+ perseids: '페르세우스자리 유성우 (8월 12일)',
28
+ geminids: '쌍둥이자리 유성우 (12월 14일)',
29
+ quadrantids: '용자리 유성우 (1월 4일)',
30
+ lyrids: '거문고자리 유성우 (4월 22일)',
31
+ orionids: '오리온자리 유성우 (10월 21일)',
32
+ 'eta-aquariids': '물병자리 eta 유성우 (5월 6일)',
33
+ leonids: '사자자리 유성우 (11월 17일)',
34
+ custom: '사용자 지정 유성우',
35
+ },
36
+ constellations: {
37
+ Perseus: '페르세우스자리',
38
+ Gemini: '쌍둥이자리',
39
+ Bootes: '목동자리',
40
+ Lyra: '거문고자리',
41
+ Orion: '오리온자리',
42
+ Aquarius: '물병자리',
43
+ Leo: '사자자리',
44
+ Zenith: '천정',
45
+ },
46
+ badgeLabels: {
47
+ darkSky: '최상의 어두운 밤하늘',
48
+ lightPollution: '높은 광해 영향',
49
+ favorableMoon: '유리한 달 조건',
50
+ moonWashout: '달빛에 의한 희석 위험',
51
+ primeWindow: '최고 활성 시간대',
52
+ },
53
+ bortleDescriptions: {
54
+ 2: '최상의 어두운 밤하늘',
55
+ 5: '교외 밤하늘',
56
+ 8: '도시 광해 밤하늘',
57
+ },
58
+ moonPhaseNames: {
59
+ new: '달빛 영향 최소',
60
+ quarter: '중간 수준 달빛 방해',
61
+ full: '심각한 달빛 방해',
62
+ },
63
+ resultsTitle: '관측 세션 분석 결과',
64
+ bestWindowLabel: '최적 관측 시간대',
65
+ maxRateLabel: '최대 예측 출현율',
66
+ skyQualityLabel: '밤하늘 품질 지수',
67
+ hourlyChartTitle: '시간별 예측 출현율 및 복사점 고도',
68
+ checklistTitle: '관측 준비 사항',
69
+ checklistItems: [
70
+ '관측을 시작하기 전 적어도 20분 동안 눈을 어둠에 적응시키세요',
71
+ '야간 시력을 보호하기 위해 적색 필터 라이트를 사용하세요',
72
+ '지평선 위 45도를 바라볼 수 있는 편안한 야외 의자에 누우세요',
73
+ '관측 중에는 밝은 스마트폰 화면을 보지 않도록 주의하세요',
74
+ ],
75
+ },
76
+ seo: [
77
+ {
78
+ type: 'title',
79
+ text: '제니스 시간당 출현율 ZHR과 실제 관측 유성 수치',
80
+ level: 2,
81
+ },
82
+ {
83
+ type: 'paragraph',
84
+ html: '제니스 시간당 출현율 ZHR은 이상적인 어두운 밤하늘 아래에서 복사점이 천정에 있을 때 한 명의 관측자가 볼 수 있는 이론상 최대 유성 수를 의미합니다. 실제 환경에서는 광해와 복사점 고도 영향으로 관측되는 수치가 줄어듭니다.',
85
+ },
86
+ {
87
+ type: 'paragraph',
88
+ html: '최적 관측 시간대를 계산하려면 기하학적 조건과 환경 요소를 고려해야 합니다. 복사점 고도가 지평선에 가까우면 분위기를 통과하는 길목이 제한되어 유성을 덜 관측하게 됩니다.',
89
+ },
90
+ {
91
+ type: 'list',
92
+ items: [
93
+ '복사점 고도가 낮을수록 관측 유성 수가 고도의 사인 값에 비례하여 감소',
94
+ '보틀 등급 광해로 인해 희미한 유성 궤적이 가려짐',
95
+ '달 위상에 따른 바탕 하늘 밝기 증가',
96
+ '관측자의 시야각에 따른 시야 제한',
97
+ ],
98
+ },
99
+ {
100
+ type: 'tip',
101
+ title: '어두운 밤하늘 추천',
102
+ html: '보틀 2등급 또는 3등급 장소에서 관측하면 도심 마당에 비해 볼 수 있는 희미한 유성이 급격히 늘어납니다.',
103
+ },
104
+ {
105
+ type: 'title',
106
+ text: '달 위상과 광해의 영향',
107
+ level: 2,
108
+ },
109
+ {
110
+ type: 'paragraph',
111
+ html: '달빛은 유성우 극대기 동안 가장 큰 자연 광해원입니다. 보름달은 희미한 유성 궤적을 지워버려 시골 밤하늘에서도 실제 관측 수치를 70퍼센트 이상 감소시킵니다.',
112
+ },
113
+ {
114
+ type: 'paragraph',
115
+ html: '월몰 후 또는 월출 전 시간을 선택하면 바탕 하늘과의 대비를 극대화할 수 있습니다.',
116
+ },
117
+ {
118
+ type: 'title',
119
+ text: '유성 관측 밤을 준비하는 방법',
120
+ level: 2,
121
+ },
122
+ {
123
+ type: 'paragraph',
124
+ html: '유성 관측은 인내심과 따뜻한 복장이 필수적입니다. 유성은 하늘 전체에 돌발적으로 나타나므로 망원경보다 맨눈으로 보는 것이 시야 확보에 훨씬 유리합니다.',
125
+ },
126
+ {
127
+ type: 'list',
128
+ items: [
129
+ '여름철 밤이라도 겹쳐 입을 따뜻한 옷 준비',
130
+ '야외 의자용 침낭이나 따뜻한 담요 준비',
131
+ '체온 유지를 위한 따뜻한 음료 준비',
132
+ '밝은 화구가 보이면 시각과 방향 기록',
133
+ ],
134
+ },
135
+ {
136
+ type: 'title',
137
+ text: '기술적 계산 방법론',
138
+ level: 2,
139
+ },
140
+ {
141
+ type: 'paragraph',
142
+ html: '본 계산기는 극대 ZHR 수치에 기하학적 고도 보정 보틀 광해 감쇄 달빛 영향을 종합하여 시뮬레이션 수치를 제공합니다.',
143
+ },
144
+ ],
145
+ faq: [
146
+ {
147
+ question: '제니스 시간당 출현율 ZHR이란 무엇인가요',
148
+ answer: 'ZHR은 어두운 밤하늘과 천정 복사점 조건에서의 이론상 최대 시간당 유성 수입니다.',
149
+ },
150
+ {
151
+ question: '공표된 ZHR보다 유성이 덜 보이는 이유는 무엇인가요',
152
+ answer: '공표 ZHR은 완벽한 조건을 가정합니다. 광해 낮은 복사점 달빛이 실제 수를 줄입니다.',
153
+ },
154
+ {
155
+ question: '유성을 보려면 망원경이 필요한가요',
156
+ answer: '아닙니다. 망원경은 시야가 너무 좁습니다. 맨눈 관측이 가장 좋습니다.',
157
+ },
158
+ ],
159
+ howTo: [
160
+ {
161
+ name: '유성우 선택',
162
+ text: '페르세우스자리 유성우 등 원하는 유성우를 선택하거나 ZHR 값을 입력합니다.',
163
+ },
164
+ {
165
+ name: '위도 설정',
166
+ text: '슬라이더를 사용해 현재 관측지 위도를 맞춥니다.',
167
+ },
168
+ {
169
+ name: '광해 및 달 위상 설정',
170
+ text: '보틀 등급과 달 조도를 입력합니다.',
171
+ },
172
+ {
173
+ name: '예측 수치 확인',
174
+ text: '차트를 통해 최적의 시간대를 확인합니다.',
175
+ },
176
+ ],
177
+ bibliography: METEOR_PLANNER_BIBLIOGRAPHY,
178
+ schemas: [
179
+ {
180
+ '@context': 'https://schema.org',
181
+ '@type': 'SoftwareApplication',
182
+ name: '유성우 관측 시간대 플래너',
183
+ operatingSystem: 'Any',
184
+ applicationCategory: 'EducationalApplication',
185
+ offers: {
186
+ '@type': 'Offer',
187
+ price: '0',
188
+ priceCurrency: 'KRW',
189
+ },
190
+ },
191
+ {
192
+ '@context': 'https://schema.org',
193
+ '@type': 'FAQPage',
194
+ mainEntity: [
195
+ {
196
+ '@type': 'Question',
197
+ name: '제니스 시간당 출현율 ZHR이란 무엇인가요',
198
+ acceptedAnswer: {
199
+ '@type': 'Answer',
200
+ text: 'ZHR은 어두운 밤하늘과 천정 복사점 조건에서의 이론상 최대 시간당 유성 수입니다.',
201
+ },
202
+ },
203
+ ],
204
+ },
205
+ {
206
+ '@context': 'https://schema.org',
207
+ '@type': 'HowTo',
208
+ name: '유성우 관측 플래너 사용법',
209
+ description: '최적의 유성 관측 시간대를 찾는 단계입니다.',
210
+ step: [
211
+ {
212
+ '@type': 'HowToStep',
213
+ name: '유성우 선택',
214
+ text: '페르세우스자리 유성우 등 원하는 유성우를 선택하거나 ZHR 값을 입력합니다.',
215
+ },
216
+ ],
217
+ },
218
+ ],
219
+ };