We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa2827 commit 10980ffCopy full SHA for 10980ff
apps/class-solid/src/lib/profiles.ts
@@ -185,7 +185,7 @@ export function getThermodynamicProfiles(
185
186
export function observationsForProfile(obs: Observation, variable = "theta") {
187
return {
188
- label: obs.name || "Unnamed observations",
+ label: obs.name,
189
color: "red",
190
linestyle: "3,10",
191
data: obs.height.map((h, i) => {
@@ -212,7 +212,7 @@ export function observationsForSounding(obs: Observation) {
212
const Td = dewpoint(q, p);
213
return { p, T, Td };
214
}),
215
216
217
218
};
0 commit comments