@jjlmoya/utils-astronomy 1.24.0 → 1.26.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 (70) hide show
  1. package/package.json +2 -2
  2. package/src/category/i18n/de.ts +57 -57
  3. package/src/category/i18n/en.ts +1 -1
  4. package/src/category/i18n/es.ts +1 -1
  5. package/src/category/i18n/fr.ts +58 -58
  6. package/src/category/i18n/it.ts +1 -1
  7. package/src/category/i18n/nl.ts +57 -57
  8. package/src/category/i18n/pl.ts +57 -57
  9. package/src/category/i18n/pt.ts +1 -1
  10. package/src/category/i18n/ru.ts +57 -57
  11. package/src/category/i18n/sv.ts +57 -57
  12. package/src/category/i18n/zh.ts +57 -57
  13. package/src/category/index.ts +30 -30
  14. package/src/category/seo.astro +15 -15
  15. package/src/components/PreviewNavSidebar.astro +116 -116
  16. package/src/components/PreviewToolbar.astro +143 -143
  17. package/src/data.ts +16 -16
  18. package/src/env.d.ts +5 -5
  19. package/src/index.ts +22 -22
  20. package/src/layouts/PreviewLayout.astro +122 -122
  21. package/src/pages/[locale].astro +251 -251
  22. package/src/pages/index.astro +4 -4
  23. package/src/tests/bibliography_wellformed_export.test.ts +46 -0
  24. package/src/tests/category_seo_quality.test.ts +74 -0
  25. package/src/tests/faq_count.test.ts +1 -1
  26. package/src/tests/mocks/astro_mock.js +2 -2
  27. package/src/tests/no_h1_in_components.test.ts +1 -1
  28. package/src/tests/seo_length.test.ts +1 -1
  29. package/src/tests/seo_parity.test.ts +2 -2
  30. package/src/tests/seo_translation_completeness.test.ts +75 -0
  31. package/src/tests/seo_wellformed_export.test.ts +65 -0
  32. package/src/tests/tool_structure.test.ts +71 -71
  33. package/src/tests/tool_validation.test.ts +146 -146
  34. package/src/tool/bortleVisualizer/bibliography.astro +14 -14
  35. package/src/tool/bortleVisualizer/bibliography.ts +8 -8
  36. package/src/tool/bortleVisualizer/i18n/pl.ts +159 -159
  37. package/src/tool/bortleVisualizer/i18n/ru.ts +159 -159
  38. package/src/tool/deepSpaceScope/bibliography.astro +14 -14
  39. package/src/tool/deepSpaceScope/component.astro +382 -382
  40. package/src/tool/deepSpaceScope/i18n/de.ts +172 -172
  41. package/src/tool/deepSpaceScope/i18n/ko.ts +172 -172
  42. package/src/tool/deepSpaceScope/i18n/pl.ts +172 -172
  43. package/src/tool/deepSpaceScope/i18n/ru.ts +172 -172
  44. package/src/tool/deepSpaceScope/i18n/zh.ts +172 -172
  45. package/src/tool/smartEyepieceCalculator/component.astro +125 -125
  46. package/src/tool/smartEyepieceCalculator/i18n/fr.ts +165 -165
  47. package/src/tool/smartEyepieceCalculator/i18n/ru.ts +165 -165
  48. package/src/tool/smartEyepieceCalculator/i18n/zh.ts +165 -165
  49. package/src/tool/starExposureCalculator/bibliography.astro +14 -14
  50. package/src/tool/starExposureCalculator/bibliography.ts +7 -7
  51. package/src/tool/starExposureCalculator/component.astro +249 -249
  52. package/src/tool/starExposureCalculator/i18n/pl.ts +156 -156
  53. package/src/tool/starExposureCalculator/i18n/ru.ts +156 -156
  54. package/src/tool/telescopeResolution/bibliography.astro +14 -14
  55. package/src/tool/telescopeResolution/component.astro +222 -222
  56. package/src/tool/telescopeResolution/i18n/de.ts +169 -169
  57. package/src/tool/telescopeResolution/i18n/en.ts +169 -169
  58. package/src/tool/telescopeResolution/i18n/es.ts +169 -169
  59. package/src/tool/telescopeResolution/i18n/fr.ts +169 -169
  60. package/src/tool/telescopeResolution/i18n/id.ts +169 -169
  61. package/src/tool/telescopeResolution/i18n/it.ts +169 -169
  62. package/src/tool/telescopeResolution/i18n/ja.ts +169 -169
  63. package/src/tool/telescopeResolution/i18n/ko.ts +169 -169
  64. package/src/tool/telescopeResolution/i18n/nl.ts +169 -169
  65. package/src/tool/telescopeResolution/i18n/pl.ts +169 -169
  66. package/src/tool/telescopeResolution/i18n/pt.ts +169 -169
  67. package/src/tool/telescopeResolution/i18n/ru.ts +169 -169
  68. package/src/tool/telescopeResolution/i18n/sv.ts +169 -169
  69. package/src/tool/telescopeResolution/i18n/tr.ts +169 -169
  70. package/src/tool/telescopeResolution/i18n/zh.ts +169 -169
@@ -1,169 +1,169 @@
1
- import { bibliography } from '../bibliography';
2
- import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
3
- import type { TelescopeResolutionUI, TelescopeResolutionLocaleContent } from '../index';
4
-
5
- const slug = 'telescope-resolution-calculator';
6
- const title = 'Telescope Resolution Calculator (Dawes Limit)';
7
- const description = 'Calculate the resolving power of your telescope with the Dawes Limit and Rayleigh Criterion. Discover the maximum useful magnification and the impact of atmospheric seeing.';
8
-
9
- const ui: TelescopeResolutionUI = {
10
- toolTitle: 'Telescope Resolution',
11
- apertureLabel: 'Telescope Aperture',
12
- unitLabel: 'Unit',
13
- mmUnit: 'Millimeters (mm)',
14
- inUnit: 'Inches (in)',
15
- presetsLabel: 'Common Models',
16
- presetsPlaceholder: '- Select Preset -',
17
- seeingLabel: 'Sky Quality (Seeing)',
18
- dawesLabel: 'Useful Resolution (Dawes)',
19
- arcsecUnit: 'arcseconds',
20
- rayleighLabel: 'Rayleigh Limit',
21
- maxMagLabel: 'Max. Useful Magnification',
22
- seeingAlertPrefix: "Atmosphere limited: Today's seeing",
23
- seeingAlertSuffix: "will prevent you from seeing your telescope's full potential",
24
- simLabel: 'Simulation: Binary Stars',
25
- simExplanation: 'Dawes separates point stars; Rayleigh defines planetary details.',
26
- presets: [
27
- { value: '70', label: '70mm (Beginner Refractor)' },
28
- { value: '114', label: '114mm (4.5") Newtonian' },
29
- { value: '150', label: '150mm (6") Dobsonian' },
30
- { value: '200', label: '200mm (8") Dobsonian' },
31
- { value: '254', label: '254mm (10") Dobsonian' },
32
- { value: '304', label: '304mm (12") Professional' },
33
- ],
34
- };
35
-
36
- const faq: TelescopeResolutionLocaleContent['faq'] = [
37
- {
38
- question: 'What is the Dawes Limit?',
39
- answer: 'The Dawes Limit is an empirical criterion for the angular resolution of a telescope, calculated as 116/D (where D is the diameter in mm). It represents the minimum separation in arcseconds between two stars of similar magnitude that an experienced observer can distinguish as two separate points. It was proposed by British astronomer William Dawes in the 19th century.',
40
- },
41
- {
42
- question: 'What is the difference between Dawes and Rayleigh?',
43
- answer: 'The Dawes Limit (116/D) is empirical and based on human vision for double stars. The Rayleigh Criterion (138/D) is physical, based on the wave nature of light. Rayleigh is more stringent and applies better to details on planetary surfaces (Jupiter\'s bands, lunar craters). Dawes is more useful for separating binary stars.',
44
- },
45
- {
46
- question: 'What is seeing and how does it affect me?',
47
- answer: 'Seeing is the measure of atmospheric turbulence that distorts light passing through the air. On an average night, seeing limits resolution to 1-2 arcseconds, meaning telescopes larger than ~115mm cannot exceed this atmospheric limit. Excellent seeing (0.5") is rare and occurs in high-altitude locations with little thermal activity.',
48
- },
49
- {
50
- question: 'What is the maximum useful magnification of a telescope?',
51
- answer: 'The golden rule is 2x the aperture in mm (or 50x per inch). A 150mm telescope has a useful maximum of 300x. Exceeding this limit makes the image larger but without more detail, only darker and blurrier. Seeing frequently limits this value to 100-150x on average nights.',
52
- },
53
- ];
54
-
55
- const howTo: TelescopeResolutionLocaleContent['howTo'] = [
56
- { name: '1. Enter the aperture', text: 'Type the diameter of your telescope\'s main mirror or lens. You can select a preset from common models.' },
57
- { name: '2. Adjust seeing', text: 'Move the seeing slider to simulate the atmospheric turbulence on your observation night.' },
58
- { name: '3. Interpret results', text: 'Observe the Dawes and Rayleigh limits in arcseconds. The lower the value, the higher the resolution.' },
59
- { name: '4. Check if seeing limits you', text: 'If the seeing alert appears, the atmosphere is limiting your telescope\'s performance that night.' },
60
- ];
61
-
62
- const seo: TelescopeResolutionLocaleContent['seo'] = [
63
- {
64
- type: 'summary',
65
- title: 'Key Points of Telescopic Resolution',
66
- items: [
67
- 'The Dawes Limit (116/D mm) determines the minimum separation between resolvable binary stars.',
68
- 'The Rayleigh Criterion (138/D mm) defines the minimum visible detail on planetary surfaces.',
69
- 'Atmospheric seeing (1-2" typical) usually exceeds the theoretical limit of telescopes larger than 115mm.',
70
- 'Maximum useful magnification is 2x aperture in mm; exceeding this only darkens the image.',
71
- ],
72
- },
73
- { type: 'title', text: 'Astronomical Resolution: Guide to the Dawes Limit and Rayleigh', level: 2 },
74
- {
75
- type: 'paragraph',
76
- html: 'The power of a telescope is not measured by how much it can magnify an image, but by how much detail it can resolve. This capability, known as <strong>resolving power</strong>, depends almost exclusively on the diameter of its aperture. The larger the mirror or main lens, the smaller the details it can separate.',
77
- },
78
- {
79
- type: 'paragraph',
80
- html: 'There are two main criteria for quantifying this resolution. The <strong>Dawes Limit</strong> (116/D arcsec) is empirical, defined by astronomer William Dawes based on double star observations. The <strong>Rayleigh Criterion</strong> (138/D arcsec) is theoretical, derived from the wave physics of light diffraction. Both agree that aperture is the decisive factor.',
81
- },
82
- { type: 'title', text: 'Seeing: The Atmospheric Barrier', level: 2 },
83
- {
84
- type: 'paragraph',
85
- html: 'You can have the world\'s largest telescope, but if the atmosphere is unstable, you won\'t see fine details. <strong>Seeing</strong> is the measure of atmospheric turbulence. On an average night, the atmosphere limits resolution to approximately 1-1.5 arcseconds. For telescopes larger than 115mm, seeing is the bottleneck, not the optics.',
86
- },
87
- {
88
- type: 'table',
89
- headers: ['Aperture', 'Dawes (arcsec)', 'Rayleigh (arcsec)', 'Max. Mag', 'Required Seeing'],
90
- rows: [
91
- ['70mm', '1.66"', '1.97"', '140x', '< 1.7"'],
92
- ['100mm', '1.16"', '1.38"', '200x', '< 1.2"'],
93
- ['150mm', '0.77"', '0.92"', '300x', '< 0.8"'],
94
- ['200mm', '0.58"', '0.69"', '400x', '< 0.6"'],
95
- ['300mm', '0.39"', '0.46"', '600x', '< 0.4"'],
96
- ['400mm', '0.29"', '0.35"', '800x', '< 0.3"'],
97
- ],
98
- },
99
- {
100
- type: 'tip',
101
- title: 'Thermal Acclimatization: The Secret to Detail',
102
- html: 'The greatest enemy of resolution is not external seeing, but <strong>local seeing</strong> inside the telescope tube. The warm air remaining inside when moving the telescope from indoors creates convection currents that destroy detail. Allow your telescope to acclimatize to outdoor temperature for at least 30-60 minutes before observing at high magnification.',
103
- },
104
- { type: 'title', text: 'Collimation: The Alignment that Unlocks Potential', level: 2 },
105
- {
106
- type: 'paragraph',
107
- html: 'A poorly collimated telescope (with misaligned mirrors) will never perform at the Dawes limit, regardless of aperture. <strong>Collimation</strong> is the process of perfectly aligning the secondary and primary mirrors with the focuser. For reflecting telescopes (Newtonians, Dobsonians), collimation is an essential periodic task. Practice using the "star test" technique on a bright star.',
108
- },
109
- { type: 'title', text: 'Practical Tips to Maximize Resolution', level: 2 },
110
- {
111
- type: 'paragraph',
112
- html: 'Beyond aperture and collimation, several observational habits dramatically improve the resolution you achieve in practice. Always wait for the telescope to reach thermal equilibrium with outdoor air - this takes 30-60 minutes for most instruments. Avoid observing over rooftops, parking lots, or any surface that radiates stored heat. Choose nights after cold fronts pass, which tend to bring more stable atmospheric layers. Use the highest magnification that still gives a steady image - if the image is "boiling", drop to a lower power eyepiece and wait for a steadier moment to push higher. Finally, <strong>dark adaptation</strong> matters even for planetary work: give your eyes 20 minutes of complete darkness to maximize cone sensitivity for color detail on planets like Mars or Jupiter.',
113
- },
114
- {
115
- type: 'stats',
116
- columns: 2,
117
- items: [
118
- { label: 'Dawes 150mm', value: '0.77"', icon: 'mdi:flare' },
119
- { label: 'Dawes 300mm', value: '0.39"', icon: 'mdi:flare' },
120
- { label: 'Good Seeing', value: '0.5 - 1.0"', icon: 'mdi:weather-windy' },
121
- { label: 'Average Seeing', value: '1.0 - 2.0"', icon: 'mdi:weather-cloudy' },
122
- ],
123
- },
124
- ];
125
-
126
- const faqSchema: WithContext<FAQPage> = {
127
- '@context': 'https://schema.org',
128
- '@type': 'FAQPage',
129
- mainEntity: faq.map((item) => ({
130
- '@type': 'Question',
131
- name: item.question,
132
- acceptedAnswer: { '@type': 'Answer', text: item.answer },
133
- })),
134
- };
135
-
136
- const howToSchema: WithContext<HowTo> = {
137
- '@context': 'https://schema.org',
138
- '@type': 'HowTo',
139
- name: title,
140
- description,
141
- step: howTo.map((step) => ({
142
- '@type': 'HowToStep',
143
- name: step.name,
144
- text: step.text,
145
- })),
146
- };
147
-
148
- const appSchema: WithContext<SoftwareApplication> = {
149
- '@context': 'https://schema.org',
150
- '@type': 'SoftwareApplication',
151
- name: title,
152
- description,
153
- applicationCategory: 'UtilitiesApplication',
154
- operatingSystem: 'Web',
155
- offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
156
- inLanguage: 'en',
157
- };
158
-
159
- export const content: TelescopeResolutionLocaleContent = {
160
- slug,
161
- title,
162
- description,
163
- ui,
164
- seo,
165
- faq,
166
- bibliography,
167
- howTo,
168
- schemas: [faqSchema as any, howToSchema as any, appSchema],
169
- };
1
+ import { bibliography } from '../bibliography';
2
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
3
+ import type { TelescopeResolutionUI, TelescopeResolutionLocaleContent } from '../index';
4
+
5
+ const slug = 'telescope-resolution-calculator';
6
+ const title = 'Telescope Resolution Calculator (Dawes Limit)';
7
+ const description = 'Calculate the resolving power of your telescope with the Dawes Limit and Rayleigh Criterion. Discover the maximum useful magnification and the impact of atmospheric seeing.';
8
+
9
+ const ui: TelescopeResolutionUI = {
10
+ toolTitle: 'Telescope Resolution',
11
+ apertureLabel: 'Telescope Aperture',
12
+ unitLabel: 'Unit',
13
+ mmUnit: 'Millimeters (mm)',
14
+ inUnit: 'Inches (in)',
15
+ presetsLabel: 'Common Models',
16
+ presetsPlaceholder: '- Select Preset -',
17
+ seeingLabel: 'Sky Quality (Seeing)',
18
+ dawesLabel: 'Useful Resolution (Dawes)',
19
+ arcsecUnit: 'arcseconds',
20
+ rayleighLabel: 'Rayleigh Limit',
21
+ maxMagLabel: 'Max. Useful Magnification',
22
+ seeingAlertPrefix: "Atmosphere limited: Today's seeing",
23
+ seeingAlertSuffix: "will prevent you from seeing your telescope's full potential",
24
+ simLabel: 'Simulation: Binary Stars',
25
+ simExplanation: 'Dawes separates point stars; Rayleigh defines planetary details.',
26
+ presets: [
27
+ { value: '70', label: '70mm (Beginner Refractor)' },
28
+ { value: '114', label: '114mm (4.5") Newtonian' },
29
+ { value: '150', label: '150mm (6") Dobsonian' },
30
+ { value: '200', label: '200mm (8") Dobsonian' },
31
+ { value: '254', label: '254mm (10") Dobsonian' },
32
+ { value: '304', label: '304mm (12") Professional' },
33
+ ],
34
+ };
35
+
36
+ const faq: TelescopeResolutionLocaleContent['faq'] = [
37
+ {
38
+ question: 'What is the Dawes Limit?',
39
+ answer: 'The Dawes Limit is an empirical criterion for the angular resolution of a telescope, calculated as 116/D (where D is the diameter in mm). It represents the minimum separation in arcseconds between two stars of similar magnitude that an experienced observer can distinguish as two separate points. It was proposed by British astronomer William Dawes in the 19th century.',
40
+ },
41
+ {
42
+ question: 'What is the difference between Dawes and Rayleigh?',
43
+ answer: 'The Dawes Limit (116/D) is empirical and based on human vision for double stars. The Rayleigh Criterion (138/D) is physical, based on the wave nature of light. Rayleigh is more stringent and applies better to details on planetary surfaces (Jupiter\'s bands, lunar craters). Dawes is more useful for separating binary stars.',
44
+ },
45
+ {
46
+ question: 'What is seeing and how does it affect me?',
47
+ answer: 'Seeing is the measure of atmospheric turbulence that distorts light passing through the air. On an average night, seeing limits resolution to 1-2 arcseconds, meaning telescopes larger than ~115mm cannot exceed this atmospheric limit. Excellent seeing (0.5") is rare and occurs in high-altitude locations with little thermal activity.',
48
+ },
49
+ {
50
+ question: 'What is the maximum useful magnification of a telescope?',
51
+ answer: 'The golden rule is 2x the aperture in mm (or 50x per inch). A 150mm telescope has a useful maximum of 300x. Exceeding this limit makes the image larger but without more detail, only darker and blurrier. Seeing frequently limits this value to 100-150x on average nights.',
52
+ },
53
+ ];
54
+
55
+ const howTo: TelescopeResolutionLocaleContent['howTo'] = [
56
+ { name: '1. Enter the aperture', text: 'Type the diameter of your telescope\'s main mirror or lens. You can select a preset from common models.' },
57
+ { name: '2. Adjust seeing', text: 'Move the seeing slider to simulate the atmospheric turbulence on your observation night.' },
58
+ { name: '3. Interpret results', text: 'Observe the Dawes and Rayleigh limits in arcseconds. The lower the value, the higher the resolution.' },
59
+ { name: '4. Check if seeing limits you', text: 'If the seeing alert appears, the atmosphere is limiting your telescope\'s performance that night.' },
60
+ ];
61
+
62
+ const seo: TelescopeResolutionLocaleContent['seo'] = [
63
+ {
64
+ type: 'summary',
65
+ title: 'Key Points of Telescopic Resolution',
66
+ items: [
67
+ 'The Dawes Limit (116/D mm) determines the minimum separation between resolvable binary stars.',
68
+ 'The Rayleigh Criterion (138/D mm) defines the minimum visible detail on planetary surfaces.',
69
+ 'Atmospheric seeing (1-2" typical) usually exceeds the theoretical limit of telescopes larger than 115mm.',
70
+ 'Maximum useful magnification is 2x aperture in mm; exceeding this only darkens the image.',
71
+ ],
72
+ },
73
+ { type: 'title', text: 'Astronomical Resolution: Guide to the Dawes Limit and Rayleigh', level: 2 },
74
+ {
75
+ type: 'paragraph',
76
+ html: 'The power of a telescope is not measured by how much it can magnify an image, but by how much detail it can resolve. This capability, known as <strong>resolving power</strong>, depends almost exclusively on the diameter of its aperture. The larger the mirror or main lens, the smaller the details it can separate.',
77
+ },
78
+ {
79
+ type: 'paragraph',
80
+ html: 'There are two main criteria for quantifying this resolution. The <strong>Dawes Limit</strong> (116/D arcsec) is empirical, defined by astronomer William Dawes based on double star observations. The <strong>Rayleigh Criterion</strong> (138/D arcsec) is theoretical, derived from the wave physics of light diffraction. Both agree that aperture is the decisive factor.',
81
+ },
82
+ { type: 'title', text: 'Seeing: The Atmospheric Barrier', level: 2 },
83
+ {
84
+ type: 'paragraph',
85
+ html: 'You can have the world\'s largest telescope, but if the atmosphere is unstable, you won\'t see fine details. <strong>Seeing</strong> is the measure of atmospheric turbulence. On an average night, the atmosphere limits resolution to approximately 1-1.5 arcseconds. For telescopes larger than 115mm, seeing is the bottleneck, not the optics.',
86
+ },
87
+ {
88
+ type: 'table',
89
+ headers: ['Aperture', 'Dawes (arcsec)', 'Rayleigh (arcsec)', 'Max. Mag', 'Required Seeing'],
90
+ rows: [
91
+ ['70mm', '1.66"', '1.97"', '140x', '< 1.7"'],
92
+ ['100mm', '1.16"', '1.38"', '200x', '< 1.2"'],
93
+ ['150mm', '0.77"', '0.92"', '300x', '< 0.8"'],
94
+ ['200mm', '0.58"', '0.69"', '400x', '< 0.6"'],
95
+ ['300mm', '0.39"', '0.46"', '600x', '< 0.4"'],
96
+ ['400mm', '0.29"', '0.35"', '800x', '< 0.3"'],
97
+ ],
98
+ },
99
+ {
100
+ type: 'tip',
101
+ title: 'Thermal Acclimatization: The Secret to Detail',
102
+ html: 'The greatest enemy of resolution is not external seeing, but <strong>local seeing</strong> inside the telescope tube. The warm air remaining inside when moving the telescope from indoors creates convection currents that destroy detail. Allow your telescope to acclimatize to outdoor temperature for at least 30-60 minutes before observing at high magnification.',
103
+ },
104
+ { type: 'title', text: 'Collimation: The Alignment that Unlocks Potential', level: 2 },
105
+ {
106
+ type: 'paragraph',
107
+ html: 'A poorly collimated telescope (with misaligned mirrors) will never perform at the Dawes limit, regardless of aperture. <strong>Collimation</strong> is the process of perfectly aligning the secondary and primary mirrors with the focuser. For reflecting telescopes (Newtonians, Dobsonians), collimation is an essential periodic task. Practice using the "star test" technique on a bright star.',
108
+ },
109
+ { type: 'title', text: 'Practical Tips to Maximize Resolution', level: 2 },
110
+ {
111
+ type: 'paragraph',
112
+ html: 'Beyond aperture and collimation, several observational habits dramatically improve the resolution you achieve in practice. Always wait for the telescope to reach thermal equilibrium with outdoor air - this takes 30-60 minutes for most instruments. Avoid observing over rooftops, parking lots, or any surface that radiates stored heat. Choose nights after cold fronts pass, which tend to bring more stable atmospheric layers. Use the highest magnification that still gives a steady image - if the image is "boiling", drop to a lower power eyepiece and wait for a steadier moment to push higher. Finally, <strong>dark adaptation</strong> matters even for planetary work: give your eyes 20 minutes of complete darkness to maximize cone sensitivity for color detail on planets like Mars or Jupiter.',
113
+ },
114
+ {
115
+ type: 'stats',
116
+ columns: 2,
117
+ items: [
118
+ { label: 'Dawes 150mm', value: '0.77"', icon: 'mdi:flare' },
119
+ { label: 'Dawes 300mm', value: '0.39"', icon: 'mdi:flare' },
120
+ { label: 'Good Seeing', value: '0.5 - 1.0"', icon: 'mdi:weather-windy' },
121
+ { label: 'Average Seeing', value: '1.0 - 2.0"', icon: 'mdi:weather-cloudy' },
122
+ ],
123
+ },
124
+ ];
125
+
126
+ const faqSchema: WithContext<FAQPage> = {
127
+ '@context': 'https://schema.org',
128
+ '@type': 'FAQPage',
129
+ mainEntity: faq.map((item) => ({
130
+ '@type': 'Question',
131
+ name: item.question,
132
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
133
+ })),
134
+ };
135
+
136
+ const howToSchema: WithContext<HowTo> = {
137
+ '@context': 'https://schema.org',
138
+ '@type': 'HowTo',
139
+ name: title,
140
+ description,
141
+ step: howTo.map((step) => ({
142
+ '@type': 'HowToStep',
143
+ name: step.name,
144
+ text: step.text,
145
+ })),
146
+ };
147
+
148
+ const appSchema: WithContext<SoftwareApplication> = {
149
+ '@context': 'https://schema.org',
150
+ '@type': 'SoftwareApplication',
151
+ name: title,
152
+ description,
153
+ applicationCategory: 'UtilitiesApplication',
154
+ operatingSystem: 'Web',
155
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
156
+ inLanguage: 'en',
157
+ };
158
+
159
+ export const content: TelescopeResolutionLocaleContent = {
160
+ slug,
161
+ title,
162
+ description,
163
+ ui,
164
+ seo,
165
+ faq,
166
+ bibliography,
167
+ howTo,
168
+ schemas: [faqSchema as any, howToSchema as any, appSchema],
169
+ };