-
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
Download GEDI by extent error #67
Comments
Welcome to Julia! You define an Extent by providing the dimensions, like so: vietnam = Extent(X = (102., 107.0), Y = (8.0, 12.0)) |
Might I suggest you paste code as text, and not as screenshots? You can use ``` to quote code, like so granules = search(:GEDI, :GEDI02_A, bbox=vietnam) Incidentally, the above code snippet should work. In your screenshot, you pass the |
Thanks very much for your patience with this. Much appreciated! Here is the code: using SpaceLiDAR Define the extent for Can Tho, Vietnambbox = Extents(X = (105.77, 105.85), Y = (10.05, 10.15)) |
Not sure if it now works for you. Your example code contains several syntax errors. I would advise following some Julia tutorial(s) to help with that. bbox = Extents(X = (105.77, 105.85), Y = (10.05, 10.15)) # should be Extent (without the s)
vietnam = Extent(X = (102., 107.0), Y = (8.0, 12.0))
granules = search(:ICESat2, :GEDI02_A,:bbox) # This combination can't work, and :bbox is a symbol, not the variable you made on the first line This should work bbox = Extent(X = (105.77, 105.85), Y = (10.05, 10.15))
granules = search(:GEDI, :GEDI02_A; extent=bbox) # note the keyword argument |
It looks like this issue was resolved... closing |
Hi there, I am new to Julia, and trying to download GEDI for a roi, but I am getting this error. Any help would be much appreciated. Thanks
The text was updated successfully, but these errors were encountered: