
|
If you were logged in you would be able to see more operations.
|
|
|
|
File Attachments:
|
None
|
|
Image Attachments:
|
|
|
|
For geo-referenced products (map-projected to a well-known CRS), a latitude shift (~20 km, depending on datum) can be observed if the the underlying projection uses a datum different from WGS84.
From Gerardo (see attachment):
"While working with the reprojected data, I saw a big shift (~25km) between the MODIS data and the reprojected MERIS/VGT/AATSR data (check the attached quicklook, on the left MODIS, on the right MERIS), which is a problem since we cannot compare out Albedo Inversion with the MODIS products we're using as a reference."
|
|
Description
|
For geo-referenced products (map-projected to a well-known CRS), a latitude shift (~20 km, depending on datum) can be observed if the the underlying projection uses a datum different from WGS84.
From Gerardo (see attachment):
"While working with the reprojected data, I saw a big shift (~25km) between the MODIS data and the reprojected MERIS/VGT/AATSR data (check the attached quicklook, on the left MODIS, on the right MERIS), which is a problem since we cannot compare out Albedo Inversion with the MODIS products we're using as a reference." |
Show » |
|
if (mapCRS instanceof DerivedCRS) {
DerivedCRS derivedCRS = (DerivedCRS) mapCRS;
CoordinateReferenceSystem baseCRS = derivedCRS.getBaseCRS();
setGeoCRS(baseCRS);
} else {
setGeoCRS(DefaultGeographicCRS.WGS84);
}
==>
if (mapCRS instanceof DerivedCRS) {
DerivedCRS derivedCRS = (DerivedCRS) mapCRS;
CoordinateReferenceSystem baseCRS = derivedCRS.getBaseCRS();
setGeoCRS(baseCRS);
} else if (gtDatum instanceof GeodeticDatum) {
setGeoCRS(new DefaultGeographicCRS((GeodeticDatum) gtDatum, DefaultEllipsoidalCS.GEODETIC_2D));
} else {
// Fallback
setGeoCRS(DefaultGeographicCRS.WGS84);
}