ICESat-2-Hackweek-2023
ICESat-2-Hackweek-2023 copied to clipboard
Issue on page /tutorials/bathymetry/bathymetry_tutorial.html
Thank you very much for the great work, which help me a lot in extracting the water depths from IceSat 2 data.
During the implementation of the codes, I got the error:
TypeError: atl03sp() got an unexpected keyword argument 'asset'
when using
df_0 = icesat2.atl03sp(parms,asset=asset, version='006', resources=granules_list)
Remove
asset=asset, version='006'
can make the codes work.
However, I can not get the similar list as your features:
Available photon-rate features: ['sc_orient' 'solar_elevation' 'rgt' 'track' 'background_rate' 'segment_id' 'segment_dist' 'cycle' 'distance' 'snowcover' 'atl08_class' 'quality_ph' 'atl03_cnf' 'landcover' 'relief' 'yapc_score' 'height' 'ref_azimuth' 'ref_elev' 'geoid' 'pair' 'geometry' 'spot']
especially for the feature "distance", which is used in this line:
# add a column for along-track distance df['along_track_meters'] = df['segment_dist']+df['distance']-np.min(df['segment_dist'])
I checked the API of atl03sp
but it was not mention anything about asset
or version
.
Do I miss something here?
Here are my granule 'ATL03_20230725085527_05372007_006_02.h5'
and available features:
Available photon-rate features: ['region' 'rgt' 'pair' 'track' 'solar_elevation' 'segment_id' 'background_rate' 'segment_dist' 'sc_orient' 'cycle' 'yapc_score' 'x_atc' 'y_atc' 'landcover' 'quality_ph' 'height' 'relief' 'atl08_class' 'atl03_cnf' 'snowcover' 'ref_azimuth' 'ref_elev' 'geoid' 'geometry' 'spot']
Regards, Thang