Skip to content

Commit

Permalink
Make sure defaults align.
Browse files Browse the repository at this point in the history
  • Loading branch information
evetion committed Sep 4, 2023
1 parent 613508a commit d7ee24c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/GEDI/L2A.jl
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ function points(
datetime = Float64[],
intensity = Float32[],
sensitivity = Float32[],
surface = Bool[],
quality = Bool[],
surface = BitVector(),
quality = BitVector(),
nmodes = UInt8[],
track = Fill(track, 0),
strong_beam = Fill(power, 0),
Expand Down
4 changes: 2 additions & 2 deletions src/ICESat-2/ATL06.jl
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ function points(
longitude = Float64[],
latitude = Float64[],
height = Float32[],
height_error = Float64[],
height_error = Float32[],
datetime = Dates.DateTime[],
quality = Bool[],
quality = BitVector(),
track = Fill(track, 0),
strong_beam = Fill(atlas_beam_type == "strong", 0),
detector_id = Fill(parse(Int8, spot_number), 0),
Expand Down
6 changes: 3 additions & 3 deletions src/ICESat-2/ATL08.jl
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ function points(
height = Float32[],
height_error = Float64[],
datetime = DateTime[],
quality = Bool[],
phr = Bool[],
quality = BitVector(),
phr = BitVector(),
sensitivity = Float32[],
scattered = Int8[],
saturated = Int8[],
clouds = Bool[],
clouds = BitVector(),
track = Fill(track, 0),
strong_beam = Fill(atlas_beam_type == "strong", 0),
classification = Fill("ground", 0),
Expand Down

0 comments on commit d7ee24c

Please sign in to comment.