We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Do not geocode S3 data with SNAP, to remove this dependency for optical data.
⚠️ Geocoding is not as simple as initially thought
The goal is to apply lon/lat/alt arrays to every rasters (maybe through GCPs ? or -geoloc in gdalwarp ?)
-geoloc
Take a look at the ongoing @rioxarray #329 discussion. And maybe at this thread
This solution using gdal warp -geoloc (script) exists (from this thread and this gdal documentation) but uses gdal CLI, which is not really wanted...
gdal
rad2refl: here
public static float radianceToReflectance(float rad, float sza, float e0) { return (float) ((rad * Math.PI) / (e0 * Math.cos(sza * RAD_PER_DEG))); }
The text was updated successfully, but these errors were encountered:
remi-braun
No branches or pull requests
Sentinel-3
Do not geocode S3 data with SNAP, to remove this dependency for optical data.
Reproject
The goal is to apply lon/lat/alt arrays to every rasters (maybe through GCPs ? or
-geoloc
in gdalwarp ?)Take a look at the ongoing @rioxarray #329 discussion.
And maybe at this thread
This solution using gdal warp
-geoloc
(script) exists (from this thread and this gdal documentation) but usesgdal
CLI, which is not really wanted...Rad2Refl
rad2refl: here
The text was updated successfully, but these errors were encountered: