The OpenPMD standard supports offset fields for parameters such as x, y, z, t which are not supported in ParticleGroup.
Copying my suggestion from #152 on offsets and to start the discussion about if we want to include them in ParticleGroup.
One path forward could be to promote x, y, z, t... to properties and have the actual fields be raw_x, offset_x with .x returning raw_x + offset_x. This would keep the current behavior while supporting the offset fields (which are in the OpenPMD standard).
The OpenPMD standard supports offset fields for parameters such as
x,y,z,twhich are not supported inParticleGroup.Copying my suggestion from #152 on offsets and to start the discussion about if we want to include them in
ParticleGroup.