Replies: 5 comments 1 reply
-
Hi @giuserive, please correct me if I misunderstood but from what I gather, you want:
Okay so here are some information that may help guide you:
|
Beta Was this translation helpful? Give feedback.
-
To add on @axelboc last point, it is not clear for me if you already have data and are creating a "temporary .h5" only to have a plot or if you truly need to work with HDF5 files. Because you can plot any data (i.e. not HDF5) by using the low-level components from @h5web/lib : https://h5web-docs.panosc.eu/?path=/docs/building-blocks-line--docs |
Beta Was this translation helpful? Give feedback.
-
Thank you for the guidance! The purpose of my software is as follows:
Actually, it would also be fine to show three plots with a single axis. The fundamental requirement is that all three plots must be visible at the same time. I create the temporary.h5 file to provide the necessary values for this axis, as I don't have them ready beforehand. Instead, I need to compute them at runtime based on the H5 files uploaded by the user. My initial idea was to create a temporary .h5 file to pass as input to the function that generates the plots because it seemed like the most straightforward solution. However, I’m also fine with directly producing a plot like the others and appending it at the end. The issue is that I haven't figured out which method or function to call to directly create by code a plot of this type(with sidebar): I would really appreciate your help with this! @axelboc and @loichuder |
Beta Was this translation helpful? Give feedback.
-
To plot three 1D curves together with a custom axis, your
The group should also have 4 attributes:
You can see an example of this structure in the mock demo, at
H5Web is a library of React components organised in three packages installable via NPM. Your screenshot shows the main H5Web viewer, which is available as a component called To provide data to the <H5WasmBufferProvider filename="temporary.h5" buffer={buffer}>
<App />
</H5WasmBufferProvider> This is what myHDF5 does internally, in addition to many other things, like providing a way to select/drop multiple files and listing them in a sidebar. When you select a "remote" file in the sidebar, it downloads it and passes the buffer to If you're working off myHDF5 and customising it to your needs, after you generate |
Beta Was this translation helpful? Give feedback.
-
Hi @axelboc, As always, thanks for your help! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I am having some problems with creating a plot in a react application based on myHDF5, but reworked.
I explain what I would like to accomplish:
It would be ideal to create a plot that has only 3 axes of abscissae populated with values, like this or similar:

But even if this is not possible, it would also be fine to create 3 separate plots with only one entry.
The function that I have made is this (with h5wasm lib):
But it retrieve always:

Can anyone help me with this?
Sorry for my bad English
Beta Was this translation helpful? Give feedback.
All reactions