@jjlmoya/utils-nature 1.20.0 → 1.22.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 +1 -1
- package/src/category/index.ts +3 -2
- package/src/entries.ts +5 -1
- package/src/index.ts +4 -0
- package/src/pages/[locale]/[slug].astro +5 -4
- package/src/tests/diacritics_density.test.ts +1 -1
- package/src/tests/inverted_punctuation.test.ts +1 -1
- package/src/tests/script_density.test.ts +1 -1
- package/src/tests/seo_length.test.ts +1 -0
- package/src/tests/seo_translation_completeness.test.ts +69 -0
- package/src/tests/title_quality.test.ts +1 -1
- package/src/tests/tool_validation.test.ts +2 -3
- package/src/tests/translation_copy.test.ts +2 -2
- package/src/tool/compostBinVolumeRatioCalculator/bibliography.astro +18 -0
- package/src/tool/compostBinVolumeRatioCalculator/bibliography.ts +12 -0
- package/src/tool/compostBinVolumeRatioCalculator/component.astro +77 -0
- package/src/tool/compostBinVolumeRatioCalculator/compost-bin-volume-ratio-calculator.css +509 -0
- package/src/tool/compostBinVolumeRatioCalculator/controller.ts +189 -0
- package/src/tool/compostBinVolumeRatioCalculator/dom-views.ts +162 -0
- package/src/tool/compostBinVolumeRatioCalculator/entry.ts +28 -0
- package/src/tool/compostBinVolumeRatioCalculator/evaluator.ts +26 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/de.ts +193 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/en.ts +193 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/es.ts +193 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/fr.ts +193 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/id.ts +185 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/it.ts +193 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/ja.ts +190 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/ko.ts +190 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/nl.ts +190 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/pl.ts +190 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/pt.ts +190 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/ru.ts +190 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/sv.ts +190 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/tr.ts +190 -0
- package/src/tool/compostBinVolumeRatioCalculator/i18n/zh.ts +190 -0
- package/src/tool/compostBinVolumeRatioCalculator/index.ts +11 -0
- package/src/tool/compostBinVolumeRatioCalculator/logic.test.ts +55 -0
- package/src/tool/compostBinVolumeRatioCalculator/logic.ts +165 -0
- package/src/tool/compostBinVolumeRatioCalculator/seo.astro +23 -0
- package/src/tool/compostBinVolumeRatioCalculator/storage.ts +25 -0
- package/src/tool/compostBinVolumeRatioCalculator/ui.ts +54 -0
- package/src/tool/cricketThermometer/component.astro +1 -1
- package/src/tool/cricketThermometer/i18n/de.ts +2 -2
- package/src/tool/cricketThermometer/i18n/en.ts +2 -2
- package/src/tool/cricketThermometer/i18n/es.ts +2 -2
- package/src/tool/cricketThermometer/i18n/fr.ts +2 -2
- package/src/tool/cricketThermometer/i18n/id.ts +2 -2
- package/src/tool/cricketThermometer/i18n/it.ts +2 -2
- package/src/tool/cricketThermometer/i18n/ja.ts +2 -2
- package/src/tool/cricketThermometer/i18n/ko.ts +2 -2
- package/src/tool/cricketThermometer/i18n/nl.ts +2 -2
- package/src/tool/cricketThermometer/i18n/pl.ts +2 -2
- package/src/tool/cricketThermometer/i18n/pt.ts +2 -2
- package/src/tool/cricketThermometer/i18n/ru.ts +2 -2
- package/src/tool/cricketThermometer/i18n/sv.ts +2 -2
- package/src/tool/cricketThermometer/i18n/tr.ts +2 -2
- package/src/tool/cricketThermometer/i18n/zh.ts +2 -2
- package/src/tool/cricketThermometer/index.ts +1 -0
- package/src/tool/digitalCarbon/component.astro +3 -3
- package/src/tool/digitalCarbon/i18n/de.ts +2 -2
- package/src/tool/digitalCarbon/i18n/en.ts +2 -2
- package/src/tool/digitalCarbon/i18n/es.ts +2 -2
- package/src/tool/digitalCarbon/i18n/fr.ts +2 -2
- package/src/tool/digitalCarbon/i18n/id.ts +2 -2
- package/src/tool/digitalCarbon/i18n/it.ts +2 -2
- package/src/tool/digitalCarbon/i18n/ja.ts +2 -2
- package/src/tool/digitalCarbon/i18n/ko.ts +2 -2
- package/src/tool/digitalCarbon/i18n/nl.ts +2 -2
- package/src/tool/digitalCarbon/i18n/pl.ts +2 -2
- package/src/tool/digitalCarbon/i18n/pt.ts +2 -2
- package/src/tool/digitalCarbon/i18n/ru.ts +2 -2
- package/src/tool/digitalCarbon/i18n/sv.ts +2 -2
- package/src/tool/digitalCarbon/i18n/tr.ts +2 -2
- package/src/tool/digitalCarbon/i18n/zh.ts +2 -2
- package/src/tool/digitalCarbon/index.ts +1 -0
- package/src/tool/rainHarvester/i18n/de.ts +2 -2
- package/src/tool/rainHarvester/i18n/en.ts +2 -2
- package/src/tool/rainHarvester/i18n/es.ts +2 -2
- package/src/tool/rainHarvester/i18n/fr.ts +2 -2
- package/src/tool/rainHarvester/i18n/id.ts +2 -2
- package/src/tool/rainHarvester/i18n/it.ts +2 -2
- package/src/tool/rainHarvester/i18n/ja.ts +2 -2
- package/src/tool/rainHarvester/i18n/ko.ts +2 -2
- package/src/tool/rainHarvester/i18n/nl.ts +2 -2
- package/src/tool/rainHarvester/i18n/pl.ts +2 -2
- package/src/tool/rainHarvester/i18n/pt.ts +2 -2
- package/src/tool/rainHarvester/i18n/ru.ts +2 -2
- package/src/tool/rainHarvester/i18n/sv.ts +2 -2
- package/src/tool/rainHarvester/i18n/tr.ts +2 -2
- package/src/tool/rainHarvester/i18n/zh.ts +2 -2
- package/src/tool/rainHarvester/index.ts +1 -0
- package/src/tool/seedCalculator/i18n/de.ts +2 -2
- package/src/tool/seedCalculator/i18n/en.ts +2 -2
- package/src/tool/seedCalculator/i18n/es.ts +2 -2
- package/src/tool/seedCalculator/i18n/fr.ts +2 -2
- package/src/tool/seedCalculator/i18n/id.ts +2 -2
- package/src/tool/seedCalculator/i18n/it.ts +2 -2
- package/src/tool/seedCalculator/i18n/ja.ts +2 -2
- package/src/tool/seedCalculator/i18n/ko.ts +2 -2
- package/src/tool/seedCalculator/i18n/nl.ts +2 -2
- package/src/tool/seedCalculator/i18n/pl.ts +2 -2
- package/src/tool/seedCalculator/i18n/pt.ts +2 -2
- package/src/tool/seedCalculator/i18n/ru.ts +2 -2
- package/src/tool/seedCalculator/i18n/sv.ts +2 -2
- package/src/tool/seedCalculator/i18n/tr.ts +2 -2
- package/src/tool/seedCalculator/i18n/zh.ts +2 -2
- package/src/tool/seedCalculator/index.ts +1 -0
- package/src/tool/urbanGardenPlanner/bibliography.astro +9 -0
- package/src/tool/urbanGardenPlanner/bibliography.ts +16 -0
- package/src/tool/urbanGardenPlanner/component.astro +131 -0
- package/src/tool/urbanGardenPlanner/controller.ts +88 -0
- package/src/tool/urbanGardenPlanner/dom-views.ts +84 -0
- package/src/tool/urbanGardenPlanner/entry.ts +29 -0
- package/src/tool/urbanGardenPlanner/evaluator.ts +27 -0
- package/src/tool/urbanGardenPlanner/i18n/de.ts +50 -0
- package/src/tool/urbanGardenPlanner/i18n/en.ts +179 -0
- package/src/tool/urbanGardenPlanner/i18n/es.ts +50 -0
- package/src/tool/urbanGardenPlanner/i18n/fr.ts +50 -0
- package/src/tool/urbanGardenPlanner/i18n/id.ts +50 -0
- package/src/tool/urbanGardenPlanner/i18n/it.ts +45 -0
- package/src/tool/urbanGardenPlanner/i18n/ja.ts +39 -0
- package/src/tool/urbanGardenPlanner/i18n/ko.ts +39 -0
- package/src/tool/urbanGardenPlanner/i18n/nl.ts +39 -0
- package/src/tool/urbanGardenPlanner/i18n/pl.ts +39 -0
- package/src/tool/urbanGardenPlanner/i18n/pt.ts +39 -0
- package/src/tool/urbanGardenPlanner/i18n/ru.ts +39 -0
- package/src/tool/urbanGardenPlanner/i18n/sv.ts +39 -0
- package/src/tool/urbanGardenPlanner/i18n/tr.ts +104 -0
- package/src/tool/urbanGardenPlanner/i18n/zh.ts +104 -0
- package/src/tool/urbanGardenPlanner/index.ts +11 -0
- package/src/tool/urbanGardenPlanner/logic.test.ts +45 -0
- package/src/tool/urbanGardenPlanner/logic.ts +55 -0
- package/src/tool/urbanGardenPlanner/seo.astro +15 -0
- package/src/tool/urbanGardenPlanner/storage.ts +25 -0
- package/src/tool/urbanGardenPlanner/ui.ts +38 -0
- package/src/tool/urbanGardenPlanner/urban-garden-rainwater-and-soil-planner.css +531 -0
- package/src/tools.ts +5 -2
- package/src/types.ts +4 -4
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
FAQPage,
|
|
3
|
+
HowTo,
|
|
4
|
+
SoftwareApplication,
|
|
5
|
+
WithContext,
|
|
6
|
+
} from "schema-dts";
|
|
7
|
+
import { bibliography } from "../bibliography";
|
|
8
|
+
import type { CompostBinVolumeRatioCalculatorLocaleContent } from "../entry";
|
|
9
|
+
|
|
10
|
+
const slug = "calculadora-volumen-compostador-proporcion-marrones-verdes";
|
|
11
|
+
const title = "Calculadora de Volumen de Compostador y Proporcion Marrones Verdes";
|
|
12
|
+
const description =
|
|
13
|
+
"Calcula el volumen interno de un compostador rectangular o cilindrico y comprueba el equilibrio de marrones, verdes, humedad y aire.";
|
|
14
|
+
|
|
15
|
+
const faq = [
|
|
16
|
+
{
|
|
17
|
+
question: "¿Como se calcula el volumen de un compostador?",
|
|
18
|
+
answer:
|
|
19
|
+
"Mide el interior del recipiente. Para un compostador rectangular, multiplica ancho por profundidad por altura y convierte centimetros cubicos a litros. Para uno cilindrico, usa pi por el radio al cuadrado por la altura.",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: "¿Cual es la proporcion adecuada de marrones y verdes en el compost?",
|
|
23
|
+
answer:
|
|
24
|
+
"Un punto de partida practico son dos o tres partes de materiales marrones ricos en carbono en volumen por cada parte de verdes ricos en nitrogeno. Ajusta observando la humedad, el olor y la ventilacion.",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: "¿Cuanto compost puedo introducir en el contenedor?",
|
|
28
|
+
answer:
|
|
29
|
+
"Compara el volumen de tus materiales con la capacidad interna del compostador. Deja espacio libre para la circulacion de aire y el volteo de la pila.",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
question: "¿Que significa la humedad de una esponja escurrida?",
|
|
33
|
+
answer:
|
|
34
|
+
"Los materiales deben sentirse humedos al tacto sin soltar gotas de agua al apretarlos. Una pila seca frena la descomposicion, mientras que una empapada requiere estructura seca y volteo.",
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
|
|
38
|
+
const howTo = [
|
|
39
|
+
{
|
|
40
|
+
name: "Seleccionar la forma del compostador",
|
|
41
|
+
text: "Elige la forma rectangular o cilindrica e introduce las dimensiones internas en centimetros o pulgadas.",
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: "Añadir los volumenes de material",
|
|
45
|
+
text: "Estima el volumen por separado de los materiales marrones ricos en carbono y los materiales verdes ricos en nitrogeno.",
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: "Ajustar la sensacion de humedad",
|
|
49
|
+
text: "Elige entre seco, esponja escurrida o mojado para que las recomendaciones de mantenimiento coincidan con el estado de tu pila.",
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
name: "Interpretar el balance",
|
|
53
|
+
text: "Revisa la capacidad, el nivel de llenado, la proporcion y los avisos para decidir si añadir marrones, agua o voltear el compost.",
|
|
54
|
+
},
|
|
55
|
+
];
|
|
56
|
+
|
|
57
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
58
|
+
"@context": "https://schema.org",
|
|
59
|
+
"@type": "FAQPage",
|
|
60
|
+
mainEntity: faq.map((item) => ({
|
|
61
|
+
"@type": "Question",
|
|
62
|
+
name: item.question,
|
|
63
|
+
acceptedAnswer: { "@type": "Answer", text: item.answer },
|
|
64
|
+
})),
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
const howToSchema: WithContext<HowTo> = {
|
|
68
|
+
"@context": "https://schema.org",
|
|
69
|
+
"@type": "HowTo",
|
|
70
|
+
name: title,
|
|
71
|
+
description,
|
|
72
|
+
step: howTo.map((step, index) => ({
|
|
73
|
+
"@type": "HowToStep",
|
|
74
|
+
position: index + 1,
|
|
75
|
+
name: step.name,
|
|
76
|
+
text: step.text,
|
|
77
|
+
})),
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
81
|
+
"@context": "https://schema.org",
|
|
82
|
+
"@type": "SoftwareApplication",
|
|
83
|
+
name: title,
|
|
84
|
+
description,
|
|
85
|
+
applicationCategory: "UtilityApplication",
|
|
86
|
+
operatingSystem: "All",
|
|
87
|
+
offers: { "@type": "Offer", price: "0", priceCurrency: "EUR" },
|
|
88
|
+
inLanguage: "es",
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
export const content: CompostBinVolumeRatioCalculatorLocaleContent = {
|
|
92
|
+
slug,
|
|
93
|
+
title,
|
|
94
|
+
description,
|
|
95
|
+
ui: {
|
|
96
|
+
unitMetric: "Metrico",
|
|
97
|
+
unitImperial: "Imperial",
|
|
98
|
+
shapeTitle: "Forma del compostador",
|
|
99
|
+
shapeRectangular: "Rectangular",
|
|
100
|
+
shapeCylindrical: "Cilindrico",
|
|
101
|
+
widthLabel: "Ancho interior",
|
|
102
|
+
depthLabel: "Profundidad interior",
|
|
103
|
+
diameterLabel: "Diametro interior",
|
|
104
|
+
heightLabel: "Altura interior",
|
|
105
|
+
brownLabel: "Marrones",
|
|
106
|
+
greenLabel: "Verdes",
|
|
107
|
+
moistureTitle: "Sensacion de humedad",
|
|
108
|
+
moistureDry: "Seco",
|
|
109
|
+
moistureSponge: "Esponja escurrida",
|
|
110
|
+
moistureWet: "Mojado",
|
|
111
|
+
moistureAdviceDry: "Seco: humedece gradualmente y voltea la pila.",
|
|
112
|
+
moistureAdviceSponge: "Correcto: mantén el punto de esponja escurrida.",
|
|
113
|
+
moistureAdviceWet: "Mojado: añade marrones secos y voltea.",
|
|
114
|
+
recipeTitle: "Añade la mezcla recomendada",
|
|
115
|
+
recipeKitchen: "Restos de cocina",
|
|
116
|
+
recipeGarden: "Lote de jardin",
|
|
117
|
+
recipeLeafy: "Mezcla de hojas",
|
|
118
|
+
sceneTitle: "Corte transversal de la pila",
|
|
119
|
+
resultCapacity: "Capacidad interna del compostador",
|
|
120
|
+
resultMaterials: "Materiales introducidos",
|
|
121
|
+
resultRatio: "Proporcion marrones a verdes",
|
|
122
|
+
resultFill: "Capacidad utilizada",
|
|
123
|
+
brownTarget: "Objetivo de marrones",
|
|
124
|
+
waterAction: "Humedad",
|
|
125
|
+
airAction: "Aire y estructura",
|
|
126
|
+
statusBalanced: "Buen equilibrio inicial",
|
|
127
|
+
statusTooGreen: "Añade mas marrones",
|
|
128
|
+
statusTooBrown: "Añade mas verdes",
|
|
129
|
+
statusNoGreens: "Añade algo de material verde",
|
|
130
|
+
statusOverfilled: "La pila supera la capacidad del recipiente",
|
|
131
|
+
statusDry: "La pila esta seca",
|
|
132
|
+
statusWet: "La pila esta demasiado mojada",
|
|
133
|
+
statusGoodMoisture: "La humedad esta en el rango optimo",
|
|
134
|
+
statusNote: "Voltea la pila para abrir bolsas de aire.",
|
|
135
|
+
volumeUnitLiters: "L",
|
|
136
|
+
volumeUnitGallons: "gal",
|
|
137
|
+
dimensionUnitCm: "cm",
|
|
138
|
+
dimensionUnitIn: "in",
|
|
139
|
+
formulaTitle: "Calculo geometrico del volumen",
|
|
140
|
+
formulaText:
|
|
141
|
+
"La calculadora determina la capacidad interna a partir de las medidas interiores. Los contenedores rectangulares aplican ancho × profundidad × altura. Los cilindricos utilizan π × radio² × altura. Todos los volumenes se unifican para calcular el llenado.",
|
|
142
|
+
practicalTitle: "La proporcion como punto de partida",
|
|
143
|
+
practicalText:
|
|
144
|
+
"El objetivo sugiere de dos a tres veces el volumen de marrones respecto al de verdes. La humedad y la aireacion son cruciales: busca la textura de una esponja escurrida y voltea al compactarse.",
|
|
145
|
+
localNote:
|
|
146
|
+
"Todas las mediciones se procesan localmente en el navegador. Esta herramienta es una guia de planificacion urbana y domestica.",
|
|
147
|
+
resetLabel: "Restablecer",
|
|
148
|
+
},
|
|
149
|
+
seo: [
|
|
150
|
+
{
|
|
151
|
+
type: "title",
|
|
152
|
+
text: "Calcula la Capacidad Real de un Compostador Domestico",
|
|
153
|
+
level: 2,
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: "paragraph",
|
|
157
|
+
html: "Una calculadora de volumen para compostadores es mas util cuando trabaja con medidas interiores reales en lugar de la capacidad comercial anunciada. Introduce el ancho, profundidad y altura de un recipiente rectangular o el diametro y altura de uno cilindrico para obtener el volumen neto en litros o galones.",
|
|
158
|
+
},
|
|
159
|
+
{ type: "title", text: "Formulas de Volumen Geometrico", level: 3 },
|
|
160
|
+
{
|
|
161
|
+
type: "paragraph",
|
|
162
|
+
html: "En contenedores rectangulares se usa la formula <code>ancho × profundidad × altura</code>. Si mides en centimetros, divide el resultado entre 1.000 para convertir a litros. Para recipientes cilindricos, aplica <code>π × radio² × altura</code>, donde el radio es la mitad del diametro interno.",
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: "list",
|
|
166
|
+
items: [
|
|
167
|
+
"<strong>Rectangular:</strong> ancho × profundidad × altura.",
|
|
168
|
+
"<strong>Cilindrico:</strong> π × radio² × altura.",
|
|
169
|
+
"<strong>Conversion:</strong> 1.000 centimetros cubicos equivalen a 1 litro.",
|
|
170
|
+
"<strong>Llenado:</strong> suma del volumen de marrones y verdes frente a la capacidad interna.",
|
|
171
|
+
],
|
|
172
|
+
},
|
|
173
|
+
{ type: "title", text: "Equilibrio entre Marrones y Verdes", level: 3 },
|
|
174
|
+
{
|
|
175
|
+
type: "paragraph",
|
|
176
|
+
html: "Una buena proporcion inicial es aportar entre dos y tres partes de materia marron rica en carbono por cada parte de materia verde rica en nitrogeno. Los marrones incluyen hojas secas y carton triturado, mientras que los verdes aportan humedad y nitrogeno a traves de restos de cocina y podas frescas.",
|
|
177
|
+
},
|
|
178
|
+
{ type: "title", text: "Control de Humedad y Ventilacion", level: 3 },
|
|
179
|
+
{
|
|
180
|
+
type: "paragraph",
|
|
181
|
+
html: "La pila debe mantener la textura de una esponja humeda escurrida. Si esta demasiado seca, los microorganismos se inactivan; si esta empapada, se pierde oxigeno y pueden aparecer malos olores. Voltear la pila con frecuencia restaura la estructura interna.",
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
type: "tip",
|
|
185
|
+
title: "Usa el resultado como orientacion practica",
|
|
186
|
+
html: "Esta estimacion por volumen no sustituye un analisis quimico C:N de laboratorio. Evita introducir carne, aceites o madera tratada en compostadores domesticos segun las recomendaciones locales.",
|
|
187
|
+
},
|
|
188
|
+
],
|
|
189
|
+
faq,
|
|
190
|
+
bibliography,
|
|
191
|
+
howTo,
|
|
192
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
193
|
+
};
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
FAQPage,
|
|
3
|
+
HowTo,
|
|
4
|
+
SoftwareApplication,
|
|
5
|
+
WithContext,
|
|
6
|
+
} from "schema-dts";
|
|
7
|
+
import { bibliography } from "../bibliography";
|
|
8
|
+
import type { CompostBinVolumeRatioCalculatorLocaleContent } from "../entry";
|
|
9
|
+
|
|
10
|
+
const slug = "calculateur-volume-composteur-ratio-bruns-verts";
|
|
11
|
+
const title = "Calculateur de Volume de Composteur et Ratio Bruns Verts";
|
|
12
|
+
const description =
|
|
13
|
+
"Calculez le volume interne d un composteur rectangulaire ou cylindrique et vérifiez l équilibre pratique entre bruns, verts, humidité et aération.";
|
|
14
|
+
|
|
15
|
+
const faq = [
|
|
16
|
+
{
|
|
17
|
+
question: "Comment calculer le volume d un composteur ?",
|
|
18
|
+
answer:
|
|
19
|
+
"Mesurez l intérieur du bac. Pour un composteur rectangulaire, multipliez la largeur par la profondeur et la hauteur. Pour un cylindre, utilisez pi multiplié par le rayon au carré multiplié par la hauteur.",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: "Quel est le bon ratio entre bruns et verts dans le compost ?",
|
|
23
|
+
answer:
|
|
24
|
+
"Un repère pratique consiste à ajouter deux à trois volumes de matières brunes riches en carbone pour un volume de matières vertes riches en azote. Ajustez selon l humidité et l aération.",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: "Quelle quantité de compost puis-je mettre dans le bac ?",
|
|
28
|
+
answer:
|
|
29
|
+
"Comparez le volume de vos matières avec la capacité interne du composteur et conservez un espace pour la circulation d air et le brassage.",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
question: "Que signifie l humidité d une éponge essorée ?",
|
|
33
|
+
answer:
|
|
34
|
+
"Les matières doivent être humides au toucher sans libérer d eau lorsqu on les presse. Un tas trop sec ralentit la décomposition, tandis qu un tas détrempé manque d oxygène.",
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
|
|
38
|
+
const howTo = [
|
|
39
|
+
{
|
|
40
|
+
name: "Choisir la forme du composteur",
|
|
41
|
+
text: "Sélectionnez la forme rectangulaire ou cylindrique et entrez les dimensions intérieures en centimètres ou en pouces.",
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: "Ajouter les volumes de matières",
|
|
45
|
+
text: "Évaluez le volume séparé des matières brunes carbonées et des matières vertes azotées.",
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: "Ajuster l humidité ressentie",
|
|
49
|
+
text: "Choisissez entre sec, éponge essorée ou mouillé pour obtenir des conseils d entretien adaptés.",
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
name: "Analyser le résultat",
|
|
53
|
+
text: "Utilisez la capacité, le niveau de remplissage et le ratio pour ajuster l apport de bruns ou le brassage.",
|
|
54
|
+
},
|
|
55
|
+
];
|
|
56
|
+
|
|
57
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
58
|
+
"@context": "https://schema.org",
|
|
59
|
+
"@type": "FAQPage",
|
|
60
|
+
mainEntity: faq.map((item) => ({
|
|
61
|
+
"@type": "Question",
|
|
62
|
+
name: item.question,
|
|
63
|
+
acceptedAnswer: { "@type": "Answer", text: item.answer },
|
|
64
|
+
})),
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
const howToSchema: WithContext<HowTo> = {
|
|
68
|
+
"@context": "https://schema.org",
|
|
69
|
+
"@type": "HowTo",
|
|
70
|
+
name: title,
|
|
71
|
+
description,
|
|
72
|
+
step: howTo.map((step, index) => ({
|
|
73
|
+
"@type": "HowToStep",
|
|
74
|
+
position: index + 1,
|
|
75
|
+
name: step.name,
|
|
76
|
+
text: step.text,
|
|
77
|
+
})),
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
81
|
+
"@context": "https://schema.org",
|
|
82
|
+
"@type": "SoftwareApplication",
|
|
83
|
+
name: title,
|
|
84
|
+
description,
|
|
85
|
+
applicationCategory: "UtilityApplication",
|
|
86
|
+
operatingSystem: "All",
|
|
87
|
+
offers: { "@type": "Offer", price: "0", priceCurrency: "EUR" },
|
|
88
|
+
inLanguage: "fr",
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
export const content: CompostBinVolumeRatioCalculatorLocaleContent = {
|
|
92
|
+
slug,
|
|
93
|
+
title,
|
|
94
|
+
description,
|
|
95
|
+
ui: {
|
|
96
|
+
unitMetric: "Métrique",
|
|
97
|
+
unitImperial: "Impérial",
|
|
98
|
+
shapeTitle: "Forme du composteur",
|
|
99
|
+
shapeRectangular: "Rectangulaire",
|
|
100
|
+
shapeCylindrical: "Cylindrique",
|
|
101
|
+
widthLabel: "Largeur intérieure",
|
|
102
|
+
depthLabel: "Profondeur intérieure",
|
|
103
|
+
diameterLabel: "Diamètre intérieur",
|
|
104
|
+
heightLabel: "Hauteur intérieure",
|
|
105
|
+
brownLabel: "Bruns",
|
|
106
|
+
greenLabel: "Verts",
|
|
107
|
+
moistureTitle: "Niveau d humidité",
|
|
108
|
+
moistureDry: "Sec",
|
|
109
|
+
moistureSponge: "Éponge essorée",
|
|
110
|
+
moistureWet: "Mouillé",
|
|
111
|
+
moistureAdviceDry: "Sec: humidifiez progressivement et brassez.",
|
|
112
|
+
moistureAdviceSponge: "Optimal: conservez la texture d une éponge essorée.",
|
|
113
|
+
moistureAdviceWet: "Mouillé: ajoutez des bruns secs et aérer.",
|
|
114
|
+
recipeTitle: "Mélange recommandé",
|
|
115
|
+
recipeKitchen: "Déchets de cuisine",
|
|
116
|
+
recipeGarden: "Déchets de jardin",
|
|
117
|
+
recipeLeafy: "Mélange de feuilles",
|
|
118
|
+
sceneTitle: "Vue en coupe du tas de compost",
|
|
119
|
+
resultCapacity: "Capacité interne du composteur",
|
|
120
|
+
resultMaterials: "Matières ajoutées",
|
|
121
|
+
resultRatio: "Ratio bruns sur verts",
|
|
122
|
+
resultFill: "Capacité utilisée",
|
|
123
|
+
brownTarget: "Objectif matières brunes",
|
|
124
|
+
waterAction: "Humidité",
|
|
125
|
+
airAction: "Air et structure",
|
|
126
|
+
statusBalanced: "Bon équilibre initial",
|
|
127
|
+
statusTooGreen: "Ajoutez plus de bruns",
|
|
128
|
+
statusTooBrown: "Ajoutez plus de verts",
|
|
129
|
+
statusNoGreens: "Ajoutez des matières vertes",
|
|
130
|
+
statusOverfilled: "Le bac est débordé",
|
|
131
|
+
statusDry: "Le tas est trop sec",
|
|
132
|
+
statusWet: "Le tas est trop mouillé",
|
|
133
|
+
statusGoodMoisture: "Humidité optimale",
|
|
134
|
+
statusNote: "Brassez le compost pour récréer des poches d air.",
|
|
135
|
+
volumeUnitLiters: "L",
|
|
136
|
+
volumeUnitGallons: "gal",
|
|
137
|
+
dimensionUnitCm: "cm",
|
|
138
|
+
dimensionUnitIn: "in",
|
|
139
|
+
formulaTitle: "Calcul de volume géométrique",
|
|
140
|
+
formulaText:
|
|
141
|
+
"Le calculateur établit la capacité utile à partir des côtés intérieurs. Pour un bac rectangulaire: largeur × profondeur × hauteur. Pour un bac cylindrique: π × rayon² × hauteur. Tous les volumes sont convertis pour afficher le niveau de remplissage.",
|
|
142
|
+
practicalTitle: "Le ratio comme repère pratique",
|
|
143
|
+
practicalText:
|
|
144
|
+
"L objectif vise deux à trois fois le volume de bruns par rapport aux verts. L humidité et l aération restent essentielles: visez une texture d éponge essorée et brassez régulièrement.",
|
|
145
|
+
localNote:
|
|
146
|
+
"Tous les calculs s effectuent en local dans votre navigateur. Outil d aide à la gestion du compostage domestique.",
|
|
147
|
+
resetLabel: "Réinitialiser",
|
|
148
|
+
},
|
|
149
|
+
seo: [
|
|
150
|
+
{
|
|
151
|
+
type: "title",
|
|
152
|
+
text: "Calculez la Capacité Réelle d un Composteur",
|
|
153
|
+
level: 2,
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: "paragraph",
|
|
157
|
+
html: "Un calculateur de volume de composteur vous aide à mesurer la contenance utile exacte à partir de ses dimensions intérieures. Indiquez la largeur, la profondeur et la hauteur d un composteur rectangulaire ou le diamètre et la hauteur d un modèle cylindrique pour obtenir le volume net en litres ou en gallons.",
|
|
158
|
+
},
|
|
159
|
+
{ type: "title", text: "Formules Géométriques de Volume", level: 3 },
|
|
160
|
+
{
|
|
161
|
+
type: "paragraph",
|
|
162
|
+
html: "Pour un bac rectangulaire, utilisez <code>largeur × profondeur × hauteur</code>. Divisez par 1 000 les centimètres cubes pour obtenir des litres. Pour un cylindre, appliquez <code>π × rayon² × hauteur</code>, où le rayon correspond à la moitié du diamètre intérieur.",
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: "list",
|
|
166
|
+
items: [
|
|
167
|
+
"<strong>Rectangulaire:</strong> largeur × profondeur × hauteur.",
|
|
168
|
+
"<strong>Cylindrique:</strong> π × rayon² × hauteur.",
|
|
169
|
+
"<strong>Litrage:</strong> 1 000 cm3 correspondent à 1 litre.",
|
|
170
|
+
"<strong>Taux d occupation:</strong> volume bruns et verts comparé à la capacité nette.",
|
|
171
|
+
],
|
|
172
|
+
},
|
|
173
|
+
{ type: "title", text: "Équilibre entre Bruns et Verts", level: 3 },
|
|
174
|
+
{
|
|
175
|
+
type: "paragraph",
|
|
176
|
+
html: "Incorporez deux à trois volumes de matières brunes (feuilles mortes, carton broyé) pour un volume de matières vertes azotées (épluchures, tontes fraîches). Le calculateur indique l objectif recommandé en bruns.",
|
|
177
|
+
},
|
|
178
|
+
{ type: "title", text: "Gestion de l Humidité et du Brassage", level: 3 },
|
|
179
|
+
{
|
|
180
|
+
type: "paragraph",
|
|
181
|
+
html: "Maintenez la consistance d une éponge essorée. Un compost trop sec ralentit le processus de décomposition, tandis qu un compost saturé risque de s asphyxier et de dégager de mauvaises odeurs. Le brassage régulier restaure l aération.",
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
type: "tip",
|
|
185
|
+
title: "Recommandation d usage",
|
|
186
|
+
html: "Ce calcul de volume sert de guide pratique pour le jardinier et ne remplace pas une analyse chimique C:N de laboratoire.",
|
|
187
|
+
},
|
|
188
|
+
],
|
|
189
|
+
faq,
|
|
190
|
+
bibliography,
|
|
191
|
+
howTo,
|
|
192
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
193
|
+
};
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
FAQPage,
|
|
3
|
+
HowTo,
|
|
4
|
+
SoftwareApplication,
|
|
5
|
+
WithContext,
|
|
6
|
+
} from "schema-dts";
|
|
7
|
+
import { bibliography } from "../bibliography";
|
|
8
|
+
import type { CompostBinVolumeRatioCalculatorLocaleContent } from "../entry";
|
|
9
|
+
|
|
10
|
+
const slug = "kalkulator-volume-tempat-kompos-rasio-cokelat-hijau";
|
|
11
|
+
const title = "Kalkulator Volume Tempat Kompos dan Rasio Cokelat Hijau";
|
|
12
|
+
const description = "Hitung volume bagian dalam wadah kompos persegi atau silinder dan periksa keseimbangan sampah cokelat, hijau, kelembapan, serta sirkulasi udara.";
|
|
13
|
+
|
|
14
|
+
const faq = [
|
|
15
|
+
{
|
|
16
|
+
question: "Bagaimana cara menghitung volume wadah kompos?",
|
|
17
|
+
answer: "Ukur bagian dalam wadah. Untuk wadah persegi, kalikan lebar, kedalaman, dan tinggi. Untuk silinder, gunakan rumus pi dikali kuadrat jari-jari dikali tinggi dan konversikan sentimeter kubik ke liter.",
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: "Berapa rasio bahan cokelat dan hijau yang ideal?",
|
|
21
|
+
answer: "Panduan praktis adalah dua hingga tiga bagian bahan cokelat kaya karbon untuk satu bagian bahan hijau kaya nitrogen berdasarkan volume. Sesuaikan dengan mengamati kelembapan, bau, dan sirkulasi udara.",
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
question: "Berapa banyak bahan kompos yang dapat dimasukkan?",
|
|
25
|
+
answer: "Bandingkan volume bahan dengan kapasitas wadah bagian dalam. Sisakan ruang untuk sirkulasi udara dan pembalikan kompos tanpa memadatkan isi wadah secara berlebihan.",
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: "Apa arti kelembapan seperti spons yang diperas?",
|
|
29
|
+
answer: "Bahan harus terasa lembap saat disentuh tanpa meneteskan air saat diperas. Kompos yang terlalu kering akan memperlambat penguraian, sedangkan tumpukan yang terlalu basah membutuhkan struktur kering dan pembalikan.",
|
|
30
|
+
},
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
const howTo = [
|
|
34
|
+
{
|
|
35
|
+
name: "Pilih bentuk wadah kompos",
|
|
36
|
+
text: "Pilih bentuk persegi atau silinder lalu masukkan dimensi bagian dalam dalam sentimeter atau inci dengan akurat.",
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: "Masukkan volume bahan terpisah",
|
|
40
|
+
text: "Perkirakan volume terpisah untuk bahan cokelat kaya karbon dan bahan hijau kaya nitrogen.",
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: "Atur kondisi kelembapan tempat kompos",
|
|
44
|
+
text: "Pilih kering, spons diperas, atau basah untuk mendapatkan saran perawatan yang tepat sesuai tumpukan kompos Anda.",
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: "Evaluasi hasil kompos dan tindakan lanjutan",
|
|
48
|
+
text: "Gunakan data kapasitas, tingkat pengisian, dan rasio untuk menyesuaikan penambahan bahan atau pembalikan kompos.",
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
53
|
+
"@context": "https://schema.org",
|
|
54
|
+
"@type": "FAQPage",
|
|
55
|
+
mainEntity: faq.map((item) => ({
|
|
56
|
+
"@type": "Question",
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { "@type": "Answer", text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const howToSchema: WithContext<HowTo> = {
|
|
63
|
+
"@context": "https://schema.org",
|
|
64
|
+
"@type": "HowTo",
|
|
65
|
+
name: title,
|
|
66
|
+
description,
|
|
67
|
+
step: howTo.map((step, index) => ({
|
|
68
|
+
"@type": "HowToStep",
|
|
69
|
+
position: index + 1,
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
"@context": "https://schema.org",
|
|
77
|
+
"@type": "SoftwareApplication",
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: "UtilityApplication",
|
|
81
|
+
operatingSystem: "All",
|
|
82
|
+
offers: { "@type": "Offer", price: "0", priceCurrency: "EUR" },
|
|
83
|
+
inLanguage: "id",
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: CompostBinVolumeRatioCalculatorLocaleContent = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
ui: {
|
|
91
|
+
unitMetric: "Metrik",
|
|
92
|
+
unitImperial: "Imperial",
|
|
93
|
+
shapeTitle: "Bentuk Wadah",
|
|
94
|
+
shapeRectangular: "Persegi Panjang",
|
|
95
|
+
shapeCylindrical: "Silinder",
|
|
96
|
+
widthLabel: "Lebar Dalam",
|
|
97
|
+
depthLabel: "Kedalaman Dalam",
|
|
98
|
+
diameterLabel: "Diameter Dalam",
|
|
99
|
+
heightLabel: "Tinggi Dalam",
|
|
100
|
+
brownLabel: "Bahan Cokelat",
|
|
101
|
+
greenLabel: "Bahan Hijau",
|
|
102
|
+
moistureTitle: "Tingkat Kelembapan",
|
|
103
|
+
moistureDry: "Kering",
|
|
104
|
+
moistureSponge: "Spons Diperas",
|
|
105
|
+
moistureWet: "Basah",
|
|
106
|
+
moistureAdviceDry: "Kering: basahi secara bertahap dan balikkan tumpukan.",
|
|
107
|
+
moistureAdviceSponge: "Ideal: pertahankan kelembapan seperti spons diperas.",
|
|
108
|
+
moistureAdviceWet: "Basah: tambahkan bahan cokelat kering dan balikkan.",
|
|
109
|
+
recipeTitle: "Resep Campuran",
|
|
110
|
+
recipeKitchen: "Sampah Dapur",
|
|
111
|
+
recipeGarden: "Sampah Kebun",
|
|
112
|
+
recipeLeafy: "Campuran Dedaunan",
|
|
113
|
+
sceneTitle: "Potongan Melintang Tumpukan Kompos",
|
|
114
|
+
resultCapacity: "Kapasitas Dalam Wadah",
|
|
115
|
+
resultMaterials: "Bahan Dimasukkan",
|
|
116
|
+
resultRatio: "Rasio Cokelat ke Hijau",
|
|
117
|
+
resultFill: "Kapasitas Terpakai",
|
|
118
|
+
brownTarget: "Target Bahan Cokelat",
|
|
119
|
+
waterAction: "Air & Kelembapan",
|
|
120
|
+
airAction: "Udara & Struktur",
|
|
121
|
+
statusBalanced: "Keseimbangan Awal Bagus",
|
|
122
|
+
statusTooGreen: "Tambahkan bahan cokelat",
|
|
123
|
+
statusTooBrown: "Tambahkan bahan hijau",
|
|
124
|
+
statusNoGreens: "Masukkan bahan hijau",
|
|
125
|
+
statusOverfilled: "Wadah melebihi kapasitas",
|
|
126
|
+
statusDry: "Tumpukan terlalu kering",
|
|
127
|
+
statusWet: "Tumpukan terlalu basah",
|
|
128
|
+
statusGoodMoisture: "Kelembapan dalam rentang ideal",
|
|
129
|
+
statusNote: "Balikkan tumpukan kompos untuk menambah rongga udara.",
|
|
130
|
+
volumeUnitLiters: "L",
|
|
131
|
+
volumeUnitGallons: "gal",
|
|
132
|
+
dimensionUnitCm: "cm",
|
|
133
|
+
dimensionUnitIn: "in",
|
|
134
|
+
formulaTitle: "Perhitungan Volume Geometri",
|
|
135
|
+
formulaText: "Kalkulator menghitung kapasitas bagian dalam dari dimensi yang dimasukkan. Wadah persegi menggunakan rumus lebar × kedalaman × tinggi, sedangkan silinder menggunakan π × jari-jari² × tinggi. Volume bahan diselaraskan ke unit yang sama sebelum pengisian ditampilkan.",
|
|
136
|
+
practicalTitle: "Rasio Sebagai Acuan Awal",
|
|
137
|
+
practicalText: "Target rasio menyarankan dua hingga tiga bagian volume bahan cokelat untuk setiap bagian bahan hijau. Jaga kelembapan dan sirkulasi udara dengan membalikkan tumpukan secara rutin saat memadat.",
|
|
138
|
+
localNote: "Semua perhitungan diproses secara lokal di peramban Anda. Alat ini merupakan panduan perencanaan kompos rumah tangga.",
|
|
139
|
+
resetLabel: "Atur Ulang",
|
|
140
|
+
},
|
|
141
|
+
seo: [
|
|
142
|
+
{
|
|
143
|
+
type: "title",
|
|
144
|
+
text: "Hitung Kapasitas Nyata Wadah Kompos Anda",
|
|
145
|
+
level: 2,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: "paragraph",
|
|
149
|
+
html: "Kalkulator volume wadah kompos sangat berguna ketika menghitung berdasarkan ukuran bagian dalam wadah secara nyata, bukan sekadar label kapasitas pabrik. Masukkan lebar, kedalaman, dan tinggi wadah persegi atau diameter dan tinggi wadah silinder untuk mendapatkan volume bersih dalam liter atau galon serta membandingkannya dengan volume bahan.",
|
|
150
|
+
},
|
|
151
|
+
{ type: "title", text: "Rumus Geometri Volume Wadah", level: 3 },
|
|
152
|
+
{
|
|
153
|
+
type: "paragraph",
|
|
154
|
+
html: "Untuk wadah persegi panjang gunakan rumus <code>lebar × kedalaman × tinggi</code>. Jika pengukuran dalam sentimeter, bagikan hasil sentimeter kubik dengan 1.000 untuk mendapatkan ukuran liter. Untuk wadah silinder gunakan rumus <code>π × jari-jari² × tinggi</code>, di mana jari-jari adalah setengah dari diameter dalam. Ukur hanya ruang bersih di dalam wadah tanpa menghitung ketebalan dinding atau penutup.",
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: "list",
|
|
158
|
+
items: [
|
|
159
|
+
"<strong>Wadah Persegi:</strong> lebar × kedalaman × tinggi.",
|
|
160
|
+
"<strong>Wadah Silinder:</strong> π × jari-jari² × tinggi.",
|
|
161
|
+
"<strong>Konversi Satuan:</strong> 1.000 sentimeter kubik sama dengan 1 liter.",
|
|
162
|
+
"<strong>Tingkat Pengisian:</strong> volume cokelat ditambah hijau dibandingkan dengan kapasitas bagian dalam wadah.",
|
|
163
|
+
],
|
|
164
|
+
},
|
|
165
|
+
{ type: "title", text: "Keseimbangan Bahan Cokelat dan Hijau", level: 3 },
|
|
166
|
+
{
|
|
167
|
+
type: "paragraph",
|
|
168
|
+
html: "Gunakan dua hingga tiga bagian bahan cokelat kaya karbon (seperti daun kering, kardus dicacah, atau ranting kecil) untuk setiap satu bagian bahan hijau kaya nitrogen (seperti sisa makanan dapur dan pemotongan rumput segar). Kalkulator ini memberikan target bahan cokelat yang disarankan, tetapi kelembapan dan sirkulasi udara tumpukan yang menentukan hasil akhirnya.",
|
|
169
|
+
},
|
|
170
|
+
{ type: "title", text: "Manajemen Kelembapan dan Pembalikan Kompos", level: 3 },
|
|
171
|
+
{
|
|
172
|
+
type: "paragraph",
|
|
173
|
+
html: "Pertahankan tingkat kelembapan ideal yang terasa seperti spons yang diperas. Tumpukan kompos yang terlalu kering akan memperlambat aktivitas mikroorganisme, sedangkan tumpukan yang terlalu basah dapat memicu bau tidak sedap akibat kekurangan oksigen. Membalik tumpukan secara berkala akan membuka kembali kantong udara.",
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
type: "tip",
|
|
177
|
+
title: "Catatan Praktis Penggunaan",
|
|
178
|
+
html: "Hasil perhitungan volume ini berfungsi sebagai acuan praktis untuk pembuatan kompos rumah tangga dan tidak menggantikan analisis kimia laboratorium C:N. Hindari memasukkan limbah daging atau kayu beracun.",
|
|
179
|
+
},
|
|
180
|
+
],
|
|
181
|
+
faq,
|
|
182
|
+
bibliography,
|
|
183
|
+
howTo,
|
|
184
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
185
|
+
};
|