├── docs
├── src
│ ├── guides
│ │ └── tracks.md
│ ├── topics
│ │ ├── GEDI.md
│ │ ├── ICESat-2.md
│ │ └── ICESat.md
│ ├── changelog.md
│ ├── reference
│ │ └── api.md
│ ├── tutorial
│ │ ├── installation.md
│ │ └── usage.md
│ ├── img
│ │ └── favicon.svg
│ ├── index.md
│ ├── International_Space_Station.svg
│ └── julia-dots.svg
├── versions.js
├── Project.toml
├── versions.json
├── make.jl
├── update_version.jl
└── mkdocs.yml
├── .JuliaFormatter.toml
├── CITATION.cff
├── .gitignore
├── .github
└── workflows
│ ├── TagBot.yml
│ ├── CompatHelper.yml
│ ├── docs.yml
│ └── CI.yml
├── src
├── geoid.jl
├── ICESat-2
│ ├── ATL12.jl
│ ├── ICESat-2.jl
│ ├── ATL03.jl
│ ├── ATL08.jl
│ └── blacklist.txt
├── geoarrays.jl
├── SpaceLiDAR.jl
├── GEDI
│ ├── GEDI.jl
│ └── L2A.jl
├── granule.jl
├── ICESat
│ ├── ICESat.jl
│ └── GLAH14.jl
├── laz.jl
├── interpolate.jl
├── s3.jl
├── geom.jl
├── geom_utils.jl
├── search.jl
└── utils.jl
├── .cz.toml
├── .travis.yml
├── .appveyor.yml
├── Project.toml
├── test
└── runtests.jl
├── README.md
├── notebooks
└── juliacon_2021.jl
├── scripts
└── outliers.jl
└── LICENSE
/docs/src/guides/tracks.md:
--------------------------------------------------------------------------------
1 | # Track filtering
2 |
3 | *Coming soon*
4 |
--------------------------------------------------------------------------------
/docs/src/topics/GEDI.md:
--------------------------------------------------------------------------------
1 | # GEDI
2 | See their website at gedi.umd.edu
3 |
--------------------------------------------------------------------------------
/docs/src/topics/ICESat-2.md:
--------------------------------------------------------------------------------
1 | # ICESat-2
2 | See their website at icesat-2.gsfc.nasa.gov
3 |
4 |
--------------------------------------------------------------------------------
/docs/src/topics/ICESat.md:
--------------------------------------------------------------------------------
1 | # ICESat
2 | See their website at https://icesat.gsfc.nasa.gov/icesat/
--------------------------------------------------------------------------------
/docs/src/changelog.md:
--------------------------------------------------------------------------------
1 | ## Unreleased
2 |
3 |
4 | ## v0.1.3
5 | - Added interpolation for GeoArrays
6 | - Added FOSS4G notebook
7 |
--------------------------------------------------------------------------------
/docs/src/reference/api.md:
--------------------------------------------------------------------------------
1 | # API reference
2 |
3 | ```@index
4 | ```
5 |
6 | ```@autodocs
7 | Modules = [SpaceLiDAR]
8 | ```
9 |
--------------------------------------------------------------------------------
/docs/versions.js:
--------------------------------------------------------------------------------
1 | var DOC_VERSIONS = [
2 | "stable",
3 | "v0.3",
4 | "v0.2",
5 | "v0.1",
6 | "dev",
7 | ];
8 |
--------------------------------------------------------------------------------
/docs/src/tutorial/installation.md:
--------------------------------------------------------------------------------
1 | # Installation
2 | Use the Julia built in package manager:
3 | ```julia
4 | ] add SpaceLiDAR
5 | ```
6 |
--------------------------------------------------------------------------------
/.JuliaFormatter.toml:
--------------------------------------------------------------------------------
1 | always_for_in = true
2 | always_use_return = true
3 | margin = 80
4 | remove_extra_newlines = true
5 | short_to_long_function_def = true
6 |
--------------------------------------------------------------------------------
/docs/Project.toml:
--------------------------------------------------------------------------------
1 | [deps]
2 | Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3 | DocumenterMarkdown = "997ab1e6-3595-5248-9280-8efb232c3433"
4 | DocumenterTools = "35a29f4d-8980-5a13-9543-d66fff28ecb8"
5 | SpaceLiDAR = "29bf0bfc-420f-4fa5-b441-811fd9e6e11d"
6 |
--------------------------------------------------------------------------------
/CITATION.cff:
--------------------------------------------------------------------------------
1 | cff-version: 1.2.0
2 | message: "If you use this software, please cite it using these metadata."
3 | authors:
4 | - affiliation: "Deltares, TU Delft"
5 | family-names: Pronk
6 | given-names: Maarten
7 | orcid: "https://orcid.org/0000-0001-8758-3939"
8 | date-released: 2021-07-30
9 | title: "SpaceLiDAR.jl"
10 | version: 1.0.0
11 | url: "https://github.com/evetion/SpaceLiDAR.jl"
12 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.jl.*.cov
2 | *.jl.cov
3 | *.jl.mem
4 | .DS_Store
5 | Manifest.toml
6 | /dev/
7 | /docs/build/
8 | /docs/site/
9 | *.csv
10 | *.txt
11 | *.laz
12 | *.gpkg
13 | .pytest_cache
14 | .mypy_cache
15 | .ipynb_checkpoints
16 | *.pdf
17 | *.png
18 | *.tif
19 | *.tiff
20 | *.shp
21 | *.dbf
22 | *.prj
23 | *.qpj
24 | *.cpg
25 | *.shx
26 | *.vscode
27 | scripts
28 | *.h5
29 | /test/data
30 | /temp
31 | /output
32 | /data
33 |
--------------------------------------------------------------------------------
/.github/workflows/TagBot.yml:
--------------------------------------------------------------------------------
1 | name: TagBot
2 | on:
3 | issue_comment:
4 | types:
5 | - created
6 | workflow_dispatch:
7 | jobs:
8 | TagBot:
9 | if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10 | runs-on: ubuntu-latest
11 | steps:
12 | - uses: JuliaRegistries/TagBot@v1
13 | with:
14 | token: ${{ secrets.GITHUB_TOKEN }}
15 | ssh: ${{ secrets.DOCUMENTER_KEY }}
16 |
--------------------------------------------------------------------------------
/src/geoid.jl:
--------------------------------------------------------------------------------
1 | using Proj4
2 |
3 | function to_egm2008!(table)
4 | egm08 = "./egm08_25.gtx"
5 | egm08 = isfile(egm08) ? abspath(egm08) : Base.download("https://github.com/OSGeo/proj-datumgrid/raw/master/world/egm08_25.gtx", egm08)
6 | wgs84 = Projection("+proj=longlat +datum=WGS84 +no_defs")
7 | egm2008 = Projection("+proj=vgridshift +grids=$egm08")
8 | data = hcat(Float64.(table.x), Float64.(table.y), Float64.(table.z))
9 | transform!(wgs84, egm2008, data)
10 | table.z .= data[:,3]
11 | end
12 |
--------------------------------------------------------------------------------
/.github/workflows/CompatHelper.yml:
--------------------------------------------------------------------------------
1 | name: CompatHelper
2 | on:
3 | schedule:
4 | - cron: 0 0 * * *
5 | workflow_dispatch:
6 | jobs:
7 | CompatHelper:
8 | runs-on: ubuntu-latest
9 | steps:
10 | - name: Pkg.add("CompatHelper")
11 | run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12 | - name: CompatHelper.main()
13 | env:
14 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15 | COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16 | run: julia -e 'using CompatHelper; CompatHelper.main()'
17 |
--------------------------------------------------------------------------------
/docs/versions.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "aliases": [],
4 | "title": "stable",
5 | "version": "stable"
6 | },
7 | {
8 | "aliases": [],
9 | "title": "v0.3",
10 | "version": "v0.3"
11 | },
12 | {
13 | "aliases": [],
14 | "title": "v0.2",
15 | "version": "v0.2"
16 | },
17 | {
18 | "aliases": [],
19 | "title": "v0.1",
20 | "version": "v0.1"
21 | },
22 | {
23 | "aliases": [],
24 | "title": "dev",
25 | "version": "dev"
26 | }
27 | ]
--------------------------------------------------------------------------------
/.cz.toml:
--------------------------------------------------------------------------------
1 | [tool.commitizen]
2 | name = "cz_conventional_commits"
3 | version = "0.1.0"
4 | version_files = [
5 | "Project.toml:version",
6 | ]
7 | style = [
8 | ["qmark", "fg:#ff9d00 bold"],
9 | ["question", "bold"],
10 | ["answer", "fg:#ff9d00 bold"],
11 | ["pointer", "fg:#ff9d00 bold"],
12 | ["highlighted", "fg:#ff9d00 bold"],
13 | ["selected", "fg:#cc5454"],
14 | ["separator", "fg:#cc5454"],
15 | ["instruction", ""],
16 | ["text", ""],
17 | ["disabled", "fg:#858585 italic"]
18 | ]
19 | changelog_file = "docs/src/changelog.md"
20 |
--------------------------------------------------------------------------------
/docs/make.jl:
--------------------------------------------------------------------------------
1 | using Documenter, SpaceLiDAR
2 | using DocumenterMarkdown
3 |
4 | makedocs(;
5 | modules=[SpaceLiDAR],
6 | format=Markdown(),
7 | # pages=[
8 | # "API" => "reference/api.md",
9 | # ],
10 | repo="https://github.com/evetion/SpaceLiDAR.jl/blob/{commit}{path}#L{line}",
11 | sitename="SpaceLiDAR.jl",
12 | authors="Maarten Pronk, Deltares",
13 | )
14 |
15 | deploydocs(;
16 | repo="github.com/evetion/SpaceLiDAR.jl",
17 | deps=Deps.pip("mkdocs-material", "pygments", "python-markdown-math", "mkdocs-autorefs"),
18 | make=() -> run(`mkdocs build`),
19 | target="site"
20 | )
21 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | # Documentation: http://docs.travis-ci.com/user/languages/julia/
2 | language: julia
3 | os:
4 | - linux
5 | - osx
6 | julia:
7 | - 1.0
8 | - nightly
9 | notifications:
10 | email: false
11 | after_success:
12 | - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
13 | jobs:
14 | allow_failures:
15 | - julia: nightly
16 | fast_finish: true
17 | include:
18 | - stage: Documentation
19 | julia: 1.0
20 | script: julia --project=docs -e '
21 | using Pkg;
22 | Pkg.develop(PackageSpec(path=pwd()));
23 | Pkg.instantiate();
24 | include("docs/make.jl");'
25 | after_success: skip
26 |
--------------------------------------------------------------------------------
/docs/src/img/favicon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.github/workflows/docs.yml:
--------------------------------------------------------------------------------
1 | name: Documentation
2 |
3 | on:
4 | push:
5 | branches:
6 | - master
7 | tags: '*'
8 | pull_request:
9 |
10 | jobs:
11 | build:
12 | runs-on: ubuntu-latest
13 | steps:
14 | - uses: actions/checkout@v2
15 | - uses: julia-actions/setup-julia@latest
16 | with:
17 | version: '1.6'
18 | - name: Install dependencies
19 | run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
20 | - name: Build and deploy
21 | env:
22 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
23 | DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
24 | run: julia --project=docs/ docs/make.jl
25 |
--------------------------------------------------------------------------------
/.appveyor.yml:
--------------------------------------------------------------------------------
1 | # Documentation: https://github.com/JuliaCI/Appveyor.jl
2 | environment:
3 | matrix:
4 | - julia_version: 1.0
5 | - julia_version: nightly
6 | platform:
7 | - x86
8 | - x64
9 | matrix:
10 | allow_failures:
11 | - julia_version: nightly
12 | branches:
13 | only:
14 | - master
15 | - /release-.*/
16 | notifications:
17 | - provider: Email
18 | on_build_success: false
19 | on_build_failure: false
20 | on_build_status_changed: false
21 | install:
22 | - ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
23 | build_script:
24 | - echo "%JL_BUILD_SCRIPT%"
25 | - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
26 | test_script:
27 | - echo "%JL_TEST_SCRIPT%"
28 | - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
29 | on_success:
30 | - echo "%JL_CODECOV_SCRIPT%"
31 | - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
32 |
--------------------------------------------------------------------------------
/docs/update_version.jl:
--------------------------------------------------------------------------------
1 | # Post script to run to generate a mike compatible json file
2 | # from the javascripts versions file generated by Documenter.
3 | # This enables a version dropdown to be present in all documentation.
4 | using JSON
5 |
6 | versions = read("versions.js", String)
7 | re = r"DOC_VERSIONS\s?=\s?\[([^][]*)]"
8 | m = match(re, versions)
9 | if m === nothing
10 | error("Can't parse versions.js correctly")
11 | else
12 | group = String(m.captures[1])
13 | group = replace(group, "\n" => "")
14 | group = replace(group, "\"" => "")
15 | group = replace(group, " " => "")
16 | json = []
17 | for version in split(group, ",")
18 | if length(version) > 0
19 | push!(json,Dict(
20 | "version" => version,
21 | "title" => version,
22 | "aliases" => []
23 | ))
24 | end
25 | end
26 | end
27 | write("versions.json", JSON.json(json))
28 |
--------------------------------------------------------------------------------
/src/ICESat-2/ATL12.jl:
--------------------------------------------------------------------------------
1 |
2 | function points(granule::ICESat2_Granule{:ATL12}, bbox=nothing, tracks=icesat2_tracks)
3 | dfs = Vector{NamedTuple}()
4 | HDF5.h5open(granule.url, "r") do file
5 | t_offset = read(file, "ancillary_data/atlas_sdp_gps_epoch")[1] + gps_offset
6 | orientation = read(file, "orbit_info/sc_orient")[1]
7 |
8 | for track ∈ tracks
9 | power = track_power(orientation, track)
10 | if in(track, keys(file)) && in("ssh_segments", keys(file[track])) && in("heights", keys(file[track]["ssh_segments"]))
11 | track_df = points(granule, file, track, power, t_offset)
12 | push!(dfs, track_df)
13 | end
14 | end
15 | end
16 | dfs
17 | end
18 |
19 | function points(::ICESat2_Granule{:ATL12}, file::HDF5.H5DataStore, track::AbstractString, power::AbstractString, t_offset::Real)
20 | z = read(file, "$track/ssh_segments/heights/h")
21 | x = read(file, "$track/ssh_segments/longitude")
22 | y = read(file, "$track/ssh_segments/latitude")
23 | t = read(file, "$track/ssh_segments/delta_time")
24 |
25 | times = unix2datetime.(t .+ t_offset)
26 |
27 | (x = x, y = y, z = z, t = times, track = Fill(track, length(times)), power = Fill(power, length(times)))
28 | end
29 |
--------------------------------------------------------------------------------
/src/geoarrays.jl:
--------------------------------------------------------------------------------
1 | using Statistics
2 | using GeoArrays
3 | using StaticArrays
4 |
5 | function indices(ga::GeoArray, p::SVector{2,Float32})
6 | map(x -> round(Int, x), inv(ga.f)(p)::SVector{2,Float64}) .+ 1
7 | end
8 | function indices(ga::GeoArray, p::SVector{2,Float64})
9 | map(x -> round(Int, x), inv(ga.f)(p)::SVector{2,Float64}) .+ 1
10 | end
11 | function Base.getindex(ga::GeoArray, I::SVector{2,Float32}, buffer=0)
12 | (i, j) = indices(ga, I)
13 | return ga[i - buffer:i + buffer, j - buffer:j + buffer, :]
14 | end
15 | Base.getindex(ga::GeoArray, I::Vararg{Float32,2}) = Base.getindex(ga, SVector{2}(I))
16 |
17 | function sample(ga::GeoArray, x::Real, y::Real, buffer=0, reducer=median)
18 | I = SVector{2}(x, y)
19 | i, j = indices(ga, I)
20 | 0 < i - buffer <= Base.size(ga.A)[1] || return NaN
21 | 0 < j - buffer <= Base.size(ga.A)[2] || return NaN
22 | 0 < i + buffer <= Base.size(ga.A)[1] || return NaN
23 | 0 < j + buffer <= Base.size(ga.A)[2] || return NaN
24 | # (all((i, j) .> (0, 0)) && all(Base.size(ga.A)[1:2] >= (i, j))) || return NaN
25 | data = ga.A[i - buffer:i + buffer, j - buffer:j + buffer, 1]
26 | mask = isfinite.(data)
27 | if sum(mask) == 0
28 | return NaN
29 | else
30 | return reducer(data[mask])
31 | end
32 | end
33 |
--------------------------------------------------------------------------------
/src/SpaceLiDAR.jl:
--------------------------------------------------------------------------------
1 | module SpaceLiDAR
2 |
3 | using Dates
4 | using CategoricalArrays
5 | using FillArrays
6 | using GeoDataFrames; const GDF = GeoDataFrames
7 | using HDF5
8 |
9 | include("granule.jl")
10 | include("utils.jl")
11 | include("search.jl")
12 | include("geom.jl")
13 | include("geom_utils.jl")
14 | include("s3.jl")
15 | include("geoarrays.jl")
16 | include("GEDI/GEDI.jl")
17 | include("GEDI/L2A.jl")
18 | include("ICESat-2/ICESat-2.jl")
19 | include("ICESat-2/ATL03.jl")
20 | include("ICESat-2/ATL08.jl")
21 | include("ICESat-2/ATL12.jl")
22 | include("ICESat/ICESat.jl")
23 | include("ICESat/GLAH14.jl")
24 | include("laz.jl")
25 | include("interpolate.jl")
26 | include("geoid.jl")
27 |
28 | export find, download!, netrc!, instantiate
29 | export xyz, lines, points, in_bbox, bounds
30 | export test, granule_from_file, granules_from_folder, write_granule_urls!
31 |
32 | precompile(find, (Symbol, String, NamedTuple, String))
33 | precompile(find, (Symbol, String))
34 | precompile(GeoArrays.read, (String,))
35 | precompile(GeoArrays.read, (String, Bool))
36 | precompile(instantiate, (Vector{ICESat2_Granule}, String))
37 | precompile(instantiate, (Vector{GEDI_Granule}, String))
38 | precompile(granules_from_folder, (String,))
39 | precompile(granule_from_file, (String,))
40 | precompile(download!, (ICESat2_Granule,))
41 | precompile(download!, (GEDI_Granule,))
42 | precompile(points, (GEDI_Granule,))
43 | precompile(points, (ICESat2_Granule,))
44 | precompile(lines, (GEDI_Granule,))
45 | precompile(lines, (ICESat2_Granule,))
46 | precompile(angle, (Vector{Float32}, Vector{Float32}))
47 | precompile(shift, (Float32, Float32, Float64, Float64))
48 |
49 | end # module
50 |
--------------------------------------------------------------------------------
/src/GEDI/GEDI.jl:
--------------------------------------------------------------------------------
1 | using Dates
2 |
3 | const gedi_tracks = ("BEAM0000", "BEAM0001", "BEAM0010", "BEAM0011", "BEAM0101", "BEAM0110", "BEAM1000", "BEAM1011")
4 | const gedi_date_format = dateformat"yyyymmddHHMMSS"
5 | const gedi_inclination = 51.6443
6 |
7 | mutable struct GEDI_Granule{product} <: Granule
8 | id::AbstractString
9 | url::AbstractString
10 | info::NamedTuple
11 | end
12 | GEDI_Granule(product, args...) = GEDI_Granule{product}(args...)
13 |
14 | function Base.copy(g::GEDI_Granule{product}) where product
15 | GEDI_Granule(product, g.id, g.url, g.info)
16 | end
17 |
18 | function info(g::GEDI_Granule)
19 | gedi_info(g.id)
20 | end
21 |
22 | """Derive info based on file id.
23 |
24 | The id is built up as follows, see section 2.4 in the user guide
25 | GEDI02_A_2019110014613_O01991_T04905_02_001_01.h5
26 | or newer (V2)
27 | GEDI02_A_2019242104318_O04046_01_T02343_02_003_02_V002.h5
28 | """
29 | function gedi_info(filename)
30 | id, _ = splitext(filename)
31 | if endswith(id, "V002")
32 | type, name, datetime, orbit, segment, track, ppds, pge_version, revision, version = Base.split(id, "_")
33 | version = version[2:end]
34 | else
35 | type, name, datetime, orbit, track, ppds, version, revision = Base.split(id, "_")
36 | end
37 | days = Day(parse(Int, datetime[5:7]) - 1) # Stored as #days in year
38 | datetime = datetime[1:4] * "0101" * datetime[8:end]
39 | (type = Symbol(type * "_" * name), date = DateTime(datetime, gedi_date_format) + days, orbit = parse(Int, orbit[2:end]), track = parse(Int, track[2:end]), ppds = parse(Int, ppds), version = parse(Int, version), revision = parse(Int, revision))
40 | end
41 |
--------------------------------------------------------------------------------
/src/granule.jl:
--------------------------------------------------------------------------------
1 | using HDF5
2 | import Downloads
3 |
4 | """This is a method because it will segfault if precompiled."""
5 | function _download(kwargs...)
6 | downloader = Downloads.Downloader()
7 | easy_hook = (easy, _) -> begin
8 | Downloads.Curl.setopt(easy, Downloads.Curl.CURLOPT_NETRC, Downloads.Curl.CURL_NETRC_OPTIONAL)
9 | Downloads.Curl.setopt(easy, Downloads.Curl.CURLOPT_COOKIEFILE, "")
10 | end
11 | downloader.easy_hook = easy_hook
12 | Downloads.download(kwargs...;downloader=downloader)
13 | end
14 |
15 | abstract type Granule end
16 |
17 | function HDF5.h5open(granule::Granule)
18 | HDF5.h5open(granule.url, "r")
19 | end
20 |
21 | function download!(granule::Granule, folder=".")
22 | fn = joinpath(abspath(folder), granule.id)
23 | if isfile(fn)
24 | granule.url = fn
25 | return fn
26 | end
27 | isfile(granule.url) && return granule
28 | if startswith(granule.url, "s3://")
29 | download_s3(granule.url, fn)
30 | elseif startswith(granule.url, "http")
31 | _download(granule.url, fn)
32 | else
33 | error("Can't determine how to download $(granule.url)")
34 | end
35 | granule.url = fn
36 | granule
37 | end
38 |
39 | function rm(granule::Granule)
40 | if isfile(granule.url)
41 | Base.rm(granule.url)
42 | else
43 | @warn("Can't delete $(granule.url)..")
44 | end
45 | end
46 |
47 | function download!(granules::Vector{Granule}, folder::AbstractString)
48 | for granule in granules
49 | download!(granule, folder)
50 | end
51 | end
52 |
53 | function filesize(granule::T) where T <: Granule
54 | filesize(granule.url)
55 | end
56 |
--------------------------------------------------------------------------------
/.github/workflows/CI.yml:
--------------------------------------------------------------------------------
1 | name: CI
2 | on:
3 | - push
4 | - pull_request
5 | jobs:
6 | test:
7 | name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8 | runs-on: ${{ matrix.os }}
9 | strategy:
10 | fail-fast: false
11 | matrix:
12 | version:
13 | - "1.5"
14 | - "1.6"
15 | os:
16 | - ubuntu-latest
17 | - macOS-latest
18 | - windows-latest
19 | arch:
20 | - x64
21 | steps:
22 | - uses: actions/checkout@v2
23 | - uses: julia-actions/setup-julia@v1
24 | with:
25 | version: ${{ matrix.version }}
26 | arch: ${{ matrix.arch }}
27 |
28 | - name: Create LFS file list
29 | run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
30 |
31 | - name: Restore LFS cache
32 | uses: actions/cache@v2
33 | id: lfs-cache
34 | with:
35 | path: .git/lfs
36 | key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1
37 |
38 | - name: Git LFS Pull
39 | run: git lfs pull
40 |
41 | - uses: actions/cache@v1
42 | env:
43 | cache-name: cache-artifacts
44 | with:
45 | path: ~/.julia/artifacts
46 | key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
47 | restore-keys: |
48 | ${{ runner.os }}-test-${{ env.cache-name }}-
49 | ${{ runner.os }}-test-
50 | ${{ runner.os }}-
51 | - uses: julia-actions/julia-buildpkg@v1
52 | - uses: julia-actions/julia-runtest@v1
53 | - uses: julia-actions/julia-processcoverage@v1
54 | - uses: codecov/codecov-action@v1
55 | with:
56 | file: lcov.info
57 |
--------------------------------------------------------------------------------
/src/ICESat/ICESat.jl:
--------------------------------------------------------------------------------
1 | using Dates
2 |
3 | const j2000_offset = datetime2unix(DateTime(2000, 1, 1, 12, 0, 0))
4 | const fill_value = 3.4028235f38
5 | const icesat_inclination = 86.0 # actually 92, so this is 180. - 92.
6 |
7 |
8 | mutable struct ICESat_Granule{product} <: Granule
9 | id::String
10 | url::String
11 | info::NamedTuple
12 | end
13 | ICESat_Granule(product, args...) = ICESat_Granule{product}(args...)
14 |
15 | function Base.copy(g::ICESat_Granule{product}) where product
16 | ICESat_Granule(product, g.id, g.url, g.info)
17 | end
18 |
19 | function bounds(granule::ICESat_Granule)
20 | HDF5.h5open(granule.url, "r") do file
21 | nt = attributes(file)
22 | ntb = (
23 | min_x = parse(Float64, read(nt["geospatial_lon_min"])),
24 | max_x = parse(Float64, read(nt["geospatial_lon_max"])),
25 | min_y = parse(Float64, read(nt["geospatial_lat_min"])),
26 | max_y = parse(Float64, read(nt["geospatial_lat_max"])),
27 | min_z = -1000,
28 | max_z = 8000
29 | )
30 | @info ntb
31 | ntb
32 | end
33 | end
34 |
35 |
36 | Base.isfile(g::ICESat_Granule) = Base.isfile(g.url)
37 |
38 | """Derive info based on file id.
39 |
40 | The id is built up as follows, see 1.2.5 in the user guide
41 | ATL03_[yyyymmdd][hhmmss]_[ttttccss]_[vvv_rr].h5
42 | """
43 | function info(g::ICESat_Granule)
44 | icesat_info(g.id)
45 | end
46 |
47 | function icesat_info(filename)
48 | id, _ = splitext(filename)
49 | type, revision, orbit, cycle, track, segment, version, filetype = split(id, "_")
50 | (type = Symbol(type), phase = parse(Int, orbit[1]), rgt = parse(Int, track[2]), instance = parse(Int, track[3:4]), cycle = parse(Int, cycle), segment = parse(Int, segment), version = parse(Int, version), revision = parse(Int, revision))
51 | end
52 |
--------------------------------------------------------------------------------
/docs/mkdocs.yml:
--------------------------------------------------------------------------------
1 | site_name: SpaceLiDAR.jl
2 | repo_url: https://github.com/evetion/SpaceLiDAR.jl
3 | site_description: Description...
4 | site_author: evetion
5 | site_url: https://www.evetion.nl/SpaceLiDAR.jl/
6 |
7 | extra_css:
8 | - assets/Documenter.css
9 | - css/earth.css
10 |
11 | extra_javascript:
12 | - https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML
13 | - assets/mathjaxhelper.js
14 |
15 | docs_dir: "build"
16 |
17 | nav:
18 |
19 | theme:
20 | name: material
21 | icon:
22 | logo: material/satellite-variant
23 | favicon: img/favicon.svg
24 | language: en
25 | palette:
26 | - media: "(prefers-color-scheme: light)"
27 | scheme: default
28 | primary: blue grey
29 | accent: indigo
30 | toggle:
31 | icon: material/lightbulb-outline
32 | name: Switch to dark mode
33 | - media: "(prefers-color-scheme: dark)"
34 | scheme: slate
35 | toggle:
36 | icon: material/lightbulb
37 | name: Switch to light mode
38 | features:
39 | - navigation.instant
40 | - navigation.tracking
41 | - navigation.tabs
42 | # - navigation.sections
43 | - navigation.expand
44 | - navigation.top
45 | plugins:
46 | - search
47 | - autorefs
48 | markdown_extensions:
49 | - extra
50 | - tables
51 | - fenced_code
52 | - mdx_math
53 | - pymdownx.highlight
54 | - admonition
55 | - toc:
56 | permalink: true
57 | edit_uri: edit/master/docs/
58 | repo_name: evetion/SpaceLiDAR.jl
59 | extra:
60 | version:
61 | provider: mike
62 | social:
63 | - icon: fontawesome/brands/github
64 | link: https://github.com/evetion/SpaceLiDAR.jl
65 | name: Source code
66 | - icon: fontawesome/brands/gitter
67 | link: https://gitter.im/evetion/community
68 | name: Chat with me on Gitter
69 | copyright: Copyright © 2021 Maarten Pronk, Deltares
70 |
--------------------------------------------------------------------------------
/src/laz.jl:
--------------------------------------------------------------------------------
1 | using LazIO
2 | using TypedTables
3 | using FillArrays
4 |
5 | function LazIO.write(fn::AbstractString, granule::ICESat2_Granule)
6 | meta = info(granule)
7 | id = "$(meta.type)_$(meta.rgt)_$(meta.cycle)_$(meta.segment)_$(meta.version)_$(meta.revision)"
8 | t = vcat(Table.(points(granule))...)
9 | nt = Table(
10 | X=t.x,
11 | Y=t.y,
12 | Z=t.z,
13 | intensity=round.(UInt16, min.(65535, t.u * 100)),
14 | gps_time=t.t,
15 | classification=t.classification,
16 | number_of_returns=t.number_of_returns,
17 | return_number=t.return_number,
18 | scan_angle_rank=map(==("strong"), t.power),
19 | point_source_ID=Fill(UInt16(meta.rgt), length(t)),
20 | user_data=Fill(UInt16(meta.cycle), length(t))
21 | )
22 | LazIO.write(fn, nt[.~isnan.(t.z)], bounds(granule), scalex=1e-6, scaley=1e-6, scalez=0.001, system_identifier=LazIO.writestring(id, 32), point_data_format=1, point_data_record_length=28, global_encoding=1)
23 | end
24 |
25 | function LazIO.write(fn::AbstractString, granule::GEDI_Granule)
26 | meta = info(granule)
27 | id = "$(meta.type)_$(meta.orbit)_$(meta.track)_$(meta.version)_$(meta.revision)"
28 | t = vcat(Table.(points(granule))...)
29 | nt = Table(
30 | X=t.x,
31 | Y=t.y,
32 | Z=t.z,
33 | intensity=round.(UInt16, min.(65535, t.u * 100)),
34 | gps_time=t.t,
35 | classification=t.classification,
36 | number_of_returns=t.number_of_returns,
37 | return_number=t.return_number,
38 | scan_angle_rank=map(==("strong"), t.power),
39 | point_source_ID=Fill(UInt16(meta.orbit), length(t)),
40 | )
41 | LazIO.write(fn, nt[.~isnan.(t.z)], bounds(granule), scalex=1e-7, scaley=1e-7, scalez=0.001, system_identifier=LazIO.writestring(id, 32), point_data_format=1, point_data_record_length=28, global_encoding=1)
42 | end
43 |
--------------------------------------------------------------------------------
/src/interpolate.jl:
--------------------------------------------------------------------------------
1 | using GeoArrays
2 | using StaticArrays
3 | using ProgressMeter
4 | using NearestNeighbors
5 | using StarTIN
6 | using Distances
7 |
8 | function interpolate!(ga::GeoArray, t, r=500.)
9 | tt = hcat(t.x, t.y)
10 | ttt = permutedims(tt)
11 | tree = BallTree(ttt, Haversine())
12 | ui, uj = Base.size(ga)[1:2]
13 | p = Progress(length(ga), 1, "Interpolating...")
14 | Threads.@threads for i in 1:ui
15 | Threads.@threads for j in 1:uj
16 | coords = centercoords(ga, SVector{2}(i, j))::SArray{Tuple{2},Float64,1,2}
17 | ga.A[i, j, 1] = idw(coords, tree, r, t.z, ttt)
18 | next!(p)
19 | end
20 | end
21 | end
22 |
23 | function interpolate_nni!(ga::GeoArray, t, r=1., scale=100.0)
24 | tt = hcat(t.x .* scale, t.y .* scale, t.z)
25 | ttt = permutedims(tt)
26 | dt = DT()
27 | @time insert!(dt, ttt)
28 | StarTIN.info(dt)
29 | ui, uj = size(ga)[1:2]
30 | p = Progress(length(ga), 1, "Interpolating...")
31 | for i in 1:ui
32 | for j in 1:uj
33 | coords = centercoords(ga, SVector{2}(i, j))::SArray{Tuple{2},Float64,1,2}
34 | @inbounds ga.A[i, j, 1] = interpolate_laplace(dt, coords[1] * scale, coords[2] * scale)
35 | next!(p)
36 | end
37 | end
38 | end
39 |
40 | function idw(coords, tree, r, values, coordinates, power=2)
41 | idxs = inrange(tree, coords, r)
42 | if length(idxs) == 0
43 | return NaN32
44 | else
45 | distances = colwise(Haversine(), Float32.(coords), coordinates[:,idxs])
46 | ws = 1.0f0 ./ distances.^power # .* view(uncertainty, idxs)
47 | Σw = sum(ws)
48 |
49 | if isinf(Σw)
50 | j = findfirst(iszero, distances)
51 | μ = values[idxs[j]]
52 | else
53 | ws ./= Σw
54 | vs = view(values, idxs)
55 | μ = sum(ws[i] * vs[i] for i in eachindex(vs))
56 | end
57 | return μ
58 | end
59 | end
60 |
--------------------------------------------------------------------------------
/docs/src/tutorial/usage.md:
--------------------------------------------------------------------------------
1 | # Usage
2 | Search for data
3 | ```julia
4 | using SpaceLiDAR
5 | # Find all ATL08 granules
6 | granules = find(:ICESat2, "ATL08")
7 |
8 | # Find only ATL03 granules in a part of Vietnam
9 | vietnam = (min_x = 102., min_y = 8.0, max_x = 107.0, max_y = 12.0)
10 | granules = find(:ICESat2, "ATL08", vietnam, "004")
11 |
12 | # Find GEDI granules in the same way
13 | granules = find(:GEDI, "GEDI02_A")
14 |
15 | # A granule is pretty simple
16 | granule = granules[1]
17 | granule.id # filename
18 | granule.url # download url
19 | granule.info # derived information from id
20 |
21 | # Downloading granules requires a setup .netrc with an NASA EarthData account
22 | # we provide a helper function, that creates/updates a ~/.netrc or ~/_netrc
23 | SpaceLiDAR.netrc!(, ) # replace with your credentials
24 |
25 | # Afterward you can download (requires curl to be available on PATH)
26 | fn = SpaceLiDAR.download!(granule)
27 |
28 | # You can also load a granule from disk
29 | granule = granule_from_file(fn)
30 |
31 | # Or from a folder
32 | local_granules = granules_from_folder()
33 |
34 | # Instantiate search results locally (useful for GEDI location indexing)
35 | local_granules = instantiate(granules, )
36 |
37 | ```
38 |
39 | Derive linestrings
40 | ```julia
41 | using TypedTables
42 | fn = "ATL03_20181110072251_06520101_003_01.h5"
43 | g = SpaceLiDAR.granule_from_file(fn)
44 | tlines = Table(SpaceLiDAR.lines(g, step=10000))
45 | Table with 4 columns and 6 rows:
46 | geom sun_angle track t
47 | ┌───────────────────────────────────────────────────────────────────────────
48 | 1 │ wkbLineString25D geometry 38.3864 gt1l_weak 2018-11-10T07:28:01.688
49 | 2 │ wkbLineString25D geometry 38.375 gt1r_strong 2018-11-10T07:28:02.266
50 | 3 │ wkbLineString25D geometry 38.2487 gt2l_weak 2018-11-10T07:28:04.474
51 | 4 │ wkbLineString25D geometry 38.1424 gt2r_strong 2018-11-10T07:28:07.374
52 | 5 │ wkbLineString25D geometry 38.2016 gt3l_weak 2018-11-10T07:28:05.051
53 | 6 │ wkbLineString25D geometry 38.1611 gt3r_strong 2018-11-10T07:28:06.344
54 | SpaceLiDAR.GDF.write("lines.gpkg", tlines)
55 | ```
56 |
--------------------------------------------------------------------------------
/src/s3.jl:
--------------------------------------------------------------------------------
1 | using AWSCore
2 | using AWSS3
3 |
4 |
5 | function download_s3(path::AbstractString, fn::AbstractString)
6 | # elements = split(path, "/")
7 | # bucket = elements[3]
8 | # path = join(elements[4:end], "/")
9 | # aws = AWSCore.aws_config(profile="default", region="eu-west-1")
10 | # AWSS3.s3_get_file(aws, bucket, path, fn)
11 | run(`aws s3 cp --only-show-errors $path $fn`)
12 | end
13 |
14 | """Change default download locatio n to a S3 bucket."""
15 | function s3!(granule::Granule, bucket::String="s3://spacelidar", verify=false)
16 | fn = granule.id
17 | if verify && ~in(bucket, fn)
18 | return granule
19 | else
20 | granule.url = joinpath(bucket, fn)
21 | return granule
22 | end
23 | end
24 | s3!(granules::Vector{<:Granule}, args...) = map!(x -> s3!(x, args...), granules)
25 |
26 | function Base.in(granule::Granule, bucket::AbstractString="spacelidar")
27 | aws = AWSCore.aws_config(profile="default", region="eu-west-1")
28 | AWSS3.s3_exists(aws, bucket, granule.id)
29 | end
30 |
31 | function sync!(granules::Vector{<:Granule}, bucket="s3://spacelidar")
32 | mask = trues(length(granules))
33 | while sum(mask) > 0
34 | in_bucket = map(x -> x["Key"], s3_list_objects(aws, bucket))
35 | mask = map(g -> ~(g.id in in_bucket), granules)
36 | @info "Still checking $(sum(mask)) to sync granules..."
37 | for granule in granules[.~mask]
38 | granule.url = joinpath(bucket, granule.id)
39 | end
40 | download_to_s3(granules[mask], bucket)
41 | end
42 | granules
43 | end
44 |
45 | function download_to_s3(granules::Vector{<:Granule}, bucket="spacelidar")
46 | fn_hook = write_upload_hook!("s3_upload_hook.sh", bucket)
47 | fn_urls = write_granule_urls!("to_download.txt", granules)
48 | print(read(`aria2c --on-download-complete $fn_hook --file-allocation=none --continue=true --auto-file-renaming=false -j3 -x1 -i $fn_urls`))
49 | end
50 |
51 |
52 | function write_upload_hook!(fn::String, bucket="spacelidar", rm=true)
53 | open(fn, "w") do f
54 | println(f, "#bin/sh")
55 | if rm
56 | println(f, "aws s3 cp \$3 s3://$bucket/ && rm \$3")
57 | else
58 | println(f, "aws s3 cp \$3 s3://$bucket/")
59 | end
60 | end
61 | chmod(fn, 0o775)
62 | abspath(fn)
63 | end
64 |
--------------------------------------------------------------------------------
/Project.toml:
--------------------------------------------------------------------------------
1 | name = "SpaceLiDAR"
2 | uuid = "29bf0bfc-420f-4fa5-b441-811fd9e6e11d"
3 | authors = ["Maarten Pronk", "Deltares"]
4 | version = "0.1.3"
5 |
6 | [deps]
7 | AWSCore = "4f1ea46c-232b-54a6-9b17-cc2d0f3e6598"
8 | AWSS3 = "1c724243-ef5b-51ab-93f4-b0a88ac62a95"
9 | ArchGDAL = "c9ce4bd3-c3d5-55b8-8973-c0e20141b8c3"
10 | CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
11 | CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
12 | Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
13 | Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7"
14 | Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
15 | FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
16 | GeoArrays = "2fb1d81b-e6a0-5fc5-82e6-8e06903437ab"
17 | GeoDataFrames = "62cb38b5-d8d2-4862-a48e-6a340996859f"
18 | HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f"
19 | HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
20 | ImageFiltering = "6a3955dd-da59-5b1f-98d4-e7296123deb5"
21 | JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
22 | LazIO = "c3605908-9f0f-11e8-0a72-0d361c15a277"
23 | NearestNeighbors = "b8a86587-4115-5ab1-83bc-aa920d37bbce"
24 | PolygonOps = "647866c9-e3ac-4575-94e7-e3d426903924"
25 | Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
26 | ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
27 | Proj4 = "9a7e659c-8ee8-5706-894e-f68f43bc57ea"
28 | Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
29 | RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
30 | StarTIN = "152385ed-0447-47b3-b417-bbbf3d580ece"
31 | StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
32 | Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
33 | Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
34 | TypedTables = "9d95f2ec-7b3d-5a63-8d20-e2491e220bb9"
35 |
36 | [compat]
37 | AWSCore = "^0.6"
38 | AWSS3 = "^0.8, 0.9"
39 | ArchGDAL = "^0.7"
40 | CSV = "^0.8, 0.9"
41 | CategoricalArrays = "^0.9, 0.10"
42 | Distances = "^0.10"
43 | FillArrays = "^0.11, 0.12"
44 | GeoArrays = "^0.5, 0.6"
45 | GeoDataFrames = "^0.1"
46 | HDF5 = "^0.15"
47 | HTTP = "^0.9"
48 | ImageFiltering = "^0.6, 0.7"
49 | JSON = "^0.21"
50 | LazIO = "^0.3"
51 | NearestNeighbors = "^0.4"
52 | PolygonOps = "^0.1"
53 | ProgressMeter = "^1.4"
54 | RecipesBase = "^1.1"
55 | StarTIN = "^0.1"
56 | StaticArrays = "^0.12, 1"
57 | Tables = "^1.4"
58 | TypedTables = "^1.3"
59 | julia = "^1.3"
60 |
61 | [extras]
62 | Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
63 |
64 | [targets]
65 | test = ["Test"]
66 |
--------------------------------------------------------------------------------
/docs/src/index.md:
--------------------------------------------------------------------------------
1 |
2 | [](https://evetion.github.io/SpaceLiDAR.jl/stable)
3 | [](https://evetion.github.io/SpaceLiDAR.jl/dev)
4 | [](https://github.com/evetion/SpaceLiDAR.jl/actions/workflows/CI.yml)
5 | [](https://codecov.io/gh/evetion/SpaceLiDAR.jl)
6 |
7 | # SpaceLiDAR
8 | A Julia toolbox for ICESat-2 and GEDI data.
9 |
10 | *This is a research package now, things are quick to change.*
11 |
12 |
13 | Currently supports the following data products:
14 |
15 | | data product | User Guide (UG) | Algorithm Theoretical Basis Document (ATBD)|
16 | |--- |--- |--- |
17 | | ICESat GLAH14 v34 | [UG](https://nsidc.org/sites/nsidc.org/files/MULTI-GLAH01-V033-V034-UserGuide.pdf) | [ATBD](https://eospso.nasa.gov/sites/default/files/atbd/ATBD-GLAS-02.pdf) |
18 | | ICESat-2 ATL03 v4 | [UG](https://nsidc.org/sites/nsidc.org/files/ATL03-V004-UserGuide.pdf) | [ATBD](https://icesat-2.gsfc.nasa.gov/sites/default/files/page_files/ICESat2_ATL03_ATBD_r004.pdf) |
19 | | ICESat-2 ATL08 v4 | [UG](https://nsidc.org/sites/nsidc.org/files/ATL08-V004-UserGuide.pdf) | [ATBD](https://icesat-2.gsfc.nasa.gov/sites/default/files/page_files/ICESat2_ATL08_ATBD_r004.pdf) |
20 | | ICESat-2 ATL12 v4 | [UG](https://nsidc.org/sites/nsidc.org/files/ATL12-V004-UserGuide.pdf) | [ATBD](https://icesat-2.gsfc.nasa.gov/sites/default/files/page_files/ICESat2_ATL12_ATBD_r004.pdf) |
21 | | GEDI L2A v2 | [UG](https://lpdaac.usgs.gov/documents/998/GEDI02_User_Guide_V2.pdf) | [ATBD](https://lpdaac.usgs.gov/documents/581/GEDI_WF_ATBD_v1.0.pdf) |
22 |
23 |
24 | For a quick overview, see the FOSS4G Pluto notebook [here](tutorial/foss4g_2021.jl.html)
25 |
26 |
27 | ## Papers
28 | Results are used (indirectly) in the following papers:
29 |
30 | Vernimmen, Ronald, Aljosja Hooijer, and Maarten Pronk. 2020. ‘New ICESat-2 Satellite LiDAR Data Allow First Global Lowland DTM Suitable for Accurate Coastal Flood Risk Assessment’. Remote Sensing 12 (17): 2827. [https://doi.org/10/gg9dg6](https://doi.org/10/gg9dg6).
31 |
32 | Hooijer, A., and R. Vernimmen. 2021. ‘Global LiDAR Land Elevation Data Reveal Greatest Sea-Level Rise Vulnerability in the Tropics’. Nature Communications 12 (1): 3592. [https://doi.org/10/gkzf49](https://doi.org/10/gkzf49).
33 |
34 |
35 |
--------------------------------------------------------------------------------
/src/ICESat/GLAH14.jl:
--------------------------------------------------------------------------------
1 | const icesat_fill = 1.7976931348623157E308
2 |
3 | function points(granule::ICESat_Granule{:GLAH14}; step=1)
4 | HDF5.h5open(granule.url, "r") do file
5 |
6 | zt = file["Data_40HZ/Elevation_Surfaces/d_elev"][1:step:end]::Vector{Float64}
7 | m = zt .!= icesat_fill
8 | zc = file["Data_40HZ/Elevation_Corrections/d_satElevCorr"][1:step:end]::Vector{Float64}
9 | m .&= (zc .!= icesat_fill)
10 | zt .+= zc
11 |
12 | # tu = file["$track/land_segments/terrain/h_te_uncertainty"][1:step:end]::Array{Float32,1}
13 |
14 | x = file["Data_40HZ/Geolocation/d_lon"][1:step:end]::Vector{Float64}
15 | m .&= (x .!= icesat_fill)
16 | x[x .> 180] .= x[x .> 180] .- 360.0 # translate from 0 - 360
17 | y = file["Data_40HZ/Geolocation/d_lat"][1:step:end]::Vector{Float64}
18 | m .&= (y .!= icesat_fill)
19 |
20 | t = file["Data_40HZ/DS_UTCTime_40"][1:step:end][m]::Vector{Float64}
21 | # sensitivity = file["$track/land_segments/snr"][1:step:end]::Array{Float32,1}
22 |
23 | q = file["Data_40HZ/Quality/elev_use_flg"][1:step:end][m]::Vector{Int8}
24 | clouds = file["Data_40HZ/Elevation_Flags/elv_cloud_flg"][1:step:end][m]::Vector{Int8}
25 | sat_corr_flag = file["Data_40HZ/Quality/sat_corr_flg"][1:step:end][m]::Vector{Int8}
26 | att_flag = file["Data_40HZ/Quality/sigma_att_flg"][1:step:end][m]::Vector{Int8}
27 | ref_flag = file["Data_40HZ/Reflectivity/d_reflctUC"][1:step:end][m]::Vector{Float64}
28 | gain_value = file["Data_40HZ/Waveform/i_gval_rcv"][1:step:end][m]::Vector{Int32}
29 |
30 | dem = file["Data_40HZ/Geophysical/d_DEM_elv"][1:step:end][m]::Vector{Float64}
31 | dem[dem .== icesat_fill] .= NaN
32 |
33 | times = unix2datetime.(t .+ j2000_offset)
34 |
35 | gt = (
36 | x = x[m],
37 | y = y[m],
38 | z = zt[m],
39 | # u = tu,
40 | t = times,
41 | q = .~(Bool.(q)),
42 | # sensitivity = sensitivity,
43 | cloud = Bool.(clouds),
44 | # classification = Fill("ground", length(times)),
45 | # return_number = Fill(2, length(times)),
46 | # number_of_returns = Fill(2, length(times)),
47 | reference = dem,
48 | gain = gain_value,
49 | reflectivity = ref_flag,
50 | attitude = att_flag,
51 | saturation = sat_corr_flag
52 | )
53 | gt
54 | end
55 | end
56 |
--------------------------------------------------------------------------------
/src/geom.jl:
--------------------------------------------------------------------------------
1 | using TypedTables
2 |
3 | const earth_radius_m = 6378.137 * 1000
4 |
5 | function makeline(x, y, z)
6 | mask = .~isnan.(z)
7 | if sum(mask) > 1 # skip creating invalid lines with 0 or 1 point
8 | line = GDF.AG.creategeom(GDF.AG.wkbLineString25D)
9 | GDF.AG.addpoint!.(Ref(line), x[mask], y[mask], z[mask])
10 | @assert AG.isvalid(line)
11 | else
12 | line = AG.createlinestring()
13 | end
14 | line
15 | end
16 |
17 | function makepoint(x, y, z)
18 | GDF.AG.createpoint.(x, y, z)
19 | end
20 |
21 | # function Base.show(io::IO, geom::GDF.AG.AbstractGeometry)
22 | # if geom.ptr == C_NULL
23 | # print(io, "NULL Geometry")
24 | # else
25 | # print(io, "$(GDF.AG.getgeomtype(geom)) geometry")
26 | # end
27 | # end
28 |
29 | function envelope_polygon(geom::GDF.AG.AbstractGeometry)
30 | e = GDF.AG.envelope(geom)
31 | polygon = GDF.AG.createpolygon()
32 | ring = GDF.AG.createlinearring([(e.MinX, e.MinY), (e.MaxX, e.MinY), (e.MaxX, e.MaxY), (e.MinX, e.MaxY), (e.MinX, e.MinY)])
33 | GDF.AG.addgeom!(polygon, ring)
34 | polygon
35 | end
36 |
37 | """Calculatitudee angle of direction in degrees where North is 0° for a Table."""
38 | function angle!(t)
39 | # this assumes the table is ordered by time (ascending)
40 | t.angle = angle(t.x, t.y)
41 | t
42 | end
43 |
44 | """
45 | angle(longitude::Vector{Number}, latitude::Vector{Number})
46 |
47 | Calculate the angle of direction from previous points in degrees where North is 0°.
48 | Points are given as `longitude` and `latitude` pairs in their own vector.
49 | The angle for the first point is undefined and set to the second.
50 |
51 | Returns a `Vector{Number}` of angles
52 | """
53 | function angle(longitude, latitude)
54 | length(longitude) == length(latitude) || error("`longitude` and `latitude` should have the same length.")
55 | angle = zeros(length(longitude))
56 | prev = zeros(2)
57 | for i ∈ 1:length(longitude)
58 | angle[i] = rad2deg(atan(longitude[i] - prev[1], latitude[i] - prev[2]))
59 | prev[1] = longitude[i]
60 | prev[2] = latitude[i]
61 | end
62 | angle[1] = angle[2]
63 | return angle
64 | end
65 |
66 | """
67 | shift(longitude, latitude, angle, distance)
68 |
69 | Shift `longitude` and `latitude` with `distance` m in direction `angle`, where North is 0°.
70 | Returns a tuple of the shifted coordinates: `(longitude, latitude)`
71 | """
72 | function shift(longitude, latitude, angle, distance)
73 | θ = deg2rad(angle)
74 | δ = distance / earth_radius_m
75 | ϕ = deg2rad(latitude)
76 | λ = deg2rad(longitude)
77 |
78 | # Distances.jl only gives us Haversine, so this is the inverse
79 | ϕnew = asin(
80 | sin(ϕ) * cos(δ) + cos(ϕ) * sin(δ) * cos(θ)
81 | )
82 | λnew = λ + atan(
83 | sin(θ) * sin(δ) * cos(ϕ), cos(δ) - sin(ϕ) * sin(ϕnew)
84 | )
85 | return rad2deg(λnew), rad2deg(ϕnew)
86 | end
87 |
--------------------------------------------------------------------------------
/src/geom_utils.jl:
--------------------------------------------------------------------------------
1 | using ArchGDAL; const AG = ArchGDAL
2 | using Distances
3 | using TypedTables
4 |
5 | function linpol(ax, bx, ay, by, x)
6 | # ax, bx = sort([ax, bx])
7 | factor = (x - ax) / (bx - ax)
8 | ay + (by - ay) * factor
9 | end
10 |
11 | function z_along_line(line, point)
12 | x = AG.getx(point, 0)
13 | # point left of line, take first z
14 | fx, fy, fz = AG.getpoint(line, 0)
15 | lx, ly, lz = AG.getpoint(line, AG.ngeom(line) - 1)
16 | fx, lx = sort([fx, lx])
17 | if x <= fx
18 | @info "Before line"
19 | return fz
20 | elseif x >= lx
21 | @info "Behind line"
22 | return lz
23 | else
24 | for i ∈ 0:AG.ngeom(line) - 2
25 | xa, ay, za = AG.getpoint(line, i)
26 | xb, by, zb = AG.getpoint(line, i + 1)
27 | if xa < x < xb || xa > x > xb
28 | return linpol(xa, xb, za, zb, x)
29 | end
30 | end
31 | end
32 | @error "Interpolation failed"
33 | NaN
34 | end
35 |
36 | """Split a linestring if the next point is further than `distance`.
37 | Not using Haversine here, as we want to split on meridians and such."""
38 | function splitline(line::AG.IGeometry, distance=1.)
39 | points = [AG.getpoint(line, i - 1) for i in 1:AG.ngeom(line)]
40 | splits = Vector{Int}([0])
41 | for i ∈ 1:length(points) - 1
42 | d = Euclidean()(points[i][1:2], points[i + 1][1:2])
43 | if d > distance
44 | push!(splits, i)
45 | end
46 | end
47 | if length(splits) == 1
48 | return line
49 | else
50 | lines = Vector{Vector{Tuple{Float64,Float64,Float64}}}()
51 | push!(splits, length(points))
52 | for i ∈ 1:length(splits) - 1
53 | line = points[splits[i] + 1:splits[i + 1]]
54 | push!(lines, line)
55 | end
56 | filter!(x -> length(x) > 1, lines) # filter out single point linestrings
57 | return AG.createmultilinestring(lines)
58 | end
59 | end
60 |
61 | function splitline(table::TypedTables.Table, distance=1.)
62 | rows = Vector{NamedTuple}()
63 | for row in table
64 | geom = splitline(row.geom, distance)
65 | if AG.getgeomtype(geom) == AG.GDAL.wkbMultiLineString25D
66 | for i in 1:AG.ngeom(geom)
67 | push!(rows, merge(row, (geom = AG.getgeom(geom, i - 1),)))
68 | end
69 | else
70 | push!(rows, merge(row, (geom = geom,)))
71 | end
72 | end
73 | Table(rows)
74 | end
75 |
76 | function clip!(table::TypedTables.Table, box::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}})
77 | polygon = createpolygon([[box.min_x, box.min_y], [box.max_x, box.min_y], [box.max_x, box.max_y], [box.min_x, box.max_y], [box.min_x, box.min_y]])
78 | table.geom .= clip.(table.geom, Ref(polygon))
79 | end
80 |
81 | function clip(geom::AG.IGeometry, polygon::AG.IGeometry)
82 | if AG.ngeom(geom) > 0 && AG.intersects(geom, polygon)
83 | AG.intersection(geom, polygon)
84 | else
85 | AG.createlinestring()
86 | end
87 | end
88 |
89 | function intersect(a::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}}, b::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}})
90 | !(b.min_x > a.max_x || b.max_x < a.min_x || b.min_y > a.max_y || b.max_y < a.min_y)
91 | end
92 |
--------------------------------------------------------------------------------
/test/runtests.jl:
--------------------------------------------------------------------------------
1 | using SpaceLiDAR
2 | using Test
3 | using LazIO
4 | using Distances
5 | import Downloads
6 | using Random
7 |
8 | const rng = MersenneTwister(54321)
9 |
10 | # ensure test data is present
11 | testdir = @__DIR__
12 | datadir = joinpath(testdir, "data")
13 | isdir(datadir) || mkdir(datadir)
14 |
15 | function download_artifact(version, source_filename)
16 | local_path = joinpath(datadir, source_filename)
17 | url = "https://github.com/evetion/SpaceLiDAR-artifacts/releases/download/v$version/$source_filename"
18 | isfile(local_path) || Downloads.download(url, local_path)
19 | end
20 |
21 | download_artifact(v"0.1", "ATL03_20201121151145_08920913_004_01.h5")
22 | download_artifact(v"0.1", "ATL08_20201121151145_08920913_004_01.h5")
23 | download_artifact(v"0.1", "GEDI02_A_2019242104318_O04046_01_T02343_02_003_02_V002.h5")
24 | download_artifact(v"0.1", "GLAH14_634_1102_001_0071_0_01_0001.H5")
25 |
26 | @testset "SpaceLiDAR.jl" begin
27 |
28 | @testset "utils" begin
29 | @test SpaceLiDAR.track_power(0, "gt1l") == "strong"
30 | @test SpaceLiDAR.track_power(0, "gt1r") == "weak"
31 | @test SpaceLiDAR.track_power(1, "gt1l") == "weak"
32 | @test SpaceLiDAR.track_power(1, "gt1r") == "strong"
33 | @test SpaceLiDAR.track_power(2, "gt1l") == "transit"
34 | @test SpaceLiDAR.track_power(2, "gt1r") == "transit"
35 | end
36 |
37 | @testset "search" begin
38 | @test length(find(:ICESat, "GLAH14")) > 0
39 | @test length(find(:ICESat2, "ATL03", (min_x = 4., min_y = 40., max_x = 5., max_y = 50.))) > 0
40 | @test length(find(:ICESat2, "ATL08", (min_x = 4., min_y = 40., max_x = 5., max_y = 50.))) > 0
41 | @test length(find(:GEDI, "GEDI02_A", (min_x = 4., min_y = 40., max_x = 5., max_y = 50.))) > 0
42 | end
43 |
44 | @testset "GLAH14" begin
45 | fn = joinpath(@__DIR__, "data/GLAH14_634_1102_001_0071_0_01_0001.H5")
46 | g = SpaceLiDAR.granule_from_file(fn)
47 | points = SpaceLiDAR.points(g)
48 | end
49 | @testset "ATL03" begin
50 | fn3 = joinpath(@__DIR__, "data/ATL03_20201121151145_08920913_004_01.h5")
51 | g3 = SpaceLiDAR.granule_from_file(fn3)
52 | points = SpaceLiDAR.points(g3)
53 | @test length(points) == 6
54 | lines = SpaceLiDAR.lines(g3, step=1000)
55 | @test length(lines) == 6
56 | SpaceLiDAR.classify(g3)
57 | end
58 | @testset "ATL08" begin
59 | fn8 = joinpath(@__DIR__, "data/ATL08_20201121151145_08920913_004_01.h5")
60 | g8 = SpaceLiDAR.granule_from_file(fn8)
61 | points = SpaceLiDAR.points(g8, step=1000)
62 | @test length(points) == 6
63 | lines = SpaceLiDAR.lines(g8, step=1000)
64 | @test length(lines) == 6
65 | LazIO.write("test.laz", g8)
66 | end
67 | @testset "L2A" begin
68 | fng = joinpath(@__DIR__, "data/GEDI02_A_2019242104318_O04046_01_T02343_02_003_02_V002.h5")
69 | gg = SpaceLiDAR.granule_from_file(fng)
70 | points = SpaceLiDAR.points(gg, step=1000)
71 | @test length(points) == 8
72 | points = SpaceLiDAR.points(gg, step=1000, canopy=true)
73 | @test length(points) == 16
74 | lines = SpaceLiDAR.lines(gg, step=1000)
75 | @test length(lines) == 8
76 | LazIO.write("test.laz", gg)
77 | end
78 | @testset "Geometry" begin
79 | @testset "shift" begin
80 | n = 100
81 | for (d, angle, x, y) ∈ zip(rand(rng, 0:1000, n), rand(rng, 1:360, n), rand(rng, -180:180, n), rand(-90:90, n))
82 | o = (x, y)
83 | p = SpaceLiDAR.shift(o..., angle, d)
84 | @test isapprox(Haversine()(o, p), d; rtol=0.001 * d)
85 | end
86 | end
87 | end
88 | end
89 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | [](https://evetion.github.io/SpaceLiDAR.jl/stable)
3 | [](https://evetion.github.io/SpaceLiDAR.jl/dev)
4 | [](https://github.com/evetion/SpaceLiDAR.jl/actions/workflows/CI.yml)
5 | [](https://codecov.io/gh/evetion/SpaceLiDAR.jl)
6 |
7 |
8 | # SpaceLiDAR
9 | A Julia toolbox for ICESat-2 and GEDI data.
10 |
11 | *This is a research package now, things are quick to change.*
12 |
13 | Currently supports the following data products:
14 |
15 | | data product | User Guide (UG) | Algorithm Theoretical Basis Document (ATBD)|
16 | |--- |--- |--- |
17 | | ICESat GLAH14 v34 | [UG](https://nsidc.org/sites/nsidc.org/files/MULTI-GLAH01-V033-V034-UserGuide.pdf) | [ATBD](https://eospso.nasa.gov/sites/default/files/atbd/ATBD-GLAS-02.pdf) |
18 | | ICESat-2 ATL03 v4 | [UG](https://nsidc.org/sites/nsidc.org/files/ATL03-V004-UserGuide.pdf) | [ATBD](https://icesat-2.gsfc.nasa.gov/sites/default/files/page_files/ICESat2_ATL03_ATBD_r004.pdf) |
19 | | ICESat-2 ATL08 v4 | [UG](https://nsidc.org/sites/nsidc.org/files/ATL08-V004-UserGuide.pdf) | [ATBD](https://icesat-2.gsfc.nasa.gov/sites/default/files/page_files/ICESat2_ATL08_ATBD_r004.pdf) |
20 | | ICESat-2 ATL12 v4 | [UG](https://nsidc.org/sites/nsidc.org/files/ATL12-V004-UserGuide.pdf) | [ATBD](https://icesat-2.gsfc.nasa.gov/sites/default/files/page_files/ICESat2_ATL12_ATBD_r004.pdf) |
21 | | GEDI L2A v2 | [UG](https://lpdaac.usgs.gov/documents/998/GEDI02_User_Guide_V2.pdf) | [ATBD](https://lpdaac.usgs.gov/documents/581/GEDI_WF_ATBD_v1.0.pdf) |
22 |
23 | For a quick overview, see the FOSS4G Pluto notebook [here](https://www.evetion.nl/SpaceLiDAR.jl/dev/tutorial/foss4g_2021.jl.html)
24 |
25 | # Install
26 | ```julia
27 | ] add SpaceLiDAR
28 | ```
29 |
30 | # Usage
31 | Search for data
32 | ```julia
33 | using SpaceLiDAR
34 | # Find all ATL08 granules
35 | granules = find(:ICESat2, "ATL08")
36 |
37 | # Find only ATL03 granules in a part of Vietnam
38 | vietnam = (min_x = 102., min_y = 8.0, max_x = 107.0, max_y = 12.0)
39 | granules = find(:ICESat2, "ATL08", vietnam, "004")
40 |
41 | # Find GEDI granules in the same way
42 | granules = find(:GEDI, "GEDI02_A")
43 |
44 | # A granule is pretty simple
45 | granule = granules[1]
46 | granule.id # filename
47 | granule.url # download url
48 | granule.info # derived information from id
49 |
50 | # Downloading granules requires a setup .netrc with an NASA EarthData account
51 | # we provide a helper function, that creates/updates a ~/.netrc or ~/_netrc
52 | SpaceLiDAR.netrc!(, ) # replace with your credentials
53 |
54 | # Afterward you can download (requires curl to be available on PATH)
55 | fn = SpaceLiDAR.download!(granule)
56 |
57 | # You can also load a granule from disk
58 | granule = granule_from_file(fn)
59 |
60 | # Or from a folder
61 | local_granules = granules_from_folder()
62 |
63 | # Instantiate search results locally (useful for GEDI location indexing)
64 | local_granules = instantiate(granules, )
65 | ```
66 |
67 | Derive linestrings
68 | ```julia
69 | using TypedTables
70 | fn = "ATL03_20181110072251_06520101_003_01.h5"
71 | g = SpaceLiDAR.granule_from_file(fn)
72 | tlines = Table(SpaceLiDAR.lines(g, step=10000))
73 | Table with 4 columns and 6 rows:
74 | geom sun_angle track t
75 | ┌───────────────────────────────────────────────────────────────────────────
76 | 1 │ wkbLineString25D geometry 38.3864 gt1l_weak 2018-11-10T07:28:01.688
77 | 2 │ wkbLineString25D geometry 38.375 gt1r_strong 2018-11-10T07:28:02.266
78 | 3 │ wkbLineString25D geometry 38.2487 gt2l_weak 2018-11-10T07:28:04.474
79 | 4 │ wkbLineString25D geometry 38.1424 gt2r_strong 2018-11-10T07:28:07.374
80 | 5 │ wkbLineString25D geometry 38.2016 gt3l_weak 2018-11-10T07:28:05.051
81 | 6 │ wkbLineString25D geometry 38.1611 gt3r_strong 2018-11-10T07:28:06.344
82 | SpaceLiDAR.GDF.write("lines.gpkg", tlines)
83 | ```
84 |
--------------------------------------------------------------------------------
/src/ICESat-2/ICESat-2.jl:
--------------------------------------------------------------------------------
1 | using Dates
2 |
3 | const icesat2_tracks = ("gt1l", "gt1r", "gt2l", "gt2r", "gt3l", "gt3r")
4 | const classification = Dict(0x03 => "low_canopy", 0x02 => "ground", 0x04 => "high_canopy", 0x05 => "unclassified", 0x01 => "noise")
5 | const icesat_date_format = dateformat"yyyymmddHHMMSS"
6 | const gps_offset = 315964800
7 | const fill_value = 3.4028235f38
8 | const blacklist = readlines(joinpath(@__DIR__, "blacklist.txt"))
9 | const icesat2_inclination = 88.0 # actually 92, so this is 180. - 92.
10 |
11 |
12 | mutable struct ICESat2_Granule{product} <: Granule
13 | id::String
14 | url::String
15 | bbox::NamedTuple
16 | info::NamedTuple
17 | end
18 | ICESat2_Granule(product, args...) = ICESat2_Granule{product}(args...)
19 |
20 | function Base.copy(g::ICESat2_Granule{product}) where product
21 | ICESat2_Granule(product, g.id, g.url, g.bbox, g.info)
22 | end
23 |
24 | function bounds(granule::ICESat2_Granule)
25 | HDF5.h5open(granule.url, "r") do file
26 | extent = attributes(file["METADATA/Extent"])
27 | nt = (;collect(Symbol(x) => read(extent[x]) for x in keys(extent))...)
28 | ntb = (min_x = nt.westBoundLongitude, max_x = nt.eastBoundLongitude, min_y = nt.southBoundLatitude, max_y = nt.northBoundLatitude, min_z = -1000, max_z = 8000)
29 | granule.bbox = ntb
30 | ntb
31 | end
32 | end
33 |
34 | """Rough approximation of the track angle on a Euclidian lon/lat plot."""
35 | function angle(::ICESat2_Granule, latitude=0.0)
36 | d = icesat2_inclination / (pi / 2)
37 | cos(latitude / d) * icesat2_inclination
38 | end
39 |
40 | """Return whether track is a strong or weak beam.
41 | See Section 7.5 The Spacecraft Orientation Parameter of the ATL03 ATDB."""
42 | function track_power(orientation::Integer, track::String)
43 | # Backward orientation, left beam is strong
44 | if orientation == 0
45 | ifelse(occursin("r", track), "weak", "strong")
46 | # Forward orientation, right beam is strong
47 | elseif orientation == 1
48 | ifelse(occursin("r", track), "strong", "weak")
49 | # Orientation in transit, degradation could occur
50 | else
51 | "transit"
52 | end
53 | end
54 |
55 | Base.isfile(g::ICESat2_Granule) = Base.isfile(g.url)
56 |
57 | function Base.convert(product::Symbol, g::ICESat2_Granule{T}) where T
58 | g = ICESat2_Granule{product}(
59 | replace(replace(g.id, String(T) => String(product)), lowercase(String(T)) => lowercase(String(product))),
60 | replace(replace(g.url, String(T) => String(product)), lowercase(String(T)) => lowercase(String(product))),
61 | g.bbox,
62 | g.info
63 | )
64 | # Check other version
65 | if !isfile(g)
66 | # TODO Also check higher versions
67 | url = replace(g.url, "01.h5" => "02.h5")
68 | if isfile(url)
69 | @warn "Used newer version available"
70 | g = ICESat2_Granule{product}(g.id, url, g.bbox, g.info)
71 | end
72 | end
73 | g
74 | end
75 |
76 | """Derive info based on file id.
77 |
78 | The id is built up as follows, see 1.2.5 in the user guide
79 | ATL03_[yyyymmdd][hhmmss]_[ttttccss]_[vvv_rr].h5
80 | """
81 | function info(g::ICESat2_Granule)
82 | icesat2_info(g.id)
83 | end
84 |
85 | # Granule regions 1-14. Region 4 (North Pole) and region 11 (Sout Pole) are both ascending descending
86 | const ascending_segments = [true, true, true, true, false, false, false, false, false, false, true, true, true, true]
87 | const descending_segments = [false, false, false, true, true, true, true, true, true, true, true, false, false, false]
88 |
89 | function icesat2_info(filename)
90 | id, _ = splitext(filename)
91 | type, datetime, track, version, revision = split(id, "_")
92 | segment = parse(Int, track[7:end])
93 | (type = Symbol(type), date = DateTime(datetime, icesat_date_format), rgt = parse(Int, track[1:4]), cycle = parse(Int, track[5:6]), segment = segment, version = parse(Int, version), revision = parse(Int, revision), ascending = ascending_segments[segment], descending = descending_segments[segment])
94 | end
95 |
96 | function is_blacklisted(g::Granule)
97 | g.id in blacklist
98 | end
99 |
--------------------------------------------------------------------------------
/notebooks/juliacon_2021.jl:
--------------------------------------------------------------------------------
1 | ### A Pluto.jl notebook ###
2 | # v0.14.8
3 |
4 | using Markdown
5 | using InteractiveUtils
6 |
7 | # ╔═╡ b7aa82f4-f38f-4dd2-9d86-984205cf95b9
8 | using SpaceLiDAR
9 |
10 | # ╔═╡ 2337d9f8-7615-43cc-9c8d-83176b685b8e
11 | using DataFrames
12 |
13 | # ╔═╡ 6a648fcf-0bd5-49ae-9cf8-0cf99867ca47
14 | using GeoDataFrames
15 |
16 | # ╔═╡ 7efc9e7e-58be-4fac-9eca-d571f1382b65
17 | using LazIO
18 |
19 | # ╔═╡ a5acd89a-320b-4cc8-81d3-16fbedb689b0
20 | md"""# SpaceLiDAR.jl @ JuliaCon 2021"""
21 |
22 | # ╔═╡ 8c11cb9b-ef88-48f3-a4c3-9dbfee1ccbce
23 | md"""
24 | An example of using SpaceLiDAR to retrieve and process ICESat-2 and GEDI satellite LiDAR data."""
25 |
26 | # ╔═╡ 1d8c9cd5-544a-4267-9895-7d41a81146d8
27 | md"""#### Search"""
28 |
29 | # ╔═╡ 5c6b7711-5799-4a34-9cfc-14902d30bdd2
30 | md"""Let's find some data in Vietnam. We can define a (very rough) bounding box and search for data. This makes use of [NASA EarthData Search](https://search.earthdata.nasa.gov/)."""
31 |
32 | # ╔═╡ 9f611522-1c93-4d77-ac8e-49d7b90b1820
33 | vietnam = (min_x = 102., min_y = 8.0, max_x = 107.0, max_y = 12.0)
34 |
35 | # ╔═╡ 1729d09f-fa21-4da5-ac71-e1eb34f0ca11
36 | granules = find(:ICESat2, "ATL08", vietnam, "004")
37 |
38 | # ╔═╡ c7ed0663-0dd0-496e-bbcb-61f09e5691c5
39 | md"""These datasets (granules) come in the form of HDF5 (.h5) files, with *a lot* of attributes. Downloading them requires a working NASA EarthData account configured in an `~/.netrc` file."""
40 |
41 | # ╔═╡ bf418df8-6923-44f3-a067-367a7c52afdf
42 | begin
43 | granule = copy(granules[1])
44 | SpaceLiDAR.download!(granule)
45 | end
46 |
47 | # ╔═╡ 6da50bf6-fd03-479b-8d04-d9ccc41415c5
48 | md"""#### Extract"""
49 |
50 | # ╔═╡ 4e3e4815-778e-4339-bd9b-256bb4687804
51 | md"""Now that we have one granule locally, let's extract some data. This package is opiniated and does already apply some filters for you. It also converts dates and unnests where required."""
52 |
53 | # ╔═╡ 4c04f1c2-c5d3-4f8e-9ba1-17088eb5ebbf
54 | t = vcat(DataFrame.(points(granule, canopy=true))...)
55 |
56 | # ╔═╡ 36d1438b-041a-4ea5-a4c6-e49b0fe9c4ff
57 | md"""ICESat-2 and GEDI have multiple beams, each is provided as its own Table, hence the `vcat`."""
58 |
59 | # ╔═╡ 74e7ee28-de25-4393-b778-9766d58c189d
60 | tt = t[(t.sensitivity .>= 2) .& (t.u .<= 5) , :]
61 |
62 | # ╔═╡ 195ebb14-64e9-4d60-bada-e23aefb11ee8
63 | md"""#### Export"""
64 |
65 | # ╔═╡ 518bcb83-fa7e-42f6-a53e-240f94dd5d19
66 | md"""It's useful to inspect this data in other software such as QGIS, so let's save it as a GeoPackage. For this purpose I made `GeoDataFrames.jl`, built on top of `ArchGDAL.jl` and `GDAL`."""
67 |
68 | # ╔═╡ 4e4c0925-a88f-447e-9a01-6847169d8325
69 | tt.geom=createpoint.(tt.x, tt.y, tt.z)
70 |
71 | # ╔═╡ a863a0bc-bd7b-421d-85f0-65b0b0572ac2
72 | GeoDataFrames.write("$(granule.id).gpkg", tt)
73 |
74 | # ╔═╡ da214c65-3a1b-4691-ae0b-6c00549f5423
75 | md"""For those more familiar with airborne LiDAR, you can also export to the `.laz` format by using `LazIO.jl`. Note that most attributes are lost this way."""
76 |
77 | # ╔═╡ 21d2614e-de2a-4ede-bdd6-a3a862acddad
78 | LazIO.write("$(granule.id).laz", granule)
79 |
80 | # ╔═╡ Cell order:
81 | # ╟─a5acd89a-320b-4cc8-81d3-16fbedb689b0
82 | # ╟─8c11cb9b-ef88-48f3-a4c3-9dbfee1ccbce
83 | # ╠═b7aa82f4-f38f-4dd2-9d86-984205cf95b9
84 | # ╟─1d8c9cd5-544a-4267-9895-7d41a81146d8
85 | # ╟─5c6b7711-5799-4a34-9cfc-14902d30bdd2
86 | # ╟─9f611522-1c93-4d77-ac8e-49d7b90b1820
87 | # ╠═1729d09f-fa21-4da5-ac71-e1eb34f0ca11
88 | # ╟─c7ed0663-0dd0-496e-bbcb-61f09e5691c5
89 | # ╠═bf418df8-6923-44f3-a067-367a7c52afdf
90 | # ╟─6da50bf6-fd03-479b-8d04-d9ccc41415c5
91 | # ╟─4e3e4815-778e-4339-bd9b-256bb4687804
92 | # ╠═2337d9f8-7615-43cc-9c8d-83176b685b8e
93 | # ╠═4c04f1c2-c5d3-4f8e-9ba1-17088eb5ebbf
94 | # ╟─36d1438b-041a-4ea5-a4c6-e49b0fe9c4ff
95 | # ╠═74e7ee28-de25-4393-b778-9766d58c189d
96 | # ╟─195ebb14-64e9-4d60-bada-e23aefb11ee8
97 | # ╟─518bcb83-fa7e-42f6-a53e-240f94dd5d19
98 | # ╠═6a648fcf-0bd5-49ae-9cf8-0cf99867ca47
99 | # ╠═4e4c0925-a88f-447e-9a01-6847169d8325
100 | # ╠═a863a0bc-bd7b-421d-85f0-65b0b0572ac2
101 | # ╟─da214c65-3a1b-4691-ae0b-6c00549f5423
102 | # ╠═7efc9e7e-58be-4fac-9eca-d571f1382b65
103 | # ╠═21d2614e-de2a-4ede-bdd6-a3a862acddad
104 |
--------------------------------------------------------------------------------
/src/search.jl:
--------------------------------------------------------------------------------
1 | using HTTP
2 | using JSON
3 |
4 | const world = (min_x = -180., min_y = -90., max_x = 180., max_y = 90.)
5 |
6 | struct Mission{x}
7 | end
8 | Mission(x) = Mission{x}()
9 |
10 | const url = "https://cmr.earthdata.nasa.gov/search/granules.json"
11 |
12 | # GEDIFinder has not been updated to v2
13 | # function find(::Mission{:GEDI}, product::String="GEDI02_A", bbox::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}}=world, version::String="001")
14 | # # https://lpdaacsvc.cr.usgs.gov/services/gedifinder?product=GEDI02_A&version=001&bbox=[28.0,-83,24.0,-79]
15 | # url = "https://lpdaacsvc.cr.usgs.gov/services/gedifinder?"
16 | # q = Dict(
17 | # "bbox" => "[$(bbox.max_y),$(bbox.min_x),$(bbox.min_y),$(bbox.max_x)]",
18 | # "version" => version,
19 | # "product" => product
20 | # )
21 | # # uri = HTTP.URI(;scheme="https", host="lpdaacsvc.cr.usgs.gov", path="/services/gedifinder", query=q)
22 | # r = HTTP.get(url, query=q, verbose=0)
23 | # data = JSON.parse(String(r.body))
24 |
25 | # map(x -> GEDI_Granule(
26 | # Symbol(product),
27 | # basename(x),
28 | # x,
29 | # gedi_info(basename(x))
30 | # ),
31 | # data["data"])
32 | # end
33 |
34 | function find(::Mission{:GEDI}, product::String="GEDI02_A", bbox::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}}=world, version::String="002")
35 | granules = earthdata_search(product, bbox, version; provider="LPDAAC_ECS")
36 | map(x -> GEDI_Granule(
37 | Symbol(product),
38 | x["producer_granule_id"],
39 | get(get(x, "links", [Dict()])[1], "href", ""),
40 | gedi_info(x["producer_granule_id"])
41 | ),
42 | granules)
43 | end
44 |
45 | function find(::Mission{:ICESat2}, product::String="ATL03", bbox::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}}=world, version::String="005")
46 | # https://cmr.earthdata.nasa.gov/search/granules.json?provider=NSIDC_ECS&page_size=2000&sort_key[]=-start_date&sort_key[]=producer_granule_id&short_name=ATL03&version=2&version=02&version=002&temporal[]=2018-10-13T00:00:00Z,2020-01-13T08:13:50Z&bounding_box=-180,-90,180,90
47 | granules = earthdata_search(product, bbox, version)
48 | map(x -> ICESat2_Granule(
49 | Symbol(product),
50 | x["producer_granule_id"],
51 | get(get(x, "links", [Dict()])[1], "href", ""),
52 | NamedTuple(),
53 | icesat2_info(x["producer_granule_id"])
54 | ),
55 | granules)
56 | end
57 |
58 | function find(::Mission{:ICESat}, product::String="GLAH14", bbox::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}}=world, version::String="034")
59 | # https://cmr.earthdata.nasa.gov/search/granules.json?provider=NSIDC_ECS&page_size=2000&sort_key[]=-start_date&sort_key[]=producer_granule_id&short_name=ATL03&version=2&version=02&version=002&temporal[]=2018-10-13T00:00:00Z,2020-01-13T08:13:50Z&bounding_box=-180,-90,180,90
60 | granules = earthdata_search(product, bbox, version)
61 | map(x -> ICESat_Granule(
62 | Symbol(product),
63 | x["producer_granule_id"],
64 | get(get(x, "links", [Dict()])[1], "href", ""),
65 | icesat_info(x["producer_granule_id"])
66 | ),
67 | granules)
68 | end
69 |
70 | function parse_cmr_json(r)
71 | data = JSON.parse(String(r.body))
72 | get(get(data, "feed", Dict()), "entry", [])
73 | end
74 |
75 | function find(mission::Symbol, args...)
76 | find(Mission(mission), args...)
77 | end
78 |
79 | function earthdata_search(product::String, bbox::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}}, version::String; provider="NSIDC_ECS")
80 | page_size = 2000
81 | page_num = 1
82 | q = Dict(
83 | "provider" => provider,
84 | "page_num" => page_num,
85 | "page_size" => page_size,
86 | "short_name" => product,
87 | "version" => version,
88 | "bounding_box" => "$(bbox.min_x),$(bbox.min_y),$(bbox.max_x),$(bbox.max_y)"
89 | )
90 | r = HTTP.get(url, query=q)
91 | cgranules = parse_cmr_json(r)
92 | granules = copy(cgranules)
93 | while length(cgranules) == page_size
94 | @warn "Found more than $page_size granules, requesting another $page_size..."
95 | q["page_num"] += 1
96 | r = HTTP.get(url, query=q)
97 | cgranules = parse_cmr_json(r)
98 | append!(granules, cgranules)
99 | end
100 | granules
101 | end
102 |
--------------------------------------------------------------------------------
/src/utils.jl:
--------------------------------------------------------------------------------
1 | using Printf
2 |
3 | """Hacked version of Base.download which adds cookies and (optional) netrc parsing."""
4 | function download_curl(url::AbstractString, filename::AbstractString)
5 | err = PipeBuffer()
6 | pipe = pipeline(`curl -s -b cookie.txt -c cookie.txt --netrc-optional -S -g -L -f -o $filename $url`, stderr=err)
7 | process = run(pipe, wait=false)
8 | if !success(process)
9 | error_msg = readline(err)
10 | @error "Download failed: $error_msg"
11 | Base.pipeline_error(process)
12 | end
13 | return filename
14 | end
15 |
16 | """Generate granule from .h5 file."""
17 | function granule_from_file(filename::AbstractString)
18 | _, ext = splitext(filename)
19 | lowercase(ext) != ".h5" && error("Granule must be a .h5 file")
20 |
21 | name = basename(filename)
22 | if startswith(name, "ATL")
23 | info = icesat2_info(name)
24 | return ICESat2_Granule(info.type, name, filename, (x_min = 0.,), info)
25 | elseif startswith(name, "GEDI")
26 | info = gedi_info(name)
27 | return GEDI_Granule(info.type, name, filename, info)
28 | elseif startswith(name, "GLAH")
29 | info = icesat_info(name)
30 | return ICESat_Granule(info.type, name, filename, info)
31 | else
32 | error("Unknown granule.")
33 | end
34 | end
35 |
36 | """Generate granules from folder filled with .h5 files."""
37 | function granules_from_folder(foldername::AbstractString)
38 | return [granule_from_file(joinpath(foldername, file)) for file in readdir(foldername) if lowercase(splitext(file)[end]) == ".h5"]
39 | end
40 |
41 | function instantiate(granules::Vector{T}, folder::AbstractString) where T <: Granule
42 | local_granules = Vector{eltype(granules)}()
43 | for granule in granules
44 | file = joinpath(folder, granule.id)
45 | if isfile(file)
46 | g = copy(granule)
47 | g.url = file
48 | push!(local_granules, g)
49 | end
50 | end
51 | @info "Found $(@sprintf("%.0f",(length(local_granules) / length(granules) * 100)))% of $(length(granules)) provided granules."
52 | local_granules
53 | end
54 |
55 |
56 | """Filter with bbox."""
57 | function in_bbox(xyz, bbox::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}})
58 | filter(row -> ((bbox.min_x <= row.x <= bbox.max_x) && (bbox.min_y <= row.y <= bbox.max_y)), xyz)
59 | end
60 | function in_bbox!(xyz, bbox::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}})
61 | filter!(row -> ((bbox.min_x <= row.x <= bbox.max_x) && (bbox.min_y <= row.y <= bbox.max_y)), xyz)
62 | end
63 |
64 | function in_bbox(g::G, bbox::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}}) where G <: Granule
65 | box = bounds(g)
66 | intersect((;box.min_x,box.min_y,box.max_x,box.max_y), bbox)
67 | end
68 |
69 | function in_bbox(g::Vector{G}, bbox::NamedTuple{(:min_x, :min_y, :max_x, :max_y),NTuple{4,Float64}}) where G <: Granule
70 | m = in_bbox.(g, Ref(bbox))
71 | g[m]
72 | end
73 |
74 | function bounds(table)
75 | NamedTuple{(:min_x, :max_x, :min_y, :max_y, :min_z, :max_z)}((extrema(table.x)..., extrema(table.y)..., extrema(table.z)...))
76 | end
77 |
78 | function write_granule_urls!(fn::String, granules::Vector{<:Granule})
79 | open(fn, "w") do f
80 | for granule in granules
81 | println(f, granule.url)
82 | end
83 | end
84 | abspath(fn)
85 | end
86 |
87 | function test(granule::Granule)
88 | try
89 | HDF5.h5open(granule.url, "r") do file
90 | keys(file)
91 | end
92 | return true
93 | catch e
94 | @error "Granule at $(granule.url) failed with $e."
95 | return false
96 | end
97 | end
98 |
99 | """Writes/updates netrc file for ICESat-2 and GEDI downloads."""
100 | function netrc!(username, password)
101 | if Sys.iswindows()
102 | fn = joinpath(homedir(), "_netrc")
103 | else
104 | fn = joinpath(homedir(), ".netrc")
105 | end
106 |
107 | open(fn, "a") do f
108 | write(f, "\n")
109 | write(f, "machine urs.earthdata.nasa.gov login $username password $(password)\n")
110 | write(f, "machine n5eil01u.ecs.nsidc.org login $username password $(password)\n")
111 | end
112 | fn
113 | end
114 |
115 | function filter_rgt(granules::Vector{<:Granule}, rgt::Int, cycle::Int)
116 | results = Vector{Granule}()
117 | for granule in granules
118 | i = info(granule)
119 | if i.rgt == rgt && i.cycle == cycle
120 | push!(results, granule)
121 | end
122 | end
123 | results
124 | end
125 |
--------------------------------------------------------------------------------
/src/ICESat-2/ATL03.jl:
--------------------------------------------------------------------------------
1 | function points(granule::ICESat2_Granule{:ATL03}; bbox=nothing, tracks=icesat2_tracks, step=1)
2 | dfs = Vector{NamedTuple}()
3 | HDF5.h5open(granule.url, "r") do file
4 | t_offset = read(file, "ancillary_data/atlas_sdp_gps_epoch")[1]::Float64 + gps_offset
5 | orientation = read(file, "orbit_info/sc_orient")[1]::Int8
6 |
7 | for track ∈ tracks
8 | power = track_power(orientation, track)
9 | if in(track, keys(file)) && in("heights", keys(file[track]))
10 | track_df = points(granule, file, track, power, t_offset, step)
11 | push!(dfs, track_df)
12 | end
13 | end
14 | end
15 | for df in dfs
16 | df.z[df.z .== fill_value] .= NaN
17 | end
18 | dfs
19 | end
20 |
21 | function lines(granule::ICESat2_Granule{:ATL03}; tracks=icesat2_tracks, step=100)
22 | dfs = Vector{NamedTuple}()
23 | HDF5.h5open(granule.url, "r") do file
24 | t_offset = read(file, "ancillary_data/atlas_sdp_gps_epoch")[1]::Float64 + gps_offset
25 | orientation = read(file, "orbit_info/sc_orient")[1]::Int8
26 |
27 | for track ∈ tracks
28 | power = track_power(orientation, track)
29 | if in(track, keys(file)) && in("heights", keys(file[track]))
30 | track_df = points(granule, file, track, power, t_offset, step)
31 | line = makeline(track_df.x, track_df.y, track_df.z)
32 | i = div(length(track_df.t), 2) + 1
33 | nt = (geom = line, sun_angle = Float64(track_df.sun_angle[i]), track = track, power = power, t = track_df.t[i], granule = granule.id)
34 | push!(dfs, nt)
35 | end
36 | end
37 | end
38 | dfs
39 | end
40 |
41 | function points(::ICESat2_Granule{:ATL03}, file::HDF5.H5DataStore, track::AbstractString, power::AbstractString, t_offset::Float64, step=1)
42 | z = file["$track/heights/h_ph"][1:step:end]::Vector{Float32}
43 | x = file["$track/heights/lon_ph"][1:step:end]::Vector{Float64}
44 | y = file["$track/heights/lat_ph"][1:step:end]::Vector{Float64}
45 | t = file["$track/heights/delta_time"][1:step:end]::Vector{Float64}
46 | c = file["$track/heights/signal_conf_ph"][1,1:step:end]::Vector{Int8}
47 | q = file["$track/heights/quality_ph"][1:step:end]::Vector{Int8}
48 |
49 | # Segment calc
50 | segment_counts = read(file, "$track/geolocation/segment_ph_cnt")::Vector{Int32}
51 |
52 | segment = read(file, "$track/geolocation/segment_id")::Vector{Int32}
53 | segments = map_counts(segment, segment_counts)[1:step:end]
54 |
55 | sun_angle = read(file, "$track/geolocation/solar_elevation")::Vector{Float32}
56 | sun_angles = map_counts(sun_angle, segment_counts)[1:step:end]
57 |
58 | u = read(file, "$track/geolocation/sigma_h")::Vector{Float32}
59 | uu = map_counts(u, segment_counts)[1:step:end]
60 |
61 | dem = read(file, "$track/geophys_corr/dem_h")::Vector{Float32}
62 | demd = map_counts(dem, segment_counts)[1:step:end]
63 |
64 | times = unix2datetime.(t .+ t_offset)
65 |
66 | (
67 | x = x,
68 | y = y,
69 | z = z,
70 | q = q,
71 | u = uu,
72 | t = times,
73 | confidence = c,
74 | segment = segments,
75 | track = Fill(track, length(sun_angles)),
76 | power = Fill(power, length(sun_angles)),
77 | sun_angle = sun_angles,
78 | reference = demd
79 | )
80 | end
81 |
82 | function map_counts(values, counts)
83 | c = fill(zero(eltype(values)), sum(counts))
84 | ref = 1
85 | for i in eachindex(counts)
86 | value = values[i]
87 | count = counts[i]
88 | c[ref:ref + count - 1] .= value
89 | ref += count
90 | end
91 | c
92 | end
93 |
94 | """Retrieve all points as classified as ground in ATL08."""
95 | function classify(granule::ICESat2_Granule{:ATL03}, atl08::Union{ICESat2_Granule{:ATL08},Nothing}=nothing; tracks=icesat2_tracks)
96 | if isnothing(atl08)
97 | atl08 = convert(:ATL08, granule)
98 | end
99 |
100 | dfs = Vector{NamedTuple}()
101 | HDF5.h5open(granule.url, "r") do file
102 | t_offset = read(file, "ancillary_data/atlas_sdp_gps_epoch")[1]::Float64 + gps_offset
103 | orientation = read(file, "orbit_info/sc_orient")[1]::Int8
104 |
105 | for track ∈ tracks
106 | power = track_power(orientation, track)
107 | if in(track, keys(file)) && in("heights", keys(file[track]))
108 | track_df = points(granule, file, track, power, t_offset)
109 |
110 | mapping = atl03_mapping(atl08, track)
111 |
112 | unique_segments = unique(mapping.segment)
113 | index_map = create_mapping(track_df.segment, unique_segments)
114 |
115 | class = fill("unclassified", length(track_df.x))
116 | for i in 1:length(mapping.segment)
117 | index = get(index_map, mapping.segment[i], nothing)
118 | isnothing(index) && continue
119 | offset = mapping.index[i] - 1
120 | class[index + offset] = classification[mapping.classification[i] + 1]
121 | end
122 | track_dfc = merge(track_df, (classification = class,))
123 | push!(dfs, track_dfc)
124 | end
125 | end
126 | end
127 | dfs
128 | end
129 |
130 | function create_mapping(dfsegment, unique_segments)
131 | index_map = Dict{Int64,Int64}()
132 | for unique_segment in unique_segments
133 | pos = searchsortedfirst(dfsegment, unique_segment)
134 | if (pos <= length(dfsegment)) && (dfsegment[pos] == unique_segment)
135 | index_map[unique_segment] = pos
136 | end
137 | end
138 | index_map
139 | end
140 |
--------------------------------------------------------------------------------
/src/ICESat-2/ATL08.jl:
--------------------------------------------------------------------------------
1 | function points(granule::ICESat2_Granule{:ATL08}; tracks=icesat2_tracks, step=1, canopy=false, ground=true)
2 | dfs = Vector{NamedTuple}()
3 | HDF5.h5open(granule.url, "r") do file
4 | t_offset = read(file, "ancillary_data/atlas_sdp_gps_epoch")[1]::Float64 + gps_offset
5 | orientation = read(file, "orbit_info/sc_orient")[1]::Int8
6 |
7 | for (i, track) ∈ enumerate(tracks)
8 | power = track_power(orientation, track)
9 | if in(track, keys(file)) && in("land_segments", keys(file[track]))
10 | for track_nt ∈ points(granule, file, track, power, t_offset, step, canopy, ground)
11 | track_nt.z[track_nt.z .== fill_value] .= NaN
12 | push!(dfs, track_nt)
13 | end
14 | end
15 | end
16 | end
17 | dfs
18 | end
19 |
20 | function points(::ICESat2_Granule{:ATL08}, file::HDF5.H5DataStore, track::AbstractString, power::AbstractString, t_offset::Float64, step=1, canopy=false, ground=true)
21 | if ground
22 | zt = file["$track/land_segments/terrain/h_te_median"][1:step:end]::Vector{Float32}
23 | tu = file["$track/land_segments/terrain/h_te_uncertainty"][1:step:end]::Vector{Float32}
24 | end
25 | if canopy
26 | zc = file["$track/land_segments/canopy/h_mean_canopy_abs"][1:step:end]::Vector{Float32}
27 | cu = file["$track/land_segments/canopy/h_canopy_uncertainty"][1:step:end]::Vector{Float32}
28 | end
29 | x = file["$track/land_segments/longitude"][1:step:end]::Vector{Float32}
30 | y = file["$track/land_segments/latitude"][1:step:end]::Vector{Float32}
31 | t = file["$track/land_segments/delta_time"][1:step:end]::Vector{Float64}
32 | sensitivity = file["$track/land_segments/snr"][1:step:end]::Vector{Float32}
33 | clouds = file["$track/land_segments/layer_flag"][1:step:end]::Vector{Int8}
34 | scattered = file["$track/land_segments/msw_flag"][1:step:end]::Vector{Int8}
35 | saturated = file["$track/land_segments/sat_flag"][1:step:end]::Vector{Int8}
36 | q = file["$track/land_segments/terrain_flg"][1:step:end]::Vector{Int32}
37 | phr = file["$track/land_segments/ph_removal_flag"][1:step:end]::Vector{Int8}
38 | dem = file["$track/land_segments/dem_h"][1:step:end]::Vector{Float32}
39 | times = unix2datetime.(t .+ t_offset)
40 |
41 | if ground
42 | gt = (
43 | x = x,
44 | y = y,
45 | z = zt,
46 | u = tu,
47 | t = times,
48 | q = q,
49 | phr = Int16.(phr),
50 | sensitivity = sensitivity,
51 | scattered = Int16.(scattered),
52 | saturated = Int16.(saturated),
53 | clouds = Bool.(clouds),
54 | track = Fill(track, length(times)),
55 | power = Fill(power, length(times)),
56 | classification = Fill("ground", length(times)),
57 | return_number = Fill(2, length(times)),
58 | number_of_returns = Fill(2, length(times)),
59 | reference = dem,
60 | )
61 | end
62 | if canopy
63 | ct = (
64 | x = x,
65 | y = y,
66 | z = zc,
67 | u = cu,
68 | t = times,
69 | q = q,
70 | phr = Int16.(phr),
71 | sensitivity = sensitivity,
72 | scattered = Int16.(scattered),
73 | saturated = Int16.(saturated),
74 | clouds = Bool.(clouds),
75 | track = Fill(track, length(times)),
76 | power = Fill(power, length(times)),
77 | classification = Fill("high_canopy", length(times)),
78 | return_number = Fill(1, length(times)),
79 | number_of_returns = Fill(2, length(times)),
80 | reference = dem,
81 | )
82 | end
83 | if canopy && ground
84 | ct, gt
85 | elseif canopy
86 | (ct,)
87 | elseif ground
88 | (gt,)
89 | else
90 | ()
91 | end
92 | end
93 |
94 | function lines(granule::ICESat2_Granule{:ATL08}; tracks=icesat2_tracks, step=100, quality=1)
95 | dfs = Vector{NamedTuple}()
96 | HDF5.h5open(granule.url, "r") do file
97 | # t_offset = read(file, "ancillary_data/atlas_sdp_gps_epoch")[1]::Float64 + gps_offset
98 | orientation = read(file, "orbit_info/sc_orient")[1]::Int8
99 |
100 | for track ∈ tracks
101 | power = track_power(orientation, track)
102 | if in(track, keys(file)) && in("land_segments", keys(file[track]))
103 | z = file["$track/land_segments/terrain/h_te_median"][1:step:end]::Array{Float32,1}
104 | x = file["$track/land_segments/longitude"][1:step:end]::Array{Float32,1}
105 | y = file["$track/land_segments/latitude"][1:step:end]::Array{Float32,1}
106 | # t = file["$track/land_segments/delta_time"][1:step:end]::Array{Float64,1}
107 | # times = unix2datetime.(t .+ t_offset)
108 | z[z .== fill_value] .= NaN
109 | line = makeline(x, y, z)
110 | # i = div(length(t), 2) + 1
111 | nt = (geom = line, track = track, power = power, granule = granule.id)
112 | push!(dfs, nt)
113 | end
114 | end
115 | end
116 | dfs
117 | end
118 |
119 | function atl03_mapping(granule::ICESat2_Granule{:ATL08})
120 | dfs = Vector{NamedTuple}()
121 | HDF5.h5open(granule.url, "r") do file
122 | for track ∈ icesat2_tracks
123 | if in(track, keys(file)) && in("signal_photons", keys(file[track]))
124 | df = atl03_mapping(file, track)
125 | push!(dfs, df)
126 | end
127 | end
128 | end
129 | dfs
130 | end
131 |
132 | function atl03_mapping(granule::ICESat2_Granule{:ATL08}, track::AbstractString)
133 | HDF5.h5open(granule.url, "r") do file
134 | if in(track, keys(file)) && in("signal_photons", keys(file[track]))
135 | df = atl03_mapping(file, track)
136 | end
137 | end
138 | end
139 |
140 | function atl03_mapping(file::HDF5.H5DataStore, track::AbstractString)
141 | c = read(file, "$track/signal_photons/classed_pc_flag")::Array{Int8,1}
142 | i = read(file, "$track/signal_photons/classed_pc_indx")::Array{Int32,1}
143 | s = read(file, "$track/signal_photons/ph_segment_id")::Array{Int32,1}
144 | (segment = s, index = i, classification = c, track = track)
145 | end
146 |
--------------------------------------------------------------------------------
/src/GEDI/L2A.jl:
--------------------------------------------------------------------------------
1 | const t_offset = 1514764800 # Time delta since Jan 1 00:00 2018.
2 |
3 | function bounds(::GEDI_Granule)
4 | (min_x = -180., max_x = 180., min_y = -63., max_y = 63., min_z = -1000., max_z = 25000.)
5 | end
6 |
7 | function points(granule::GEDI_Granule{:GEDI02_A}; tracks=gedi_tracks, step=1, ground=true, canopy=false, quality=1)
8 | dfs = Vector{NamedTuple}()
9 | HDF5.h5open(granule.url, "r") do file
10 |
11 | for (i, track) ∈ enumerate(tracks)
12 | power = i > 4 ? "strong" : "weak"
13 | if in(track, keys(file))
14 | for track_df ∈ points(granule, file, track, power, step, ground, canopy, quality)
15 | push!(dfs, track_df)
16 | end
17 | end
18 | end
19 | end
20 | dfs
21 | end
22 |
23 |
24 | function points(g::GEDI_Granule{:GEDI02_A}, file, track, power, step, ground, canopy, quality::Union{Nothing,Integer}=1, degraded=false)
25 | zu = file["$track/elevation_bin0_error"][1:step:end]::Vector{Float32}
26 | dem = file["$track/digital_elevation_model"][1:step:end]::Vector{Float32}
27 | intensity = file["$track/energy_total"][1:step:end]::Vector{Float32}
28 | aid = file["$track/selected_algorithm"][1:step:end]::Vector{UInt8}
29 |
30 | if canopy
31 | xt = file["$track/lon_highestreturn"][1:step:end]::Vector{Float64}
32 | yt = file["$track/lat_highestreturn"][1:step:end]::Vector{Float64}
33 | zt = file["$track/elev_highestreturn"][1:step:end]::Vector{Float32}
34 | zt[(zt .< -1000.0) .& (zt .> 25000.0)] .= NaN
35 | end
36 | if ground
37 | xb = file["$track/lon_lowestmode"][1:step:end]::Vector{Float64}
38 | yb = file["$track/lat_lowestmode"][1:step:end]::Vector{Float64}
39 | zb = file["$track/elev_lowestmode"][1:step:end]::Vector{Float32}
40 | # zzb = similar(aid, Float32)
41 | # for algorithm in 1:6
42 | # zzb[aid .== algorithm] = file["$track/geolocation/elev_lowestreturn_a$algorithm"][1:step:end][aid .== algorithm]
43 | # end
44 | zb[(zb .< -1000.0) .& (zb .> 25000.0)] .= NaN
45 | # zzb[(zb .< -1000.0) .& (zb .> 25000.0)] .= NaN
46 | end
47 | t = file["$track/delta_time"][1:step:end]::Vector{Float64}
48 |
49 | # Quality
50 | q = file["$track/quality_flag"][1:step:end]::Vector{UInt8}
51 | aq = file["$track/rx_assess/quality_flag"][1:step:end]::Vector{UInt8}
52 | d = file["$track/degrade_flag"][1:step:end]::Vector{UInt8}
53 | stale = file["$track/geolocation/stale_return_flag"][1:step:end]::Vector{UInt8}
54 | s = file["$track/surface_flag"][1:step:end]::Vector{UInt8}
55 |
56 | minel, maxel = zeros(size(s)), zeros(size(s))
57 | for algorithm in 1:6
58 | z = file["$track/geolocation/elev_lowestmode_a$algorithm"][1:step:end]::Vector{Float32}
59 | minel .= min.(minel, z)
60 | maxel .= max.(maxel, z)
61 | end
62 | zarange = maxel .- minel
63 |
64 | a = file["$track/rx_assess/rx_maxamp"][1:step:end]::Vector{Float32}
65 | sd = file["$track/rx_assess/sd_corrected"][1:step:end]::Vector{Float32}
66 | f = a ./ sd
67 |
68 | # # Algorithm
69 | zcross = similar(aid, Float32)
70 | toploc = similar(aid, Float32)
71 | for algorithm in 1:6
72 | zcross[aid .== algorithm] = file["$track/rx_processing_a$algorithm/zcross"][1:step:end][aid .== algorithm]
73 | toploc[aid .== algorithm] = file["$track/rx_processing_a$algorithm/toploc"][1:step:end][aid .== algorithm]
74 | end
75 |
76 | zs = file["$track/sensitivity"][1:step:end]::Vector{Float32}
77 | sun_angle = file["$track/solar_elevation"][1:step:end]::Vector{Float32}
78 | if isnothing(quality)
79 | m = trues(length(q))
80 | else
81 | m = q .== quality
82 | end
83 |
84 | # Ignore degraded
85 | m .&= d .== 0
86 | m .&= aq .!= 0
87 | m .&= stale .== 0
88 | m .&= f .>= 4
89 | m .&= zcross .> 0
90 | m .&= toploc .> 0
91 | m .&= zarange .<= 2
92 | # # Ignore values outside of 300m of reference surface
93 | m .&= s .!= 0
94 |
95 | times = unix2datetime.(t .+ t_offset)
96 |
97 | if canopy
98 | nt_canopy = (
99 | x = xt[m],
100 | y = yt[m],
101 | z = zt[m],
102 | # zl = zt[m],
103 | u = zu[m],
104 | intensity = intensity[m],
105 | sensitivity = zs[m],
106 | t = times[m],
107 | surface = Bool.(s[m]),
108 | quality = Bool.(q[m]),
109 | track = Fill(track, length(q))[m],
110 | power = Fill(power, length(q))[m],
111 | classification = Fill("high_canopy", length(q))[m],
112 | sun_angle = sun_angle[m],
113 | return_number = Fill(1, length(sun_angle))[m],
114 | number_of_returns = Fill(2, length(sun_angle))[m],
115 | reference = dem[m],
116 | # range = zarange[m]
117 | )
118 | end
119 | if ground
120 | nt_ground = (
121 | x = xb[m],
122 | y = yb[m],
123 | z = zb[m],
124 | # zl = zzb[m],
125 | u = zu[m],
126 | intensity = intensity[m],
127 | sensitivity = zs[m],
128 | t = times[m],
129 | surface = Bool.(s[m]),
130 | quality = Bool.(q[m]),
131 | track = Fill(track, length(q))[m],
132 | power = Fill(power, length(q))[m],
133 | classification = Fill("ground", length(q))[m],
134 | sun_angle = sun_angle[m],
135 | return_number = Fill(2, length(sun_angle))[m],
136 | number_of_returns = Fill(2, length(sun_angle))[m],
137 | reference = dem[m],
138 | # range = zarange[m]
139 | )
140 | end
141 | if canopy && ground
142 | nt_canopy, nt_ground
143 | elseif canopy
144 | (nt_canopy,)
145 | elseif ground
146 | (nt_ground,)
147 | else
148 | ()
149 | end
150 | end
151 |
152 |
153 | function lines(granule::GEDI_Granule{:GEDI02_A}; tracks=gedi_tracks, step=1, ground=true, canopy=false, quality=nothing)
154 | dfs = Vector{NamedTuple}()
155 | HDF5.h5open(granule.url, "r") do file
156 | for (i, track) ∈ enumerate(tracks)
157 | power = i > 4 ? "strong" : "weak"
158 | if in(track, keys(file))
159 | for track_df ∈ points(granule, file, track, power, step, ground, canopy, quality)
160 | line = makeline(track_df.x, track_df.y, track_df.z)
161 | nt = (geom = line, track = track, power = power, granule = granule.id)
162 | push!(dfs, nt)
163 | end
164 | end
165 | end
166 | end
167 | dfs
168 | end
169 |
--------------------------------------------------------------------------------
/scripts/outliers.jl:
--------------------------------------------------------------------------------
1 | """Try to detect outliers in ICESat-2 & GEDI granules
2 | by cross comparing them."""
3 |
4 | using SpaceLiDAR
5 | using Glob
6 | using GeoDataFrames; const GDF = GeoDataFrames
7 | using TypedTables
8 | using ArchGDAL; const AG = ArchGDAL
9 | using Dates
10 | using ProgressMeter
11 | using Combinatorics
12 | using GeoArrays
13 | using Statistics
14 | using CSV
15 |
16 | limit = 100
17 | # const seasia = (min_x = 92., min_y = -10.0, max_x = 142.0, max_y = 21.0)
18 | const seasia = (min_x = 102., min_y = 8.0, max_x = 107.0, max_y = 12.0) # vietnam
19 |
20 | # Based on SE Asia
21 | bad = [
22 | "ATL08_20190308110827_10690208_003_01.h5",
23 | "ATL08_20200514143433_07490708_003_01.h5",
24 | "ATL08_20181206155406_10540108_003_01.h5",
25 | "ATL08_20181129035056_09390114_003_01.h5",
26 | "ATL08_20200705141328_01560807_003_01.h5", # segment 7?
27 | "ATL08_20200705142030_01560808_003_01.h5", # segment 8?
28 | "ATL08_20200618151228_12840707_003_01.h5", # segment 7?
29 | "ATL08_20200618151930_12840708_003_01.h5", # segment 8?
30 | "ATL08_20200806130651_06440807_003_01.h5", # segment 7?
31 | "ATL08_20200806131353_06440808_003_01.h5", # segment 8?
32 | "ATL08_20191219120550_12760514_003_01.h5", # segment 14?
33 | "ATL08_20191219103835_12760501_003_01.h5", # segment 1?
34 | "ATL08_20191129010015_09640507_003_01.h5", # segment 7?
35 | "ATL08_20191129010717_09640508_003_01.h5", # segment 8?
36 | "ATL08_20191102115253_05590501_003_01.h5", # segment 1?
37 | "ATL08_20191102132008_05590514_003_01.h5", # segment 14?
38 | "ATL08_20200313054344_11840601_003_01.h5", # segment 1
39 | "ATL08_20200313071058_11840614_003_01.h5", # segment 14
40 | "ATL08_20191102013254_05520507_003_01.h5",
41 | "ATL08_20191102013956_05520508_003_01.h5",
42 | "ATL08_20200417062841_03320701_003_01.h5",
43 | ]
44 |
45 | # These are large, worldwide granules, so limit or search for them
46 | gedi_path = "/mnt/ec66e171-5639-4c62-9d2c-08e81c462669/gedi/L2A/v1"
47 | # gedi_granules = granules_from_folder(gedi_path)[1:limit]
48 |
49 | # If you've downloaded everything locally:
50 | gedi_granules = find(:GEDI, "GEDI02_A", seasia)
51 | gedi_granules = SpaceLiDAR.instantiate(gedi_granules, gedi_path)
52 |
53 | # These are smaller, already cut out granules
54 | icesat_path = "/mnt/ec66e171-5639-4c62-9d2c-08e81c462669/icesat2/ATL08/v03"
55 | # icesat_granules = granules_from_folder(icesat_path)[1:limit * 50]
56 | # If you've downloaded everything locally:
57 | icesat_granules = find(:ICESat2, "ATL08", seasia)
58 | icesat_granules = SpaceLiDAR.instantiate(icesat_granules, icesat_path)
59 | filter!(!SpaceLiDAR.is_blacklisted, icesat_granules)
60 | filter!(!g -> g.id in bad, icesat_granules)
61 |
62 | granules = vcat(icesat_granules, gedi_granules)
63 | granules_v = in_bbox(granules, seasia) # bbox filtering based on header information, works only for ICESat-2
64 |
65 |
66 | # Retrieve linestrings from granules, note the decimation by step=10
67 | alllines = Vector{Table}()
68 | @showprogress 1 "Reading..." for granule in granules_v
69 | if SpaceLiDAR.test(granule)
70 | try
71 | lines = Table(SpaceLiDAR.lines(granule, step=1, quality=1))
72 | push!(alllines, lines)
73 | catch e
74 | if e isa InterruptException
75 | break
76 | else
77 | @warn "$(granule.id) failed with $e"
78 | end
79 | end
80 | end
81 | end
82 |
83 | t = vcat(alllines...)
84 | SpaceLiDAR.clip!(t, seasia)
85 | t = SpaceLiDAR.splitline(t, 0.1)
86 | tt = t[AG.ngeom.(t.geom) .> 0] # skip empty linestrings
87 | GDF.write("alllines.gpkg", tt)
88 |
89 |
90 | intersections = Vector{NamedTuple}()
91 | @showprogress 1 "Intersections..." for (a, b) in combinations(t, 2)
92 | if a.granule == b.granule
93 | continue
94 | else
95 | if (AG.ngeom(a.geom) > 1) && (AG.ngeom(b.geom) > 1) && AG.intersects(a.geom, b.geom)
96 | points = AG.intersection(a.geom, b.geom)
97 | else
98 | continue
99 | end
100 | type = AG.getgeomtype(points)
101 | if type == AG.GDAL.wkbMultiPoint25D
102 | for i ∈ 1:AG.ngeom(points)
103 | # An intersection points of 2 2.5D lines gets a Z halfway between the lines
104 | p = AG.getgeom(points, i - 1) # starts with 0
105 | z = SpaceLiDAR.z_along_line(a.geom, p)
106 | z = (z - AG.getz(p, 0)) * 2
107 | push!(intersections, (a = a.granule, b = b.granule, diff = z, geom = p))
108 | end
109 | elseif type == AG.GDAL.wkbPoint25D
110 | p = points
111 | z = SpaceLiDAR.z_along_line(a.geom, p)
112 | z = (z - AG.getz(p, 0)) * 2
113 | push!(intersections, (a = a.granule, b = b.granule, diff = z, geom = p))
114 | elseif type == AG.GDAL.wkbLineString25D
115 | continue # no intersection
116 | end
117 | end
118 | end
119 |
120 | df = Table(intersections)
121 | GDF.write("intersections.gpkg", df)
122 |
123 |
124 |
125 | # Find the granules that should be blacklisted
126 |
127 | # n_outlier = 25
128 | mean_threshold = 10 # Only for lowland, we can expect 10m errors in sloped terrain!
129 |
130 | # If you already have an intersections gpkg
131 | # fn = "intersections.gpkg"
132 | # df = TypedTables.Table(GDF.read(fn))
133 |
134 | # Generate mask with land polygons (I've used Natural Earth)
135 | # gdal_rasterize -l ne_10m_land -burn 1.0 -tr 0.005 0.005 -init 0.0 -te -180.0 -90.0 180.0 90.0 -ot Byte -at -of GTiff -co COMPRESS=DEFLATE -co TILED=yes ne_10m_land.shp
136 | mask_fn = "world_mask.tif"
137 | mask = GeoArrays.read(mask_fn)
138 |
139 | function Base.in(point::ArchGDAL.IGeometry, mask::GeoArray)
140 | x = ArchGDAL.getx(point, 0)
141 | y = ArchGDAL.gety(point, 0)
142 | try
143 | Bool(mask[x,y][1])
144 | catch BoundsError
145 | false
146 | end
147 | end
148 | df = df[in.(df.geom, Ref(mask))]
149 |
150 | function unify(t)
151 | ids = unique(vcat(t.a, t.b))
152 | list = Dict{String,Vector{Float64}}()
153 | for row in df
154 | haskey(list, row.a) || (list[row.a] = Vector{Float64}())
155 | haskey(list, row.b) || (list[row.b] = Vector{Float64}())
156 | push!(list[row.a], row.diff)
157 | push!(list[row.b], -row.diff)
158 | end
159 | r = collect(values(list))
160 | t = GDF.DataFrame(granule=collect(keys(list)), diff=sum.(r), med=Statistics.median.(r), mean=Statistics.mean.(r), count=length.(r))
161 | end
162 | # Dump to csv for manual checks
163 | CSV.write("outlier_granules.csv", unify(df))
164 |
165 | outliers = Vector{String}()
166 | xm = 9999
167 | while xm >= mean_threshold
168 | t = unify(df)
169 | t.mean .= abs.(t.mean)
170 | sort!(t, :mean, rev=true)
171 | xm = t.mean[1]
172 | x = t.granule[1]
173 | push!(outliers, x)
174 | mask = (df.a .!= x) .& (df.b .!= x)
175 | df = df[mask]
176 | end
177 | @info "We think these outliers are bad:"
178 | @info outliers
179 |
--------------------------------------------------------------------------------
/docs/src/International_Space_Station.svg:
--------------------------------------------------------------------------------
1 |
2 |
76 |
--------------------------------------------------------------------------------
/docs/src/julia-dots.svg:
--------------------------------------------------------------------------------
1 |
2 |
95 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/src/ICESat-2/blacklist.txt:
--------------------------------------------------------------------------------
1 | ATL03_20190914031358_11920403_003_01.h5
2 | ATL03_20190914031923_11920404_003_01.h5
3 | ATL03_20190914032432_11920405_003_01.h5
4 | ATL03_20190914032957_11920406_003_01.h5
5 | ATL03_20190914033827_11920407_003_01.h5
6 | ATL03_20190914034529_11920408_003_01.h5
7 | ATL03_20190914035231_11920409_003_01.h5
8 | ATL03_20190914035833_11920410_003_01.h5
9 | ATL03_20190914040614_11920411_003_01.h5
10 | ATL03_20190914041157_11920412_003_01.h5
11 | ATL03_20190914041938_11920413_003_01.h5
12 | ATL03_20190914042540_11920414_003_01.h5
13 | ATL03_20191005003226_01240503_003_01.h5
14 | ATL03_20191005003751_01240504_003_01.h5
15 | ATL03_20191005004300_01240505_003_01.h5
16 | ATL03_20191005004825_01240506_003_01.h5
17 | ATL03_20191005005655_01240507_003_01.h5
18 | ATL03_20191005010357_01240508_003_01.h5
19 | ATL03_20191005011100_01240509_003_01.h5
20 | ATL03_20191005011702_01240510_003_01.h5
21 | ATL03_20191005012443_01240511_003_01.h5
22 | ATL03_20191005013026_01240512_003_01.h5
23 | ATL03_20191012232605_02450510_003_01.h5
24 | ATL03_20191012233346_02450511_003_01.h5
25 | ATL03_20191012233929_02450512_003_01.h5
26 | ATL03_20191012234710_02450513_003_01.h5
27 | ATL03_20191012235312_02450514_003_01.h5
28 | ATL03_20191013000014_02460501_003_01.h5
29 | ATL03_20191013000716_02460502_003_01.h5
30 | ATL03_20191013001546_02460503_003_01.h5
31 | ATL03_20191013002111_02460504_003_01.h5
32 | ATL03_20191013002620_02460505_003_01.h5
33 | ATL03_20191013003145_02460506_003_01.h5
34 | ATL03_20191013004015_02460507_003_01.h5
35 | ATL03_20191013004717_02460508_003_01.h5
36 | ATL03_20191013005420_02460509_003_01.h5
37 | ATL03_20191013010022_02460510_003_01.h5
38 | ATL03_20191013010803_02460511_003_01.h5
39 | ATL03_20191013011346_02460512_003_01.h5
40 | ATL03_20191013012127_02460513_003_01.h5
41 | ATL03_20191013012729_02460514_003_01.h5
42 | ATL03_20191013013431_02470501_003_01.h5
43 | ATL03_20191013014133_02470502_003_01.h5
44 | ATL03_20191013015003_02470503_003_01.h5
45 | ATL03_20191013015528_02470504_003_01.h5
46 | ATL03_20191013020038_02470505_003_01.h5
47 | ATL03_20191013020603_02470506_003_01.h5
48 | ATL03_20191013021433_02470507_003_01.h5
49 | ATL03_20191013022135_02470508_003_01.h5
50 | ATL03_20191013022837_02470509_003_01.h5
51 | ATL03_20191013023439_02470510_003_01.h5
52 | ATL03_20191013024220_02470511_003_01.h5
53 | ATL03_20191013024803_02470512_003_01.h5
54 | ATL03_20191013025544_02470513_003_01.h5
55 | ATL03_20191013030146_02470514_003_01.h5
56 | ATL03_20191013030848_02480501_003_01.h5
57 | ATL03_20191013031550_02480502_003_01.h5
58 | ATL03_20191013032421_02480503_003_01.h5
59 | ATL03_20191013032946_02480504_003_01.h5
60 | ATL03_20191013033455_02480505_003_01.h5
61 | ATL03_20191013034020_02480506_003_01.h5
62 | ATL03_20191013034850_02480507_003_01.h5
63 | ATL03_20191013035552_02480508_003_01.h5
64 | ATL03_20191013040255_02480509_003_01.h5
65 | ATL03_20191013040857_02480510_003_01.h5
66 | ATL03_20191013041637_02480511_003_01.h5
67 | ATL03_20191013042221_02480512_003_01.h5
68 | ATL03_20191013043002_02480513_003_01.h5
69 | ATL03_20191018165028_03330502_003_01.h5
70 | ATL03_20191018165858_03330503_003_01.h5
71 | ATL03_20191018170423_03330504_003_01.h5
72 | ATL03_20191018170932_03330505_003_01.h5
73 | ATL03_20191018171457_03330506_003_01.h5
74 | ATL03_20191018172328_03330507_003_01.h5
75 | ATL03_20191018173030_03330508_003_01.h5
76 | ATL03_20191018173732_03330509_003_01.h5
77 | ATL03_20191018174334_03330510_003_01.h5
78 | ATL03_20191018175115_03330511_003_01.h5
79 | ATL03_20191018175658_03330512_003_01.h5
80 | ATL03_20191018180439_03330513_003_01.h5
81 | ATL03_20191018181041_03330514_003_01.h5
82 | ATL03_20191018181743_03340501_003_01.h5
83 | ATL03_20191213120943_11850506_003_01.h5
84 | ATL03_20191213121814_11850507_003_01.h5
85 | ATL03_20191213122516_11850508_003_01.h5
86 | ATL03_20191213123218_11850509_003_01.h5
87 | ATL03_20200209093017_06820607_003_01.h5
88 | ATL03_20200209093719_06820608_003_01.h5
89 | ATL03_20200209094421_06820609_003_01.h5
90 | ATL03_20200209095023_06820610_003_01.h5
91 | ATL03_20200209095804_06820611_003_01.h5
92 | ATL03_20200209100347_06820612_003_01.h5
93 | ATL03_20200209101128_06820613_003_01.h5
94 | ATL03_20200209101730_06820614_003_01.h5
95 | ATL03_20200209102432_06830601_003_01.h5
96 | ATL03_20200209103134_06830602_003_01.h5
97 | ATL03_20200209104005_06830603_003_01.h5
98 | ATL03_20200209104530_06830604_003_01.h5
99 | ATL03_20200209105039_06830605_003_01.h5
100 | ATL03_20200209105604_06830606_003_01.h5
101 | ATL03_20200209110434_06830607_003_01.h5
102 | ATL03_20200209111136_06830608_003_01.h5
103 | ATL03_20200209111839_06830609_003_01.h5
104 | ATL03_20200209112441_06830610_003_01.h5
105 | ATL03_20200209113221_06830611_003_01.h5
106 | ATL03_20200209113805_06830612_003_01.h5
107 | ATL03_20200209114545_06830613_003_01.h5
108 | ATL03_20200209115147_06830614_003_01.h5
109 | ATL03_20200209115850_06840601_003_01.h5
110 | ATL03_20200209120552_06840602_003_01.h5
111 | ATL03_20200209121422_06840603_003_01.h5
112 | ATL03_20200209121947_06840604_003_01.h5
113 | ATL03_20200209122456_06840605_003_01.h5
114 | ATL03_20200209123021_06840606_003_01.h5
115 | ATL03_20200209123852_06840607_003_01.h5
116 | ATL03_20200209124554_06840608_003_01.h5
117 | ATL03_20200209125256_06840609_003_01.h5
118 | ATL03_20200209125858_06840610_003_01.h5
119 | ATL03_20200209130639_06840611_003_01.h5
120 | ATL03_20200209131222_06840612_003_01.h5
121 | ATL03_20200209132003_06840613_003_01.h5
122 | ATL03_20200209132605_06840614_003_01.h5
123 | ATL03_20200209133307_06850601_003_01.h5
124 | ATL03_20200209134009_06850602_003_01.h5
125 | ATL03_20200209134839_06850603_003_01.h5
126 | ATL03_20200209135405_06850604_003_01.h5
127 | ATL03_20200209135914_06850605_003_01.h5
128 | ATL03_20200209140439_06850606_003_01.h5
129 | ATL03_20200209141309_06850607_003_01.h5
130 | ATL03_20200209142011_06850608_003_01.h5
131 | ATL03_20200209142714_06850609_003_01.h5
132 | ATL03_20200209143315_06850610_003_01.h5
133 | ATL03_20200209144056_06850611_003_01.h5
134 | ATL03_20200209144639_06850612_003_01.h5
135 | ATL03_20200209145420_06850613_003_01.h5
136 | ATL03_20200209150022_06850614_003_01.h5
137 | ATL03_20200209150725_06860601_003_01.h5
138 | ATL03_20200209151427_06860602_003_01.h5
139 | ATL03_20200209152257_06860603_003_01.h5
140 | ATL03_20200209152822_06860604_003_01.h5
141 | ATL03_20200209153331_06860605_003_01.h5
142 | ATL03_20200209153856_06860606_003_01.h5
143 | ATL03_20200209154726_06860607_003_01.h5
144 | ATL03_20200209155428_06860608_003_01.h5
145 | ATL03_20200209160131_06860609_003_01.h5
146 | ATL03_20200209160733_06860610_003_01.h5
147 | ATL03_20200209161514_06860611_003_01.h5
148 | ATL03_20200209162057_06860612_003_01.h5
149 | ATL03_20200209162838_06860613_003_01.h5
150 | ATL03_20200209163440_06860614_003_01.h5
151 | ATL03_20200209164142_06870601_003_01.h5
152 | ATL03_20200209164844_06870602_003_01.h5
153 | ATL03_20200209165714_06870603_003_01.h5
154 | ATL03_20200209170239_06870604_003_01.h5
155 | ATL03_20200209170748_06870605_003_01.h5
156 | ATL03_20200209171313_06870606_003_01.h5
157 | ATL03_20200209172144_06870607_003_01.h5
158 | ATL03_20200209172846_06870608_003_01.h5
159 | ATL03_20200209173548_06870609_003_01.h5
160 | ATL03_20200209174150_06870610_003_01.h5
161 | ATL03_20200209174931_06870611_003_01.h5
162 | ATL03_20200209175514_06870612_003_01.h5
163 | ATL03_20200209180255_06870613_003_01.h5
164 | ATL03_20200209180857_06870614_003_01.h5
165 | ATL03_20200209181559_06880601_003_01.h5
166 | ATL03_20200209182301_06880602_003_01.h5
167 | ATL03_20200209183132_06880603_003_01.h5
168 | ATL03_20200209183657_06880604_003_01.h5
169 | ATL03_20200209184206_06880605_003_01.h5
170 | ATL03_20200209184731_06880606_003_01.h5
171 | ATL03_20200209185601_06880607_003_01.h5
172 | ATL03_20200209190303_06880608_003_01.h5
173 | ATL03_20200209191005_06880609_003_01.h5
174 | ATL03_20200209191607_06880610_003_01.h5
175 | ATL03_20200209192348_06880611_003_01.h5
176 | ATL03_20200209192931_06880612_003_01.h5
177 | ATL03_20200209193712_06880613_003_01.h5
178 | ATL03_20200209194314_06880614_003_01.h5
179 | ATL03_20200209195017_06890601_003_01.h5
180 | ATL03_20200209195719_06890602_003_01.h5
181 | ATL03_20200209200549_06890603_003_01.h5
182 | ATL03_20200209201114_06890604_003_01.h5
183 | ATL03_20200209201623_06890605_003_01.h5
184 | ATL03_20200209202148_06890606_003_01.h5
185 | ATL03_20200209203018_06890607_003_01.h5
186 | ATL03_20200209203720_06890608_003_01.h5
187 | ATL03_20200209204423_06890609_003_01.h5
188 | ATL03_20200209205025_06890610_003_01.h5
189 | ATL03_20200209205806_06890611_003_01.h5
190 | ATL03_20200209210349_06890612_003_01.h5
191 | ATL03_20200209211130_06890613_003_01.h5
192 | ATL03_20200209211731_06890614_003_01.h5
193 | ATL03_20200209212434_06900601_003_01.h5
194 | ATL03_20200209213136_06900602_003_01.h5
195 | ATL03_20200209214006_06900603_003_01.h5
196 | ATL03_20200209214531_06900604_003_01.h5
197 | ATL03_20200209215040_06900605_003_01.h5
198 | ATL03_20200209215606_06900606_003_01.h5
199 | ATL03_20200319071229_12760609_003_01.h5
200 | ATL03_20200319071831_12760610_003_01.h5
201 | ATL03_20200319072612_12760611_003_01.h5
202 | ATL03_20200319073155_12760612_003_01.h5
203 | ATL03_20200319073936_12760613_003_01.h5
204 | ATL03_20200319074538_12760614_003_01.h5
205 | ATL03_20200319075240_12770601_003_01.h5
206 | ATL03_20200319075942_12770602_003_01.h5
207 | ATL03_20200319080813_12770603_003_01.h5
208 | ATL03_20200319081338_12770604_003_01.h5
209 | ATL03_20200319081847_12770605_003_01.h5
210 | ATL03_20200319082412_12770606_003_01.h5
211 | ATL03_20200319083242_12770607_003_01.h5
212 | ATL03_20200319083944_12770608_003_01.h5
213 | ATL03_20200319084647_12770609_003_01.h5
214 | ATL03_20200319085249_12770610_003_01.h5
215 | ATL03_20200319090029_12770611_003_01.h5
216 | ATL03_20200319090613_12770612_003_01.h5
217 | ATL03_20200319091353_12770613_003_01.h5
218 | ATL03_20200319091955_12770614_003_01.h5
219 | ATL03_20200319092658_12780601_003_01.h5
220 | ATL03_20200319093400_12780602_003_01.h5
221 | ATL03_20200319094230_12780603_003_01.h5
222 | ATL03_20200319094755_12780604_003_01.h5
223 | ATL03_20200319095304_12780605_003_01.h5
224 | ATL03_20200319095829_12780606_003_01.h5
225 | ATL03_20200326200144_00040710_003_01.h5
226 | ATL03_20200326200925_00040711_003_01.h5
227 | ATL03_20200326201508_00040712_003_01.h5
228 | ATL03_20200326202249_00040713_003_01.h5
229 | ATL03_20200326202851_00040714_003_01.h5
230 | ATL03_20200326203554_00050701_003_01.h5
231 | ATL03_20200326204256_00050702_003_01.h5
232 | ATL03_20200326205126_00050703_003_01.h5
233 | ATL03_20200326205651_00050704_003_01.h5
234 | ATL03_20200326210200_00050705_003_01.h5
235 | ATL03_20200326210725_00050706_003_01.h5
236 | ATL03_20200326211555_00050707_003_01.h5
237 | ATL03_20200326212257_00050708_003_01.h5
238 | ATL03_20200326213000_00050709_003_01.h5
239 | ATL03_20200326213602_00050710_003_01.h5
240 | ATL03_20200326214343_00050711_003_01.h5
241 | ATL03_20200326214926_00050712_003_01.h5
242 | ATL03_20200326215707_00050713_003_01.h5
243 | ATL03_20200326220309_00050714_003_01.h5
244 | ATL03_20200326221011_00060701_003_01.h5
245 | ATL03_20200326221713_00060702_003_01.h5
246 | ATL03_20200326222543_00060703_003_01.h5
247 | ATL03_20200326223108_00060704_003_01.h5
248 | ATL03_20200326223618_00060705_003_01.h5
249 | ATL03_20200326224143_00060706_003_01.h5
250 | ATL03_20200429104634_05180701_003_01.h5
251 | ATL03_20200429105335_05180702_003_01.h5
252 | ATL03_20200429110206_05180703_003_01.h5
253 | ATL03_20200429110731_05180704_003_01.h5
254 | ATL03_20200429111240_05180705_003_01.h5
255 | ATL03_20200429111805_05180706_003_01.h5
256 | ATL03_20200429112635_05180707_003_01.h5
257 | ATL03_20200429113337_05180708_003_01.h5
258 | ATL03_20200429114040_05180709_003_01.h5
259 | ATL03_20200429114642_05180710_003_01.h5
260 | ATL03_20200429115422_05180711_003_01.h5
261 | ATL03_20200429120006_05180712_003_01.h5
262 | ATL03_20200508182714_06600706_003_01.h5
263 | ATL03_20200508183545_06600707_003_01.h5
264 | ATL03_20200628221604_00540810_003_01.h5
265 | ATL03_20200628222345_00540811_003_01.h5
266 | ATL03_20200628222928_00540812_003_01.h5
267 | ATL03_20200715192243_03120807_003_02.h5
268 | ATL03_20200715192945_03120808_003_02.h5
269 | ATL03_20200715193647_03120809_003_02.h5
270 | ATL03_20200715194249_03120810_003_02.h5
271 | ATL03_20200715195030_03120811_003_02.h5
272 | ATL03_20200715195613_03120812_003_02.h5
273 | ATL03_20200715200354_03120813_003_02.h5
274 | ATL03_20200715200956_03120814_003_02.h5
275 | ATL03_20200715201659_03130801_003_02.h5
276 | ATL03_20200715202400_03130802_003_02.h5
277 | ATL03_20200715203231_03130803_003_02.h5
278 | ATL03_20200715203756_03130804_003_02.h5
279 | ATL03_20200715204305_03130805_003_02.h5
280 | ATL03_20200715204830_03130806_003_02.h5
281 | ATL03_20200715205700_03130807_003_02.h5
282 | ATL03_20200715210402_03130808_003_02.h5
283 | ATL03_20200715211105_03130809_003_02.h5
284 | ATL03_20200715211707_03130810_003_02.h5
285 | ATL03_20200715212447_03130811_003_02.h5
286 | ATL03_20200715213031_03130812_003_02.h5
287 | ATL03_20191213123820_11850510_003_01.h5
288 | ATL03_20191213124601_11850511_003_01.h5
289 | ATL03_20191213125144_11850512_003_01.h5
290 | ATL03_20200405202806_01570710_003_01.h5
291 | ATL03_20200405203547_01570711_003_01.h5
292 | ATL03_20200405204130_01570712_003_01.h5
293 | ATL03_20200405204911_01570713_003_01.h5
294 | ATL03_20200405205513_01570714_003_01.h5
295 | ATL03_20200405210215_01580701_003_01.h5
296 | ATL03_20200405210917_01580702_003_01.h5
297 | ATL03_20200405211748_01580703_003_01.h5
298 | ATL03_20200405212313_01580704_003_01.h5
299 | ATL03_20200405212822_01580705_003_01.h5
300 | ATL03_20200405213347_01580706_003_01.h5
301 | ATL03_20200405214217_01580707_003_01.h5
302 | ATL03_20200405214919_01580708_003_01.h5
303 | ATL03_20200405215622_01580709_003_01.h5
304 | ATL03_20200405220224_01580710_003_01.h5
305 | ATL03_20200405221004_01580711_003_01.h5
306 | ATL03_20200405221548_01580712_003_01.h5
307 | ATL03_20200405222328_01580713_003_01.h5
308 | ATL03_20200405222930_01580714_003_01.h5
309 | ATL03_20200405223633_01590701_003_01.h5
310 | ATL03_20200405224335_01590702_003_01.h5
311 | ATL03_20200405225205_01590703_003_01.h5
312 | ATL03_20200405225730_01590704_003_01.h5
313 | ATL03_20200405230239_01590705_003_01.h5
314 | ATL03_20200405230804_01590706_003_01.h5
315 | ATL03_20200411174809_02470709_003_01.h5
316 | ATL03_20200411175411_02470710_003_01.h5
317 | ATL03_20200411180152_02470711_003_01.h5
318 | ATL03_20200411180735_02470712_003_01.h5
319 | ATL03_20200411181516_02470713_003_01.h5
320 | ATL03_20200411182118_02470714_003_01.h5
321 | ATL03_20200411182820_02480701_003_01.h5
322 | ATL03_20200411183522_02480702_003_01.h5
323 | ATL03_20200411184353_02480703_003_01.h5
324 | ATL03_20200411184918_02480704_003_01.h5
325 | ATL03_20200411185427_02480705_003_01.h5
326 | ATL03_20200411185952_02480706_003_01.h5
327 | ATL03_20200411190822_02480707_003_01.h5
328 | ATL03_20200411191524_02480708_003_01.h5
329 | ATL03_20200411192227_02480709_003_01.h5
330 | ATL03_20200411192829_02480710_003_01.h5
331 | ATL03_20200411193609_02480711_003_01.h5
332 | ATL03_20200411194153_02480712_003_01.h5
333 | ATL03_20200411194933_02480713_003_01.h5
334 | ATL03_20200411195535_02480714_003_01.h5
335 | ATL03_20200411200238_02490701_003_01.h5
336 | ATL03_20200411200940_02490702_003_01.h5
337 | ATL03_20200411201810_02490703_003_01.h5
338 | ATL03_20200411202335_02490704_003_01.h5
339 | ATL03_20200411202844_02490705_003_01.h5
340 | ATL03_20200411203409_02490706_003_01.h5
341 | ATL03_20200411204240_02490707_003_01.h5
342 | ATL03_20200411204942_02490708_003_01.h5
343 | ATL03_20200411205644_02490709_003_01.h5
344 | ATL03_20200411210246_02490710_003_01.h5
345 | ATL03_20200411211027_02490711_003_01.h5
346 | ATL03_20200411211610_02490712_003_01.h5
347 | ATL03_20200411212351_02490713_003_01.h5
348 | ATL03_20200411212953_02490714_003_01.h5
349 | ATL03_20200411213655_02500701_003_01.h5
350 | ATL03_20200411214357_02500702_003_01.h5
351 | ATL03_20200411215228_02500703_003_01.h5
352 | ATL03_20200411215753_02500704_003_01.h5
353 | ATL03_20200411220302_02500705_003_01.h5
354 | ATL03_20200411220827_02500706_003_01.h5
355 | ATL03_20200420153134_03830709_003_01.h5
356 | ATL03_20200420153736_03830710_003_01.h5
357 | ATL03_20200420154517_03830711_003_01.h5
358 | ATL03_20200420155100_03830712_003_01.h5
359 | ATL03_20200420155841_03830713_003_01.h5
360 | ATL03_20200420160443_03830714_003_01.h5
361 | ATL03_20200420161146_03840701_003_01.h5
362 | ATL03_20200420161848_03840702_003_01.h5
363 | ATL03_20200420162718_03840703_003_01.h5
364 | ATL03_20200420163243_03840704_003_01.h5
365 | ATL03_20200420163752_03840705_003_01.h5
366 | ATL03_20200420164317_03840706_003_01.h5
367 | ATL03_20200420165147_03840707_003_01.h5
368 | ATL03_20200420165849_03840708_003_01.h5
369 | ATL03_20200420170552_03840709_003_01.h5
370 | ATL03_20200420171154_03840710_003_01.h5
371 | ATL03_20200420171935_03840711_003_01.h5
372 | ATL03_20200420172518_03840712_003_01.h5
373 | ATL03_20200420173259_03840713_003_01.h5
374 | ATL03_20200420173901_03840714_003_01.h5
375 | ATL03_20200420174603_03850701_003_01.h5
376 | ATL03_20200420175305_03850702_003_01.h5
377 | ATL03_20200420180135_03850703_003_01.h5
378 | ATL03_20200420180700_03850704_003_01.h5
379 | ATL03_20200420181210_03850705_003_01.h5
380 | ATL03_20200420181735_03850706_003_01.h5
381 | ATL03_20200420182605_03850707_003_01.h5
382 | ATL03_20200420183307_03850708_003_01.h5
383 | ATL03_20200420184009_03850709_003_01.h5
384 | ATL03_20200420184611_03850710_003_01.h5
385 | ATL03_20200420185352_03850711_003_01.h5
386 | ATL03_20200420185935_03850712_003_01.h5
387 | ATL03_20200420190716_03850713_003_01.h5
388 | ATL03_20200420191318_03850714_003_01.h5
389 | ATL03_20200420192021_03860701_003_01.h5
390 | ATL03_20200420192722_03860702_003_01.h5
391 | ATL03_20200420193553_03860703_003_01.h5
392 | ATL03_20200420194118_03860704_003_01.h5
393 | ATL03_20200420194627_03860705_003_01.h5
394 | ATL03_20200420195152_03860706_003_01.h5
395 | ATL03_20200420200022_03860707_003_01.h5
396 | ATL03_20200420200724_03860708_003_01.h5
397 | ATL03_20200420201427_03860709_003_01.h5
398 | ATL03_20200420202029_03860710_003_01.h5
399 | ATL03_20200420202810_03860711_003_01.h5
400 | ATL03_20200420203353_03860712_003_01.h5
401 | ATL03_20200420204134_03860713_003_01.h5
402 | ATL03_20200420204736_03860714_003_01.h5
403 | ATL03_20200420205438_03870701_003_01.h5
404 | ATL03_20200420210140_03870702_003_01.h5
405 | ATL03_20200420211010_03870703_003_01.h5
406 | ATL03_20200420211535_03870704_003_01.h5
407 | ATL03_20200420212044_03870705_003_01.h5
408 | ATL03_20200420212609_03870706_003_01.h5
409 | ATL03_20200420213440_03870707_003_01.h5
410 | ATL03_20200420214142_03870708_003_01.h5
411 | ATL03_20200420214844_03870709_003_01.h5
412 | ATL03_20200420215446_03870710_003_01.h5
413 | ATL03_20200420220227_03870711_003_01.h5
414 | ATL03_20200420220810_03870712_003_01.h5
415 | ATL03_20200420221551_03870713_003_01.h5
416 | ATL03_20200420222153_03870714_003_01.h5
417 | ATL03_20200420222855_03880701_003_01.h5
418 | ATL03_20200420223557_03880702_003_01.h5
419 | ATL03_20200420224428_03880703_003_01.h5
420 | ATL03_20200420224953_03880704_003_01.h5
421 | ATL03_20200420225502_03880705_003_01.h5
422 | ATL03_20200420230027_03880706_003_01.h5
423 | ATL03_20200420230857_03880707_003_01.h5
424 | ATL03_20200420231559_03880708_003_01.h5
425 | ATL03_20200420232302_03880709_003_01.h5
426 | ATL03_20200424152316_04440709_003_01.h5
427 | ATL03_20200424152918_04440710_003_01.h5
428 | ATL03_20200424153659_04440711_003_01.h5
429 | ATL03_20200424154242_04440712_003_01.h5
430 | ATL03_20200511160436_07040710_003_01.h5
431 | ATL03_20200511161217_07040711_003_01.h5
432 | ATL03_20200511161800_07040712_003_01.h5
433 | ATL03_20200511162541_07040713_003_01.h5
434 | ATL03_20200511163143_07040714_003_01.h5
435 | ATL03_20200511163846_07050701_003_01.h5
436 | ATL03_20200511164548_07050702_003_01.h5
437 | ATL03_20200511165418_07050703_003_01.h5
438 | ATL03_20200511165943_07050704_003_01.h5
439 | ATL03_20200511170452_07050705_003_01.h5
440 | ATL03_20200511171017_07050706_003_01.h5
441 | ATL03_20200511171847_07050707_003_01.h5
442 | ATL03_20200511172549_07050708_003_01.h5
443 | ATL03_20200511173252_07050709_003_01.h5
444 | ATL03_20200511173854_07050710_003_01.h5
445 | ATL03_20200511174635_07050711_003_01.h5
446 | ATL03_20200511175218_07050712_003_01.h5
447 | ATL03_20200511175959_07050713_003_01.h5
448 | ATL03_20200511180601_07050714_003_01.h5
449 | ATL03_20200511181303_07060701_003_01.h5
450 | ATL03_20200511182005_07060702_003_01.h5
451 | ATL03_20200511182835_07060703_003_01.h5
452 | ATL03_20200511183400_07060704_003_01.h5
453 | ATL03_20200511183910_07060705_003_01.h5
454 | ATL03_20200511184435_07060706_003_01.h5
455 | ATL03_20200511185305_07060707_003_01.h5
456 | ATL03_20200511190007_07060708_003_01.h5
457 | ATL03_20200511190709_07060709_003_01.h5
458 | ATL03_20200511191311_07060710_003_01.h5
459 | ATL03_20200511192052_07060711_003_01.h5
460 | ATL03_20200511192635_07060712_003_01.h5
461 | ATL03_20200609172034_11480706_003_01.h5
462 | ATL03_20200609172905_11480707_003_01.h5
463 | ATL03_20200609173607_11480708_003_01.h5
464 | ATL03_20200609174309_11480709_003_01.h5
465 | ATL03_20200609174911_11480710_003_01.h5
466 | ATL03_20200609175652_11480711_003_01.h5
467 | ATL03_20200609180235_11480712_003_01.h5
468 | ATL03_20200609181016_11480713_003_01.h5
469 | ATL03_20200609181618_11480714_003_01.h5
470 | ATL03_20200609182320_11490701_003_01.h5
471 | ATL03_20200609183022_11490702_003_01.h5
472 | ATL03_20200609183852_11490703_003_01.h5
473 | ATL03_20200609184418_11490704_003_01.h5
474 | ATL03_20200609184927_11490705_003_01.h5
475 | ATL03_20200609185452_11490706_003_01.h5
476 | ATL03_20200609190322_11490707_003_01.h5
477 | ATL03_20200609191024_11490708_003_01.h5
478 | ATL03_20200609191726_11490709_003_01.h5
479 | ATL03_20200609192328_11490710_003_01.h5
480 | ATL03_20200609193109_11490711_003_01.h5
481 | ATL03_20200609193652_11490712_003_01.h5
482 | ATL03_20200609194433_11490713_003_01.h5
483 | ATL03_20200609195035_11490714_003_01.h5
484 | ATL03_20200609195738_11500701_003_01.h5
485 | ATL03_20200609200440_11500702_003_01.h5
486 | ATL03_20200609201310_11500703_003_01.h5
487 | ATL03_20200609201835_11500704_003_01.h5
488 | ATL03_20200609202344_11500705_003_01.h5
489 | ATL03_20200609202909_11500706_003_01.h5
490 | ATL03_20200609203739_11500707_003_01.h5
491 | ATL03_20200609204441_11500708_003_01.h5
492 | ATL03_20200609205144_11500709_003_01.h5
493 | ATL03_20200609205746_11500710_003_01.h5
494 | ATL03_20200609210527_11500711_003_01.h5
495 | ATL03_20200609211110_11500712_003_01.h5
496 | ATL03_20200609211851_11500713_003_01.h5
497 | ATL03_20200609212453_11500714_003_01.h5
498 | ATL03_20200609213155_11510701_003_01.h5
499 | ATL03_20200609213857_11510702_003_01.h5
500 | ATL03_20200609214727_11510703_003_01.h5
501 | ATL03_20200609215252_11510704_003_01.h5
502 | ATL03_20200609215801_11510705_003_01.h5
503 | ATL03_20200609220326_11510706_003_01.h5
504 | ATL03_20200609221157_11510707_003_01.h5
505 | ATL03_20200609221859_11510708_003_01.h5
506 | ATL03_20200730230449_05430813_003_01.h5
507 | ATL03_20200730231051_05430814_003_01.h5
508 | ATL03_20200730231753_05440801_003_01.h5
509 | ATL03_20200730232455_05440802_003_01.h5
510 | ATL03_20200730233325_05440803_003_01.h5
511 | ATL03_20200730233850_05440804_003_01.h5
512 | ATL03_20200730234400_05440805_003_01.h5
513 | ATL03_20200730234925_05440806_003_01.h5
514 | ATL03_20200730235755_05440807_003_01.h5
515 | ATL03_20200731000457_05440808_003_01.h5
516 | ATL03_20200731001159_05440809_003_01.h5
517 | ATL03_20200731001801_05440810_003_01.h5
518 | ATL03_20200731002542_05440811_003_01.h5
519 | ATL03_20200731003125_05440812_003_01.h5
520 | ATL03_20200731003906_05440813_003_01.h5
521 | ATL03_20200731004508_05440814_003_01.h5
522 | ATL03_20200731005211_05450801_003_01.h5
523 | ATL03_20200731005913_05450802_003_01.h5
524 | ATL03_20200731010743_05450803_003_01.h5
525 | ATL03_20200731011308_05450804_003_01.h5
526 | ATL03_20200731011817_05450805_003_01.h5
527 | ATL03_20200731012342_05450806_003_01.h5
528 | ATL03_20200827014646_09570814_003_01.h5
529 | ATL03_20200827015349_09580801_003_01.h5
530 | ATL03_20200827020050_09580802_003_01.h5
531 | ATL03_20200827020921_09580803_003_01.h5
532 | ATL03_20200827020921_09580803_003_01.h5
533 | ATL03_20200827021446_09580804_003_01.h5
534 | ATL03_20200827021446_09580804_003_01.h5
535 | ATL03_20200827021955_09580805_003_01.h5
536 | ATL03_20200827021955_09580805_003_01.h5
537 | ATL03_20200827022520_09580806_003_01.h5
538 | ATL03_20200827023350_09580807_003_01.h5
539 | ATL03_20200827024052_09580808_003_01.h5
540 | ATL03_20200827024755_09580809_003_01.h5
541 | ATL03_20200827025357_09580810_003_01.h5
542 | ATL03_20200827025357_09580810_003_01.h5
543 | ATL03_20200827030138_09580811_003_01.h5
544 | ATL03_20200827030138_09580811_003_01.h5
545 | ATL03_20200827030721_09580812_003_01.h5
546 | ATL03_20200827030721_09580812_003_01.h5
547 | ATL03_20200827031502_09580813_003_01.h5
548 | ATL03_20200827032103_09580814_003_01.h5
549 | ATL03_20200827032806_09590801_003_01.h5
550 | ATL03_20200827033508_09590802_003_01.h5
551 | ATL03_20200827034338_09590803_003_01.h5
552 | ATL03_20200827034338_09590803_003_01.h5
553 | ATL03_20200827034903_09590804_003_01.h5
554 | ATL03_20200827034903_09590804_003_01.h5
555 | ATL03_20200827035412_09590805_003_01.h5
556 | ATL03_20200827035412_09590805_003_01.h5
557 | ATL03_20200827035937_09590806_003_01.h5
558 | ATL03_20200827040808_09590807_003_01.h5
559 | ATL03_20200827041510_09590808_003_01.h5
560 | ATL03_20200827042212_09590809_003_01.h5
561 | ATL03_20200827042814_09590810_003_01.h5
562 | ATL03_20200827042814_09590810_003_01.h5
563 | ATL03_20200827043555_09590811_003_01.h5
564 | ATL03_20200827043555_09590811_003_01.h5
565 | ATL03_20200827044138_09590812_003_01.h5
566 | ATL03_20200827044138_09590812_003_01.h5
567 | ATL03_20200827044919_09590813_003_01.h5
568 | ATL03_20200827045521_09590814_003_01.h5
569 | ATL03_20200827050223_09600801_003_01.h5
570 | ATL03_20200827050925_09600802_003_01.h5
571 | ATL03_20200827051756_09600803_003_01.h5
572 | ATL03_20200827051756_09600803_003_01.h5
573 | ATL03_20200827052321_09600804_003_01.h5
574 | ATL03_20200827052321_09600804_003_01.h5
575 | ATL03_20200827052830_09600805_003_01.h5
576 | ATL03_20200827052830_09600805_003_01.h5
577 | ATL03_20200827053355_09600806_003_01.h5
578 | ATL03_20200827054225_09600807_003_01.h5
579 | ATL03_20200827054927_09600808_003_01.h5
580 | ATL03_20200827055630_09600809_003_01.h5
581 | ATL03_20200827060231_09600810_003_01.h5
582 | ATL03_20200827060231_09600810_003_01.h5
583 | ATL03_20200827061012_09600811_003_01.h5
584 | ATL03_20200827061012_09600811_003_01.h5
585 | ATL03_20200827061555_09600812_003_01.h5
586 | ATL03_20200827061555_09600812_003_01.h5
587 | ATL03_20200827062336_09600813_003_01.h5
588 | ATL03_20200827062938_09600814_003_01.h5
589 | ATL03_20200827063641_09610801_003_01.h5
590 | ATL03_20200827064343_09610802_003_01.h5
591 | ATL03_20200827065213_09610803_003_01.h5
592 | ATL03_20200827065213_09610803_003_01.h5
593 | ATL03_20200827065738_09610804_003_01.h5
594 | ATL03_20200827065738_09610804_003_01.h5
595 | ATL03_20200827070247_09610805_003_01.h5
596 | ATL03_20200827070247_09610805_003_01.h5
597 | ATL03_20200827070812_09610806_003_01.h5
598 | ATL03_20200827071642_09610807_003_01.h5
599 | ATL03_20200909204845_11680809_003_01.h5
600 | ATL03_20200909205447_11680810_003_01.h5
601 | ATL03_20200909210227_11680811_003_01.h5
602 | ATL03_20200909210811_11680812_003_01.h5
603 | ATL03_20200909211551_11680813_003_01.h5
604 | ATL03_20200909212153_11680814_003_01.h5
605 | ATL03_20200909212856_11690801_003_01.h5
606 | ATL03_20200909213558_11690802_003_01.h5
607 | ATL03_20200909214428_11690803_003_01.h5
608 | ATL03_20200909214953_11690804_003_01.h5
609 | ATL03_20200909215502_11690805_003_01.h5
610 | ATL03_20200909220027_11690806_003_01.h5
611 | ATL08_20190914025825_11920401_003_01.h5
612 | ATL08_20190914030527_11920402_003_01.h5
613 | ATL08_20190914031358_11920403_003_01.h5
614 | ATL08_20190914031923_11920404_003_01.h5
615 | ATL08_20190914032432_11920405_003_01.h5
616 | ATL08_20190914032957_11920406_003_01.h5
617 | ATL08_20190914033827_11920407_003_01.h5
618 | ATL08_20190914034529_11920408_003_01.h5
619 | ATL08_20190914035231_11920409_003_01.h5
620 | ATL08_20190914035833_11920410_003_01.h5
621 | ATL08_20190914040614_11920411_003_01.h5
622 | ATL08_20190914041157_11920412_003_01.h5
623 | ATL08_20190914041938_11920413_003_01.h5
624 | ATL08_20190914042540_11920414_003_01.h5
625 | ATL08_20191005003226_01240503_003_01.h5
626 | ATL08_20191005004300_01240505_003_01.h5
627 | ATL08_20191005004825_01240506_003_01.h5
628 | ATL08_20191005005655_01240507_003_01.h5
629 | ATL08_20191005010357_01240508_003_01.h5
630 | ATL08_20191005011100_01240509_003_01.h5
631 | ATL08_20191005011702_01240510_003_01.h5
632 | ATL08_20191005012443_01240511_003_01.h5
633 | ATL08_20191005013026_01240512_003_01.h5
634 | ATL08_20191005014409_01240514_003_01.h5
635 | ATL08_20191012222557_02450501_003_01.h5
636 | ATL08_20191012223259_02450502_003_01.h5
637 | ATL08_20191012224129_02450503_003_01.h5
638 | ATL08_20191012224654_02450504_003_01.h5
639 | ATL08_20191012225203_02450505_003_01.h5
640 | ATL08_20191012230558_02450507_003_01.h5
641 | ATL08_20191012232605_02450510_003_01.h5
642 | ATL08_20191012233346_02450511_003_01.h5
643 | ATL08_20191012233929_02450512_003_01.h5
644 | ATL08_20191013000716_02460502_003_01.h5
645 | ATL08_20191013001546_02460503_003_01.h5
646 | ATL08_20191013002111_02460504_003_01.h5
647 | ATL08_20191013002620_02460505_003_01.h5
648 | ATL08_20191013003145_02460506_003_01.h5
649 | ATL08_20191013004717_02460508_003_01.h5
650 | ATL08_20191013005420_02460509_003_01.h5
651 | ATL08_20191013010022_02460510_003_01.h5
652 | ATL08_20191013010803_02460511_003_01.h5
653 | ATL08_20191013011346_02460512_003_01.h5
654 | ATL08_20191013012729_02460514_003_01.h5
655 | ATL08_20191013013431_02470501_003_01.h5
656 | ATL08_20191013014133_02470502_003_01.h5
657 | ATL08_20191013015003_02470503_003_01.h5
658 | ATL08_20191013015528_02470504_003_01.h5
659 | ATL08_20191013020038_02470505_003_01.h5
660 | ATL08_20191013020603_02470506_003_01.h5
661 | ATL08_20191013021433_02470507_003_01.h5
662 | ATL08_20191013022135_02470508_003_01.h5
663 | ATL08_20191013022837_02470509_003_01.h5
664 | ATL08_20191013023439_02470510_003_01.h5
665 | ATL08_20191013024220_02470511_003_01.h5
666 | ATL08_20191013024803_02470512_003_01.h5
667 | ATL08_20191013025544_02470513_003_01.h5
668 | ATL08_20191013030146_02470514_003_01.h5
669 | ATL08_20191013030848_02480501_003_01.h5
670 | ATL08_20191013031550_02480502_003_01.h5
671 | ATL08_20191013032421_02480503_003_01.h5
672 | ATL08_20191013032946_02480504_003_01.h5
673 | ATL08_20191013033455_02480505_003_01.h5
674 | ATL08_20191013034020_02480506_003_01.h5
675 | ATL08_20191013034850_02480507_003_01.h5
676 | ATL08_20191013040857_02480510_003_01.h5
677 | ATL08_20191013041637_02480511_003_01.h5
678 | ATL08_20191018164326_03330501_003_01.h5
679 | ATL08_20191018165028_03330502_003_01.h5
680 | ATL08_20191018165858_03330503_003_01.h5
681 | ATL08_20191018170423_03330504_003_01.h5
682 | ATL08_20191018170932_03330505_003_01.h5
683 | ATL08_20191018171457_03330506_003_01.h5
684 | ATL08_20191018172328_03330507_003_01.h5
685 | ATL08_20191018174334_03330510_003_01.h5
686 | ATL08_20191018175115_03330511_003_01.h5
687 | ATL08_20191018175658_03330512_003_01.h5
688 | ATL08_20191018181041_03330514_003_01.h5
689 | ATL08_20191018181743_03340501_003_01.h5
690 | ATL08_20191018182445_03340502_003_01.h5
691 | ATL08_20191018183316_03340503_003_01.h5
692 | ATL08_20191018184350_03340505_003_01.h5
693 | ATL08_20191018184915_03340506_003_01.h5
694 | ATL08_20191018190447_03340508_003_01.h5
695 | ATL08_20191018191752_03340510_003_01.h5
696 | ATL08_20191018192532_03340511_003_01.h5
697 | ATL08_20191018193116_03340512_003_01.h5
698 | ATL08_20191018194458_03340514_003_01.h5
699 | ATL08_20191213113812_11850501_003_01.h5
700 | ATL08_20191213114514_11850502_003_01.h5
701 | ATL08_20191213115344_11850503_003_01.h5
702 | ATL08_20191213115909_11850504_003_01.h5
703 | ATL08_20191213120418_11850505_003_01.h5
704 | ATL08_20191213120943_11850506_003_01.h5
705 | ATL08_20191213121814_11850507_003_01.h5
706 | ATL08_20191213122516_11850508_003_01.h5
707 | ATL08_20191213123218_11850509_003_01.h5
708 | ATL08_20191213123820_11850510_003_01.h5
709 | ATL08_20191213124601_11850511_003_01.h5
710 | ATL08_20191213125144_11850512_003_01.h5
711 | ATL08_20200209085015_06820601_003_01.h5
712 | ATL08_20200209085717_06820602_003_01.h5
713 | ATL08_20200209090547_06820603_003_01.h5
714 | ATL08_20200209091112_06820604_003_01.h5
715 | ATL08_20200209091621_06820605_003_01.h5
716 | ATL08_20200209092147_06820606_003_01.h5
717 | ATL08_20200209093017_06820607_003_01.h5
718 | ATL08_20200209093719_06820608_003_01.h5
719 | ATL08_20200209095023_06820610_003_01.h5
720 | ATL08_20200209095804_06820611_003_01.h5
721 | ATL08_20200209100347_06820612_003_01.h5
722 | ATL08_20200209102432_06830601_003_01.h5
723 | ATL08_20200209103134_06830602_003_01.h5
724 | ATL08_20200209104005_06830603_003_01.h5
725 | ATL08_20200209104530_06830604_003_01.h5
726 | ATL08_20200209105039_06830605_003_01.h5
727 | ATL08_20200209105604_06830606_003_01.h5
728 | ATL08_20200209110434_06830607_003_01.h5
729 | ATL08_20200209112441_06830610_003_01.h5
730 | ATL08_20200209113221_06830611_003_01.h5
731 | ATL08_20200209113805_06830612_003_01.h5
732 | ATL08_20200209115850_06840601_003_01.h5
733 | ATL08_20200209120552_06840602_003_01.h5
734 | ATL08_20200209121422_06840603_003_01.h5
735 | ATL08_20200209121947_06840604_003_01.h5
736 | ATL08_20200209122456_06840605_003_01.h5
737 | ATL08_20200209123021_06840606_003_01.h5
738 | ATL08_20200209125858_06840610_003_01.h5
739 | ATL08_20200209130639_06840611_003_01.h5
740 | ATL08_20200209131222_06840612_003_01.h5
741 | ATL08_20200209132605_06840614_003_01.h5
742 | ATL08_20200209133307_06850601_003_01.h5
743 | ATL08_20200209134009_06850602_003_01.h5
744 | ATL08_20200209134839_06850603_003_01.h5
745 | ATL08_20200209135405_06850604_003_01.h5
746 | ATL08_20200209135914_06850605_003_01.h5
747 | ATL08_20200209140439_06850606_003_01.h5
748 | ATL08_20200209142011_06850608_003_01.h5
749 | ATL08_20200209143315_06850610_003_01.h5
750 | ATL08_20200209144056_06850611_003_01.h5
751 | ATL08_20200209144639_06850612_003_01.h5
752 | ATL08_20200209145420_06850613_003_01.h5
753 | ATL08_20200209150022_06850614_003_01.h5
754 | ATL08_20200209150725_06860601_003_01.h5
755 | ATL08_20200209151427_06860602_003_01.h5
756 | ATL08_20200209152257_06860603_003_01.h5
757 | ATL08_20200209153331_06860605_003_01.h5
758 | ATL08_20200209153856_06860606_003_01.h5
759 | ATL08_20200209154726_06860607_003_01.h5
760 | ATL08_20200209155428_06860608_003_01.h5
761 | ATL08_20200209160131_06860609_003_01.h5
762 | ATL08_20200209161514_06860611_003_01.h5
763 | ATL08_20200209162057_06860612_003_01.h5
764 | ATL08_20200209164142_06870601_003_01.h5
765 | ATL08_20200209164844_06870602_003_01.h5
766 | ATL08_20200209165714_06870603_003_01.h5
767 | ATL08_20200209170239_06870604_003_01.h5
768 | ATL08_20200209170748_06870605_003_01.h5
769 | ATL08_20200209172144_06870607_003_01.h5
770 | ATL08_20200209174150_06870610_003_01.h5
771 | ATL08_20200209174931_06870611_003_01.h5
772 | ATL08_20200209175514_06870612_003_01.h5
773 | ATL08_20200209183132_06880603_003_01.h5
774 | ATL08_20200209183657_06880604_003_01.h5
775 | ATL08_20200209184206_06880605_003_01.h5
776 | ATL08_20200209184731_06880606_003_01.h5
777 | ATL08_20200209190303_06880608_003_01.h5
778 | ATL08_20200209191005_06880609_003_01.h5
779 | ATL08_20200209191607_06880610_003_01.h5
780 | ATL08_20200209192348_06880611_003_01.h5
781 | ATL08_20200209194314_06880614_003_01.h5
782 | ATL08_20200209195017_06890601_003_01.h5
783 | ATL08_20200209195719_06890602_003_01.h5
784 | ATL08_20200209200549_06890603_003_01.h5
785 | ATL08_20200209201114_06890604_003_01.h5
786 | ATL08_20200209201623_06890605_003_01.h5
787 | ATL08_20200209202148_06890606_003_01.h5
788 | ATL08_20200209203018_06890607_003_01.h5
789 | ATL08_20200209203720_06890608_003_01.h5
790 | ATL08_20200209204423_06890609_003_01.h5
791 | ATL08_20200209205025_06890610_003_01.h5
792 | ATL08_20200209205806_06890611_003_01.h5
793 | ATL08_20200209210349_06890612_003_01.h5
794 | ATL08_20200209211130_06890613_003_01.h5
795 | ATL08_20200209211731_06890614_003_01.h5
796 | ATL08_20200209212434_06900601_003_01.h5
797 | ATL08_20200209213136_06900602_003_01.h5
798 | ATL08_20200209214006_06900603_003_01.h5
799 | ATL08_20200209214531_06900604_003_01.h5
800 | ATL08_20200209215040_06900605_003_01.h5
801 | ATL08_20200209215606_06900606_003_01.h5
802 | ATL08_20200209220436_06900607_003_01.h5
803 | ATL08_20200209222442_06900610_003_01.h5
804 | ATL08_20200209223223_06900611_003_01.h5
805 | ATL08_20200209223806_06900612_003_01.h5
806 | ATL08_20200319061823_12760601_003_01.h5
807 | ATL08_20200319062525_12760602_003_01.h5
808 | ATL08_20200319063355_12760603_003_01.h5
809 | ATL08_20200319063920_12760604_003_01.h5
810 | ATL08_20200319064429_12760605_003_01.h5
811 | ATL08_20200319064955_12760606_003_01.h5
812 | ATL08_20200319065825_12760607_003_01.h5
813 | ATL08_20200319070527_12760608_003_01.h5
814 | ATL08_20200319071229_12760609_003_01.h5
815 | ATL08_20200319071831_12760610_003_01.h5
816 | ATL08_20200319072612_12760611_003_01.h5
817 | ATL08_20200319073155_12760612_003_01.h5
818 | ATL08_20200319074538_12760614_003_01.h5
819 | ATL08_20200319075240_12770601_003_01.h5
820 | ATL08_20200319075942_12770602_003_01.h5
821 | ATL08_20200319080813_12770603_003_01.h5
822 | ATL08_20200319081338_12770604_003_01.h5
823 | ATL08_20200319081847_12770605_003_01.h5
824 | ATL08_20200319082412_12770606_003_01.h5
825 | ATL08_20200319083242_12770607_003_01.h5
826 | ATL08_20200319083944_12770608_003_01.h5
827 | ATL08_20200319085249_12770610_003_01.h5
828 | ATL08_20200319090029_12770611_003_01.h5
829 | ATL08_20200319090613_12770612_003_01.h5
830 | ATL08_20200319092658_12780601_003_01.h5
831 | ATL08_20200319093400_12780602_003_01.h5
832 | ATL08_20200319094230_12780603_003_01.h5
833 | ATL08_20200319094755_12780604_003_01.h5
834 | ATL08_20200319095304_12780605_003_01.h5
835 | ATL08_20200319095829_12780606_003_01.h5
836 | ATL08_20200319100700_12780607_003_01.h5
837 | ATL08_20200319102706_12780610_003_01.h5
838 | ATL08_20200319103447_12780611_003_01.h5
839 | ATL08_20200319104030_12780612_003_01.h5
840 | ATL08_20200326190136_00040701_003_01.h5
841 | ATL08_20200326190838_00040702_003_01.h5
842 | ATL08_20200326191708_00040703_003_01.h5
843 | ATL08_20200326192234_00040704_003_01.h5
844 | ATL08_20200326192743_00040705_003_01.h5
845 | ATL08_20200326193308_00040706_003_01.h5
846 | ATL08_20200326194138_00040707_003_01.h5
847 | ATL08_20200326200144_00040710_003_01.h5
848 | ATL08_20200326200925_00040711_003_01.h5
849 | ATL08_20200326201508_00040712_003_01.h5
850 | ATL08_20200326203554_00050701_003_01.h5
851 | ATL08_20200326204256_00050702_003_01.h5
852 | ATL08_20200326205126_00050703_003_01.h5
853 | ATL08_20200326205651_00050704_003_01.h5
854 | ATL08_20200326210200_00050705_003_01.h5
855 | ATL08_20200326210725_00050706_003_01.h5
856 | ATL08_20200326211555_00050707_003_01.h5
857 | ATL08_20200326212257_00050708_003_01.h5
858 | ATL08_20200326213602_00050710_003_01.h5
859 | ATL08_20200326214343_00050711_003_01.h5
860 | ATL08_20200326214926_00050712_003_01.h5
861 | ATL08_20200326221713_00060702_003_01.h5
862 | ATL08_20200326222543_00060703_003_01.h5
863 | ATL08_20200326223618_00060705_003_01.h5
864 | ATL08_20200326224143_00060706_003_01.h5
865 | ATL08_20200326225013_00060707_003_01.h5
866 | ATL08_20200326225715_00060708_003_01.h5
867 | ATL08_20200326231019_00060710_003_01.h5
868 | ATL08_20200326231800_00060711_003_01.h5
869 | ATL08_20200326232343_00060712_003_01.h5
870 | ATL08_20200326233726_00060714_003_01.h5
871 | ATL08_20200429104634_05180701_003_02.h5
872 | ATL08_20200429105335_05180702_003_02.h5
873 | ATL08_20200429110206_05180703_003_02.h5
874 | ATL08_20200429111240_05180705_003_02.h5
875 | ATL08_20200429111805_05180706_003_02.h5
876 | ATL08_20200429112635_05180707_003_02.h5
877 | ATL08_20200429114642_05180710_003_02.h5
878 | ATL08_20200429115422_05180711_003_02.h5
879 | ATL08_20200429120006_05180712_003_02.h5
880 | ATL08_20200508175543_06600701_003_01.h5
881 | ATL08_20200508180245_06600702_003_01.h5
882 | ATL08_20200508181115_06600703_003_01.h5
883 | ATL08_20200508181640_06600704_003_01.h5
884 | ATL08_20200508182149_06600705_003_01.h5
885 | ATL08_20200508182714_06600706_003_01.h5
886 | ATL08_20200508183545_06600707_003_01.h5
887 | ATL08_20200508185551_06600710_003_01.h5
888 | ATL08_20200508190332_06600711_003_01.h5
889 | ATL08_20200508190915_06600712_003_01.h5
890 | ATL08_20200715184943_03120802_003_01.h5
891 | ATL08_20200715185813_03120803_003_01.h5
892 | ATL08_20200715190848_03120805_003_01.h5
893 | ATL08_20200715191413_03120806_003_01.h5
894 | ATL08_20200715192243_03120807_003_01.h5
895 | ATL08_20200715192945_03120808_003_01.h5
896 | ATL08_20200715193647_03120809_003_01.h5
897 | ATL08_20200715194249_03120810_003_01.h5
898 | ATL08_20200715195030_03120811_003_01.h5
899 | ATL08_20200715195613_03120812_003_01.h5
900 | ATL08_20200715201659_03130801_003_01.h5
901 | ATL08_20200715203231_03130803_003_01.h5
902 | ATL08_20200715204305_03130805_003_01.h5
903 | ATL08_20200715204830_03130806_003_01.h5
904 | ATL08_20200715205700_03130807_003_01.h5
905 | ATL08_20200715211707_03130810_003_01.h5
906 | ATL08_20200715212447_03130811_003_01.h5
907 | ATL08_20200715213031_03130812_003_01.h5
908 | ATL08_20200715213811_03130813_003_01.h5
909 | ATL08_20200715214413_03130814_003_01.h5
910 | ATL08_20191213113812_11850501_003_01.h5
911 | ATL08_20191213114514_11850502_003_01.h5
912 | ATL08_20191213115344_11850503_003_01.h5
913 | ATL08_20191213115909_11850504_003_01.h5
914 | ATL08_20191213120418_11850505_003_01.h5
915 | ATL08_20191213120943_11850506_003_01.h5
916 | ATL08_20191213121814_11850507_003_01.h5
917 | ATL08_20191213122516_11850508_003_01.h5
918 | ATL08_20191213123218_11850509_003_01.h5
919 | ATL08_20191213123820_11850510_003_01.h5
920 | ATL08_20191213124601_11850511_003_01.h5
921 | ATL08_20191213125144_11850512_003_01.h5
922 | ATL08_20191213125925_11850513_003_01.h5
923 | ATL08_20191213130527_11850514_003_01.h5
924 | ATL08_20200405192758_01570701_003_01.h5
925 | ATL08_20200405193500_01570702_003_01.h5
926 | ATL08_20200405194330_01570703_003_01.h5
927 | ATL08_20200405194855_01570704_003_01.h5
928 | ATL08_20200405195404_01570705_003_01.h5
929 | ATL08_20200405195929_01570706_003_01.h5
930 | ATL08_20200405200800_01570707_003_01.h5
931 | ATL08_20200405201502_01570708_003_01.h5
932 | ATL08_20200405202204_01570709_003_01.h5
933 | ATL08_20200405202806_01570710_003_01.h5
934 | ATL08_20200405203547_01570711_003_01.h5
935 | ATL08_20200405204130_01570712_003_01.h5
936 | ATL08_20200405204911_01570713_003_01.h5
937 | ATL08_20200405205513_01570714_003_01.h5
938 | ATL08_20200405210215_01580701_003_01.h5
939 | ATL08_20200405210917_01580702_003_01.h5
940 | ATL08_20200405211748_01580703_003_01.h5
941 | ATL08_20200405212313_01580704_003_01.h5
942 | ATL08_20200405212822_01580705_003_01.h5
943 | ATL08_20200405213347_01580706_003_01.h5
944 | ATL08_20200405214217_01580707_003_01.h5
945 | ATL08_20200405214919_01580708_003_01.h5
946 | ATL08_20200405215622_01580709_003_01.h5
947 | ATL08_20200405220224_01580710_003_01.h5
948 | ATL08_20200405221004_01580711_003_01.h5
949 | ATL08_20200405221548_01580712_003_01.h5
950 | ATL08_20200405222328_01580713_003_01.h5
951 | ATL08_20200405222930_01580714_003_01.h5
952 | ATL08_20200405223633_01590701_003_01.h5
953 | ATL08_20200405224335_01590702_003_01.h5
954 | ATL08_20200405225205_01590703_003_01.h5
955 | ATL08_20200405225730_01590704_003_01.h5
956 | ATL08_20200405230239_01590705_003_01.h5
957 | ATL08_20200405230804_01590706_003_01.h5
958 | ATL08_20200405231634_01590707_003_01.h5
959 | ATL08_20200405232336_01590708_003_01.h5
960 | ATL08_20200405233039_01590709_003_01.h5
961 | ATL08_20200405233641_01590710_003_01.h5
962 | ATL08_20200405234422_01590711_003_01.h5
963 | ATL08_20200405235005_01590712_003_01.h5
964 | ATL08_20200405235746_01590713_003_01.h5
965 | ATL08_20200406000348_01590714_003_01.h5
966 | ATL08_20200411165403_02470701_003_01.h5
967 | ATL08_20200411170105_02470702_003_01.h5
968 | ATL08_20200411170935_02470703_003_01.h5
969 | ATL08_20200411171500_02470704_003_01.h5
970 | ATL08_20200411172010_02470705_003_01.h5
971 | ATL08_20200411172535_02470706_003_01.h5
972 | ATL08_20200411173405_02470707_003_01.h5
973 | ATL08_20200411174107_02470708_003_01.h5
974 | ATL08_20200411174809_02470709_003_01.h5
975 | ATL08_20200411175411_02470710_003_01.h5
976 | ATL08_20200411180152_02470711_003_01.h5
977 | ATL08_20200411180735_02470712_003_01.h5
978 | ATL08_20200411181516_02470713_003_01.h5
979 | ATL08_20200411182118_02470714_003_01.h5
980 | ATL08_20200411182820_02480701_003_01.h5
981 | ATL08_20200411183522_02480702_003_01.h5
982 | ATL08_20200411184353_02480703_003_01.h5
983 | ATL08_20200411184918_02480704_003_01.h5
984 | ATL08_20200411185427_02480705_003_01.h5
985 | ATL08_20200411185952_02480706_003_01.h5
986 | ATL08_20200411190822_02480707_003_01.h5
987 | ATL08_20200411191524_02480708_003_01.h5
988 | ATL08_20200411192227_02480709_003_01.h5
989 | ATL08_20200411192829_02480710_003_01.h5
990 | ATL08_20200411193609_02480711_003_01.h5
991 | ATL08_20200411194153_02480712_003_01.h5
992 | ATL08_20200411194933_02480713_003_01.h5
993 | ATL08_20200411195535_02480714_003_01.h5
994 | ATL08_20200411200238_02490701_003_01.h5
995 | ATL08_20200411200940_02490702_003_01.h5
996 | ATL08_20200411201810_02490703_003_01.h5
997 | ATL08_20200411202335_02490704_003_01.h5
998 | ATL08_20200411202844_02490705_003_01.h5
999 | ATL08_20200411203409_02490706_003_01.h5
1000 | ATL08_20200411204240_02490707_003_01.h5
1001 | ATL08_20200411204942_02490708_003_01.h5
1002 | ATL08_20200411205644_02490709_003_01.h5
1003 | ATL08_20200411210246_02490710_003_01.h5
1004 | ATL08_20200411211027_02490711_003_01.h5
1005 | ATL08_20200411211610_02490712_003_01.h5
1006 | ATL08_20200411212351_02490713_003_01.h5
1007 | ATL08_20200411212953_02490714_003_01.h5
1008 | ATL08_20200411213655_02500701_003_01.h5
1009 | ATL08_20200411214357_02500702_003_01.h5
1010 | ATL08_20200411215228_02500703_003_01.h5
1011 | ATL08_20200411215753_02500704_003_01.h5
1012 | ATL08_20200411220302_02500705_003_01.h5
1013 | ATL08_20200411220827_02500706_003_01.h5
1014 | ATL08_20200411221657_02500707_003_01.h5
1015 | ATL08_20200411222359_02500708_003_01.h5
1016 | ATL08_20200411223102_02500709_003_01.h5
1017 | ATL08_20200411223704_02500710_003_01.h5
1018 | ATL08_20200411224444_02500711_003_01.h5
1019 | ATL08_20200411225028_02500712_003_01.h5
1020 | ATL08_20200411225808_02500713_003_01.h5
1021 | ATL08_20200411230410_02500714_003_01.h5
1022 | ATL08_20200420143728_03830701_003_01.h5
1023 | ATL08_20200420144430_03830702_003_01.h5
1024 | ATL08_20200420145301_03830703_003_01.h5
1025 | ATL08_20200420145826_03830704_003_01.h5
1026 | ATL08_20200420150335_03830705_003_01.h5
1027 | ATL08_20200420150900_03830706_003_01.h5
1028 | ATL08_20200420151730_03830707_003_01.h5
1029 | ATL08_20200420152432_03830708_003_01.h5
1030 | ATL08_20200420153134_03830709_003_01.h5
1031 | ATL08_20200420153736_03830710_003_01.h5
1032 | ATL08_20200420154517_03830711_003_01.h5
1033 | ATL08_20200420155100_03830712_003_01.h5
1034 | ATL08_20200420155841_03830713_003_01.h5
1035 | ATL08_20200420160443_03830714_003_01.h5
1036 | ATL08_20200420161146_03840701_003_01.h5
1037 | ATL08_20200420161848_03840702_003_01.h5
1038 | ATL08_20200420162718_03840703_003_01.h5
1039 | ATL08_20200420163243_03840704_003_01.h5
1040 | ATL08_20200420163752_03840705_003_01.h5
1041 | ATL08_20200420164317_03840706_003_01.h5
1042 | ATL08_20200420165147_03840707_003_01.h5
1043 | ATL08_20200420165849_03840708_003_01.h5
1044 | ATL08_20200420170552_03840709_003_01.h5
1045 | ATL08_20200420171154_03840710_003_01.h5
1046 | ATL08_20200420171935_03840711_003_01.h5
1047 | ATL08_20200420172518_03840712_003_01.h5
1048 | ATL08_20200420173259_03840713_003_01.h5
1049 | ATL08_20200420173901_03840714_003_01.h5
1050 | ATL08_20200420174603_03850701_003_01.h5
1051 | ATL08_20200420175305_03850702_003_01.h5
1052 | ATL08_20200420180135_03850703_003_01.h5
1053 | ATL08_20200420180700_03850704_003_01.h5
1054 | ATL08_20200420181210_03850705_003_01.h5
1055 | ATL08_20200420181735_03850706_003_01.h5
1056 | ATL08_20200420182605_03850707_003_01.h5
1057 | ATL08_20200420183307_03850708_003_01.h5
1058 | ATL08_20200420184009_03850709_003_01.h5
1059 | ATL08_20200420184611_03850710_003_01.h5
1060 | ATL08_20200420185352_03850711_003_01.h5
1061 | ATL08_20200420185935_03850712_003_01.h5
1062 | ATL08_20200420190716_03850713_003_01.h5
1063 | ATL08_20200420191318_03850714_003_01.h5
1064 | ATL08_20200420192021_03860701_003_01.h5
1065 | ATL08_20200420192722_03860702_003_01.h5
1066 | ATL08_20200420193553_03860703_003_01.h5
1067 | ATL08_20200420194118_03860704_003_01.h5
1068 | ATL08_20200420194627_03860705_003_01.h5
1069 | ATL08_20200420195152_03860706_003_01.h5
1070 | ATL08_20200420200022_03860707_003_01.h5
1071 | ATL08_20200420200724_03860708_003_01.h5
1072 | ATL08_20200420201427_03860709_003_01.h5
1073 | ATL08_20200420202029_03860710_003_01.h5
1074 | ATL08_20200420202810_03860711_003_01.h5
1075 | ATL08_20200420203353_03860712_003_01.h5
1076 | ATL08_20200420204134_03860713_003_01.h5
1077 | ATL08_20200420204736_03860714_003_01.h5
1078 | ATL08_20200420205438_03870701_003_01.h5
1079 | ATL08_20200420210140_03870702_003_01.h5
1080 | ATL08_20200420211010_03870703_003_01.h5
1081 | ATL08_20200420211535_03870704_003_01.h5
1082 | ATL08_20200420212044_03870705_003_01.h5
1083 | ATL08_20200420212609_03870706_003_01.h5
1084 | ATL08_20200420213440_03870707_003_01.h5
1085 | ATL08_20200420214142_03870708_003_01.h5
1086 | ATL08_20200420214844_03870709_003_01.h5
1087 | ATL08_20200420215446_03870710_003_01.h5
1088 | ATL08_20200420220227_03870711_003_01.h5
1089 | ATL08_20200420220810_03870712_003_01.h5
1090 | ATL08_20200420221551_03870713_003_01.h5
1091 | ATL08_20200420222153_03870714_003_01.h5
1092 | ATL08_20200420222855_03880701_003_01.h5
1093 | ATL08_20200420223557_03880702_003_01.h5
1094 | ATL08_20200420224428_03880703_003_01.h5
1095 | ATL08_20200420224953_03880704_003_01.h5
1096 | ATL08_20200420225502_03880705_003_01.h5
1097 | ATL08_20200420230027_03880706_003_01.h5
1098 | ATL08_20200420230857_03880707_003_01.h5
1099 | ATL08_20200420231559_03880708_003_01.h5
1100 | ATL08_20200420232302_03880709_003_01.h5
1101 | ATL08_20200420232904_03880710_003_01.h5
1102 | ATL08_20200420233644_03880711_003_01.h5
1103 | ATL08_20200420234228_03880712_003_01.h5
1104 | ATL08_20200420235008_03880713_003_01.h5
1105 | ATL08_20200420235610_03880714_003_01.h5
1106 | ATL08_20200424142910_04440701_003_02.h5
1107 | ATL08_20200424143612_04440702_003_02.h5
1108 | ATL08_20200424144442_04440703_003_02.h5
1109 | ATL08_20200424145007_04440704_003_02.h5
1110 | ATL08_20200424145516_04440705_003_02.h5
1111 | ATL08_20200424150041_04440706_003_02.h5
1112 | ATL08_20200424150912_04440707_003_02.h5
1113 | ATL08_20200424151614_04440708_003_02.h5
1114 | ATL08_20200424152316_04440709_003_02.h5
1115 | ATL08_20200424152918_04440710_003_02.h5
1116 | ATL08_20200424153659_04440711_003_02.h5
1117 | ATL08_20200424154242_04440712_003_02.h5
1118 | ATL08_20200424155023_04440713_003_02.h5
1119 | ATL08_20200424155625_04440714_003_02.h5
1120 | ATL08_20200511150428_07040701_003_01.h5
1121 | ATL08_20200511151130_07040702_003_01.h5
1122 | ATL08_20200511152000_07040703_003_01.h5
1123 | ATL08_20200511152526_07040704_003_01.h5
1124 | ATL08_20200511153035_07040705_003_01.h5
1125 | ATL08_20200511153600_07040706_003_01.h5
1126 | ATL08_20200511154430_07040707_003_01.h5
1127 | ATL08_20200511155132_07040708_003_01.h5
1128 | ATL08_20200511155834_07040709_003_01.h5
1129 | ATL08_20200511160436_07040710_003_01.h5
1130 | ATL08_20200511161217_07040711_003_01.h5
1131 | ATL08_20200511161800_07040712_003_01.h5
1132 | ATL08_20200511162541_07040713_003_01.h5
1133 | ATL08_20200511163143_07040714_003_01.h5
1134 | ATL08_20200511163846_07050701_003_01.h5
1135 | ATL08_20200511164548_07050702_003_01.h5
1136 | ATL08_20200511165418_07050703_003_01.h5
1137 | ATL08_20200511165943_07050704_003_01.h5
1138 | ATL08_20200511170452_07050705_003_01.h5
1139 | ATL08_20200511171017_07050706_003_01.h5
1140 | ATL08_20200511171847_07050707_003_01.h5
1141 | ATL08_20200511172549_07050708_003_01.h5
1142 | ATL08_20200511173252_07050709_003_01.h5
1143 | ATL08_20200511173854_07050710_003_01.h5
1144 | ATL08_20200511174635_07050711_003_01.h5
1145 | ATL08_20200511175218_07050712_003_01.h5
1146 | ATL08_20200511175959_07050713_003_01.h5
1147 | ATL08_20200511180601_07050714_003_01.h5
1148 | ATL08_20200609164903_11480701_003_01.h5
1149 | ATL08_20200609165605_11480702_003_01.h5
1150 | ATL08_20200609170435_11480703_003_01.h5
1151 | ATL08_20200609171000_11480704_003_01.h5
1152 | ATL08_20200609171509_11480705_003_01.h5
1153 | ATL08_20200609172034_11480706_003_01.h5
1154 | ATL08_20200609172905_11480707_003_01.h5
1155 | ATL08_20200609173607_11480708_003_01.h5
1156 | ATL08_20200609174309_11480709_003_01.h5
1157 | ATL08_20200609174911_11480710_003_01.h5
1158 | ATL08_20200609175652_11480711_003_01.h5
1159 | ATL08_20200609180235_11480712_003_01.h5
1160 | ATL08_20200609181016_11480713_003_01.h5
1161 | ATL08_20200609181618_11480714_003_01.h5
1162 | ATL08_20200609182320_11490701_003_01.h5
1163 | ATL08_20200609183022_11490702_003_01.h5
1164 | ATL08_20200609183852_11490703_003_01.h5
1165 | ATL08_20200609184418_11490704_003_01.h5
1166 | ATL08_20200609184927_11490705_003_01.h5
1167 | ATL08_20200609185452_11490706_003_01.h5
1168 | ATL08_20200609190322_11490707_003_01.h5
1169 | ATL08_20200609191024_11490708_003_01.h5
1170 | ATL08_20200609191726_11490709_003_01.h5
1171 | ATL08_20200609192328_11490710_003_01.h5
1172 | ATL08_20200609193109_11490711_003_01.h5
1173 | ATL08_20200609193652_11490712_003_01.h5
1174 | ATL08_20200609194433_11490713_003_01.h5
1175 | ATL08_20200609195035_11490714_003_01.h5
1176 | ATL08_20200609195738_11500701_003_01.h5
1177 | ATL08_20200609200440_11500702_003_01.h5
1178 | ATL08_20200609201310_11500703_003_01.h5
1179 | ATL08_20200609201835_11500704_003_01.h5
1180 | ATL08_20200609202344_11500705_003_01.h5
1181 | ATL08_20200609202909_11500706_003_01.h5
1182 | ATL08_20200609203739_11500707_003_01.h5
1183 | ATL08_20200609204441_11500708_003_01.h5
1184 | ATL08_20200609205144_11500709_003_01.h5
1185 | ATL08_20200609205746_11500710_003_01.h5
1186 | ATL08_20200609210527_11500711_003_01.h5
1187 | ATL08_20200609211110_11500712_003_01.h5
1188 | ATL08_20200609211851_11500713_003_01.h5
1189 | ATL08_20200609212453_11500714_003_01.h5
1190 | ATL08_20200609213155_11510701_003_01.h5
1191 | ATL08_20200609213857_11510702_003_01.h5
1192 | ATL08_20200609214727_11510703_003_01.h5
1193 | ATL08_20200609215252_11510704_003_01.h5
1194 | ATL08_20200609215801_11510705_003_01.h5
1195 | ATL08_20200609220326_11510706_003_01.h5
1196 | ATL08_20200609221157_11510707_003_01.h5
1197 | ATL08_20200609221859_11510708_003_01.h5
1198 | ATL08_20200609222601_11510709_003_01.h5
1199 | ATL08_20200609223203_11510710_003_01.h5
1200 | ATL08_20200609223944_11510711_003_01.h5
1201 | ATL08_20200609224527_11510712_003_01.h5
1202 | ATL08_20200609225308_11510713_003_01.h5
1203 | ATL08_20200609225910_11510714_003_01.h5
1204 | ATL08_20200730214336_05430801_003_01.h5
1205 | ATL08_20200730215038_05430802_003_01.h5
1206 | ATL08_20200730215908_05430803_003_01.h5
1207 | ATL08_20200730220433_05430804_003_01.h5
1208 | ATL08_20200730220942_05430805_003_01.h5
1209 | ATL08_20200730221507_05430806_003_01.h5
1210 | ATL08_20200730222338_05430807_003_01.h5
1211 | ATL08_20200730223039_05430808_003_01.h5
1212 | ATL08_20200730223742_05430809_003_01.h5
1213 | ATL08_20200730224344_05430810_003_01.h5
1214 | ATL08_20200730225125_05430811_003_01.h5
1215 | ATL08_20200730225708_05430812_003_01.h5
1216 | ATL08_20200730230449_05430813_003_01.h5
1217 | ATL08_20200730231051_05430814_003_01.h5
1218 | ATL08_20200730231753_05440801_003_01.h5
1219 | ATL08_20200730232455_05440802_003_01.h5
1220 | ATL08_20200730233325_05440803_003_01.h5
1221 | ATL08_20200730233850_05440804_003_01.h5
1222 | ATL08_20200730234400_05440805_003_01.h5
1223 | ATL08_20200730234925_05440806_003_01.h5
1224 | ATL08_20200730235755_05440807_003_01.h5
1225 | ATL08_20200731000457_05440808_003_01.h5
1226 | ATL08_20200731001159_05440809_003_01.h5
1227 | ATL08_20200731001801_05440810_003_01.h5
1228 | ATL08_20200731002542_05440811_003_01.h5
1229 | ATL08_20200731003125_05440812_003_01.h5
1230 | ATL08_20200731003906_05440813_003_01.h5
1231 | ATL08_20200731004508_05440814_003_01.h5
1232 | ATL08_20200731005211_05450801_003_01.h5
1233 | ATL08_20200731005913_05450802_003_01.h5
1234 | ATL08_20200731010743_05450803_003_01.h5
1235 | ATL08_20200731011308_05450804_003_01.h5
1236 | ATL08_20200731011817_05450805_003_01.h5
1237 | ATL08_20200731012342_05450806_003_01.h5
1238 | ATL08_20200731013212_05450807_003_01.h5
1239 | ATL08_20200731013914_05450808_003_01.h5
1240 | ATL08_20200731014617_05450809_003_01.h5
1241 | ATL08_20200731015219_05450810_003_01.h5
1242 | ATL08_20200731020000_05450811_003_01.h5
1243 | ATL08_20200731020543_05450812_003_01.h5
1244 | ATL08_20200731021324_05450813_003_01.h5
1245 | ATL08_20200731021926_05450814_003_01.h5
1246 | ATL08_20200827001931_09570801_003_01.h5
1247 | ATL08_20200827002633_09570802_003_01.h5
1248 | ATL08_20200827003503_09570803_003_01.h5
1249 | ATL08_20200827004028_09570804_003_01.h5
1250 | ATL08_20200827004538_09570805_003_01.h5
1251 | ATL08_20200827005103_09570806_003_01.h5
1252 | ATL08_20200827005933_09570807_003_01.h5
1253 | ATL08_20200827010635_09570808_003_01.h5
1254 | ATL08_20200827011337_09570809_003_01.h5
1255 | ATL08_20200827011939_09570810_003_01.h5
1256 | ATL08_20200827012720_09570811_003_01.h5
1257 | ATL08_20200827013303_09570812_003_01.h5
1258 | ATL08_20200827014044_09570813_003_01.h5
1259 | ATL08_20200827014646_09570814_003_01.h5
1260 | ATL08_20200827015349_09580801_003_01.h5
1261 | ATL08_20200827020050_09580802_003_01.h5
1262 | ATL08_20200827020921_09580803_003_01.h5
1263 | ATL08_20200827021446_09580804_003_01.h5
1264 | ATL08_20200827021955_09580805_003_01.h5
1265 | ATL08_20200827022520_09580806_003_01.h5
1266 | ATL08_20200827023350_09580807_003_01.h5
1267 | ATL08_20200827024052_09580808_003_01.h5
1268 | ATL08_20200827024755_09580809_003_01.h5
1269 | ATL08_20200827025357_09580810_003_01.h5
1270 | ATL08_20200827030138_09580811_003_01.h5
1271 | ATL08_20200827030721_09580812_003_01.h5
1272 | ATL08_20200827031502_09580813_003_01.h5
1273 | ATL08_20200827032103_09580814_003_01.h5
1274 | ATL08_20200827032806_09590801_003_01.h5
1275 | ATL08_20200827033508_09590802_003_01.h5
1276 | ATL08_20200827034338_09590803_003_01.h5
1277 | ATL08_20200827034903_09590804_003_01.h5
1278 | ATL08_20200827035412_09590805_003_01.h5
1279 | ATL08_20200827035937_09590806_003_01.h5
1280 | ATL08_20200827040808_09590807_003_01.h5
1281 | ATL08_20200827041510_09590808_003_01.h5
1282 | ATL08_20200827042212_09590809_003_01.h5
1283 | ATL08_20200827042814_09590810_003_01.h5
1284 | ATL08_20200827043555_09590811_003_01.h5
1285 | ATL08_20200827044138_09590812_003_01.h5
1286 | ATL08_20200827044919_09590813_003_01.h5
1287 | ATL08_20200827045521_09590814_003_01.h5
1288 | ATL08_20200827050223_09600801_003_01.h5
1289 | ATL08_20200827050925_09600802_003_01.h5
1290 | ATL08_20200827051756_09600803_003_01.h5
1291 | ATL08_20200827052321_09600804_003_01.h5
1292 | ATL08_20200827052830_09600805_003_01.h5
1293 | ATL08_20200827053355_09600806_003_01.h5
1294 | ATL08_20200827054225_09600807_003_01.h5
1295 | ATL08_20200827054927_09600808_003_01.h5
1296 | ATL08_20200827055630_09600809_003_01.h5
1297 | ATL08_20200827060231_09600810_003_01.h5
1298 | ATL08_20200827061012_09600811_003_01.h5
1299 | ATL08_20200827061555_09600812_003_01.h5
1300 | ATL08_20200827062336_09600813_003_01.h5
1301 | ATL08_20200827062938_09600814_003_01.h5
1302 | ATL08_20200827063641_09610801_003_01.h5
1303 | ATL08_20200827064343_09610802_003_01.h5
1304 | ATL08_20200827065213_09610803_003_01.h5
1305 | ATL08_20200827065738_09610804_003_01.h5
1306 | ATL08_20200827070247_09610805_003_01.h5
1307 | ATL08_20200827070812_09610806_003_01.h5
1308 | ATL08_20200827071642_09610807_003_01.h5
1309 | ATL08_20200827072344_09610808_003_01.h5
1310 | ATL08_20200827073047_09610809_003_01.h5
1311 | ATL08_20200827073649_09610810_003_01.h5
1312 | ATL08_20200827074430_09610811_003_01.h5
1313 | ATL08_20200827075013_09610812_003_01.h5
1314 | ATL08_20200827075754_09610813_003_01.h5
1315 | ATL08_20200827080356_09610814_003_01.h5
1316 | ATL08_20200909195439_11680801_003_01.h5
1317 | ATL08_20200909200141_11680802_003_01.h5
1318 | ATL08_20200909201011_11680803_003_01.h5
1319 | ATL08_20200909201536_11680804_003_01.h5
1320 | ATL08_20200909202045_11680805_003_01.h5
1321 | ATL08_20200909202610_11680806_003_01.h5
1322 | ATL08_20200909203440_11680807_003_01.h5
1323 | ATL08_20200909204142_11680808_003_01.h5
1324 | ATL08_20200909204845_11680809_003_01.h5
1325 | ATL08_20200909205447_11680810_003_01.h5
1326 | ATL08_20200909210227_11680811_003_01.h5
1327 | ATL08_20200909210811_11680812_003_01.h5
1328 | ATL08_20200909211551_11680813_003_01.h5
1329 | ATL08_20200909212153_11680814_003_01.h5
1330 | ATL08_20200909212856_11690801_003_01.h5
1331 | ATL08_20200909213558_11690802_003_01.h5
1332 | ATL08_20200909214428_11690803_003_01.h5
1333 | ATL08_20200909214953_11690804_003_01.h5
1334 | ATL08_20200909215502_11690805_003_01.h5
1335 | ATL08_20200909220027_11690806_003_01.h5
1336 | ATL08_20200909220858_11690807_003_01.h5
1337 | ATL08_20200909221600_11690808_003_01.h5
1338 | ATL08_20200909222302_11690809_003_01.h5
1339 | ATL08_20200909222904_11690810_003_01.h5
1340 | ATL08_20200909223645_11690811_003_01.h5
1341 | ATL08_20200909224228_11690812_003_01.h5
1342 | ATL08_20200909225009_11690813_003_01.h5
1343 | ATL08_20200909225611_11690814_003_01.h5
1344 |
--------------------------------------------------------------------------------