Replies: 1 comment
|
The rhs are saved as multi dimensional datasets, it is a list of floats when originally grabbed by the harmony api. It becomes a list of strings when converting into csv. Either way, the 100 rhs need to be separated into columns and relabeled as rh0, rh1, rh2, etc. Do this in a spreadsheet with "split to text" and semi-auto label the resulting columns. Or, program a function to extract the values from the list into columns that get relabeled and replace the original rh column in the geodataframe, before converting and exporting the geodataframe. Note, the z profile datasets and several others from L2B or other levels products are similarly formatted and will need to be adjusted into that correct format. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Getting the rhs from L2A data give a column like this. how do I extract the rh values?
rh
[-6.289999961853027, -5.389999866485596, -4.75, -4.269999980926514, -3.8499999046325684, -3.5199999809265137, -3.2200000286102295, -2.950000047683716, -2.7300000190734863, -2.5, -2.319999933242798, -2.130000114440918, -1.940000057220459, -1.7599999904632568, -1.6100000143051147, -1.4199999570846558, -1.2699999809265137, -1.1200000047683716, -0.9700000286102295, -0.8199999928474426, -0.6700000166893005, -0.5600000023841858, -0.4399999976158142, -0.28999999165534973, -0.18000000715255737, -0.07000000029802322, 0.029999999329447746, 0.14000000059604645, 0.25999999046325684, 0.4099999964237213, 0.5199999809265137, 0.6299999952316284, 0.7799999713897705, 0.8899999856948853, 1.0099999904632568, 1.1200000047683716, 1.2699999809265137, 1.3799999952316284, 1.4900000095367432, 1.6399999856948853, 1.7599999904632568, 1.8700000047683716, 2.0199999809265137, 2.130000114440918, 2.2799999713897705, 2.390000104904175, 2.5, 2.6500000953674316, 2.7699999809265137, 2.9200000762939453, 3.0299999713897705, 3.140000104904175, 3.2899999618530273, 3.4000000953674316, 3.5199999809265137, 3.6700000762939453, 3.7799999713897705, 3.890000104904175, 4.039999961853027, 4.150000095367432, 4.269999980926514, 4.420000076293945, 4.53000020980835, 4.679999828338623, 4.789999961853027, 4.900000095367432, 5.010000228881836, 5.159999847412109, 5.28000020980835, 5.389999866485596, 5.539999961853027, 5.650000095367432, 5.800000190734863, 5.949999809265137, 6.099999904632568, 6.25, 6.400000095367432, 6.550000190734863, 6.739999771118164, 6.889999866485596, 7.070000171661377, 7.260000228881836, 7.449999809265137, 7.639999866485596, 7.820000171661377, 8.050000190734863, 8.270000457763672, 8.460000038146973, 8.649999618530273, 8.869999885559082, 9.0600004196167, 9.279999732971191, 9.510000228881836, 9.729999542236328, 10.0, 10.260000228881836, 10.5600004196167, 10.899999618530273, 11.34000015258789, 11.979999542236328, 12.880000114440918]
All reactions