GEDI Subsetter 0.13.0 Released #1211
chuckwondo
announced in
Announcements
Replies: 0 comments
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.
-
GEDI Subsetter 0.13.0 was released yesterday with the following new functionality:
Indexing and slicing of 2D datasets at any level with any name is now supported.
This means that a 2D dataset named
geolocation/rh_a5(example from L2A) can be specified as a column in thecolumnsinput list in multiple ways:geolocation/rh_a5: the output file will contain a column of the same name, with each value in the column being a row (list) of values from the 2D dataset (NOTE: this specific case works only when the output file is a.parquetfile)geolocation/rh_a5[i], whereiis a 0-based index: the output file will contain a column of the same name (whereiis an integer) containing the values from the i-th column of the datasetgeolocation/rh_a5[:]: the output file will contain all columns from the 2D dataset exploded into separate columns in the output, each named likegeolocation/rh_a5[i](0 <= i < #cols)geolocation/rh_a5[start:end], wherestartandendare optional 0-based indexes: output file will contain the specified range of columns (e.g.,geolocation/rh_a5[:10]to include the first 10 columns expanded into the output).For more details, see the updated docs describing the
columninput.Beta Was this translation helpful? Give feedback.
All reactions