-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ICESat2_Granule{:ATL06}
are returned by find
without bounding boxes.
#28
Comments
Yeah, I designed those granules with the idea to hold extra metadata, but haven't implemented it, also because the metadata differs per product and is sometimes costly to get. There's There's also I do see that there's a Polygon that's returned from NASA Earthdata Search for each granule, so we could use that as well. |
Given that the earthdata search quarry is so fast we could keep things light and just remove the bbox. I'm not using it in my processing. Do you have a need? |
I could use it, and it's faster than locally computing it. Also for saving all granules to a shapefile, this could work. Happy to make a PR for it. |
ICESat2_Granule{:ATL06}
are returned byfind
without bounding boxes.geotile = (min_x = 50.0, min_y = -88.0, max_x = 51.0, max_y = -87.0)
granules = find(:ICESat2, "ATL06", geotile, "005")
julia> granules[1].bbox
NamedTuple()
julia> granules[2].bbox
NamedTuple()
julia> granules[3].bbox
NamedTuple()
The text was updated successfully, but these errors were encountered: