Why gdal does not find gcps coordinates on SENTINEL images? Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Merging h5 files from VIIRS to gtiffWarping images with unknown projectionjpg to geotiff transformation with gdal_translate and gcps failsmask raster with shapefile using gdalwarp/gdalPython GDAL: How to obtain dx/dy/residual errors for GCPs after gdalwarp usageWhy is gdalwarp flipping pixel size sign?Subdividing large files due to gdalwarp - too big image sizeHow to extract transformation coefficients calculated with GDAL based on GCPs?How to obtain DN values of Sentinel 1 Data (preferably GRD) given actual location coordinates using Python3 GDAL/rasterio/any_other_library?Why doesn't QGIS georeferencer support gdal scripting for projective transformation?
How much radiation do nuclear physics experiments expose researchers to nowadays?
do i need a schengen visa for a direct flight to amsterdam?
What is the correct way to use the pinch test for dehydration?
Do you forfeit tax refunds/credits if you aren't required to and don't file by April 15?
Why are there no cargo aircraft with "flying wing" design?
What causes the vertical darker bands in my photo?
What LEGO pieces have "real-world" functionality?
Check which numbers satisfy the condition [A*B*C = A! + B! + C!]
Bonus calculation: Am I making a mountain out of a molehill?
Disable hyphenation for an entire paragraph
Does accepting a pardon have any bearing on trying that person for the same crime in a sovereign jurisdiction?
Why does Python start at index -1 when indexing a list from the end?
How to deal with a team lead who never gives me credit?
Does surprise arrest existing movement?
If Jon Snow became King of the Seven Kingdoms what would his regnal number be?
3 doors, three guards, one stone
How can I make names more distinctive without making them longer?
Do I really need recursive chmod to restrict access to a folder?
How to bypass password on Windows XP account?
Output the ŋarâþ crîþ alphabet song without using (m)any letters
How widely used is the term Treppenwitz? Is it something that most Germans know?
Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?
Diagram with tikz
Why don't the Weasley twins use magic outside of school if the Trace can only find the location of spells cast?
Why gdal does not find gcps coordinates on SENTINEL images?
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Merging h5 files from VIIRS to gtiffWarping images with unknown projectionjpg to geotiff transformation with gdal_translate and gcps failsmask raster with shapefile using gdalwarp/gdalPython GDAL: How to obtain dx/dy/residual errors for GCPs after gdalwarp usageWhy is gdalwarp flipping pixel size sign?Subdividing large files due to gdalwarp - too big image sizeHow to extract transformation coefficients calculated with GDAL based on GCPs?How to obtain DN values of Sentinel 1 Data (preferably GRD) given actual location coordinates using Python3 GDAL/rasterio/any_other_library?Why doesn't QGIS georeferencer support gdal scripting for projective transformation?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I use gdalwarp with python to overlay polygons on ENVISAT radar images. Everything goes well for this type of images but when I try with SENTINEL images, gdal does not find the georeferencing. It seems that gdal takes the global coordinates of the pixel at the upper left of the image. When I read the image information with gdalinfo, I realize that ENVISAT images have no gcp while SENTINEL images have. I have this error message when I use gdalwarp with SENTINEL images:
The transformation is already "north up" or a transformation between pixel/line and georeferenced coordinates cannot be computed for tmp_spill.tif. There is no affine transformation and no GCPs. Specify transformation option SRC_METHOD=NO_GEOTRANSFORM to bypassthis check.
I do not understand why it does not find gcps when they display well with gdalinfo. I use this line for overlay polygon on ENVISAT images : cmd='gdalwarp --config GDALWARP_IGNORE_BAD_CUTLINE YES -q -dstnodata None -cutline tmp.shp %s %s'%('tmp_seep.tif',classout_seep)
.
Do you know why gdal does not find gcps coordinates ?
python gdal gdalwarp sentinel-1
New contributor
add a comment |
I use gdalwarp with python to overlay polygons on ENVISAT radar images. Everything goes well for this type of images but when I try with SENTINEL images, gdal does not find the georeferencing. It seems that gdal takes the global coordinates of the pixel at the upper left of the image. When I read the image information with gdalinfo, I realize that ENVISAT images have no gcp while SENTINEL images have. I have this error message when I use gdalwarp with SENTINEL images:
The transformation is already "north up" or a transformation between pixel/line and georeferenced coordinates cannot be computed for tmp_spill.tif. There is no affine transformation and no GCPs. Specify transformation option SRC_METHOD=NO_GEOTRANSFORM to bypassthis check.
I do not understand why it does not find gcps when they display well with gdalinfo. I use this line for overlay polygon on ENVISAT images : cmd='gdalwarp --config GDALWARP_IGNORE_BAD_CUTLINE YES -q -dstnodata None -cutline tmp.shp %s %s'%('tmp_seep.tif',classout_seep)
.
Do you know why gdal does not find gcps coordinates ?
python gdal gdalwarp sentinel-1
New contributor
which sentinel product are you downloading? sentinel 2 is provided in different levels of preprocessing.
– Leo
Apr 9 at 8:59
I take sentinel images on the esa website. When i use gdalinfo on a sentinel images i have this type of result :Size is 26178, 16870 Coordinate System is ' GCP Projection = GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] GCP[ 0]: Id=1, Info= (0,0) -> (11.6038164704897,-8.78663832897941,-1.14552676677704e-05)
– marc
Apr 9 at 9:09
You mean that for you gdalinfo shows something different than in the examples in gdal.org/frmt_sentinel2.html? What is your GDAL version?
– user30184
Apr 9 at 9:37
I use sentinel 1A and 1B images. My result look like L1B subdataset at the bottom of your link. I have the 2.2.2 gdal version on python 2.7.14.
– marc
Apr 9 at 13:20
add a comment |
I use gdalwarp with python to overlay polygons on ENVISAT radar images. Everything goes well for this type of images but when I try with SENTINEL images, gdal does not find the georeferencing. It seems that gdal takes the global coordinates of the pixel at the upper left of the image. When I read the image information with gdalinfo, I realize that ENVISAT images have no gcp while SENTINEL images have. I have this error message when I use gdalwarp with SENTINEL images:
The transformation is already "north up" or a transformation between pixel/line and georeferenced coordinates cannot be computed for tmp_spill.tif. There is no affine transformation and no GCPs. Specify transformation option SRC_METHOD=NO_GEOTRANSFORM to bypassthis check.
I do not understand why it does not find gcps when they display well with gdalinfo. I use this line for overlay polygon on ENVISAT images : cmd='gdalwarp --config GDALWARP_IGNORE_BAD_CUTLINE YES -q -dstnodata None -cutline tmp.shp %s %s'%('tmp_seep.tif',classout_seep)
.
Do you know why gdal does not find gcps coordinates ?
python gdal gdalwarp sentinel-1
New contributor
I use gdalwarp with python to overlay polygons on ENVISAT radar images. Everything goes well for this type of images but when I try with SENTINEL images, gdal does not find the georeferencing. It seems that gdal takes the global coordinates of the pixel at the upper left of the image. When I read the image information with gdalinfo, I realize that ENVISAT images have no gcp while SENTINEL images have. I have this error message when I use gdalwarp with SENTINEL images:
The transformation is already "north up" or a transformation between pixel/line and georeferenced coordinates cannot be computed for tmp_spill.tif. There is no affine transformation and no GCPs. Specify transformation option SRC_METHOD=NO_GEOTRANSFORM to bypassthis check.
I do not understand why it does not find gcps when they display well with gdalinfo. I use this line for overlay polygon on ENVISAT images : cmd='gdalwarp --config GDALWARP_IGNORE_BAD_CUTLINE YES -q -dstnodata None -cutline tmp.shp %s %s'%('tmp_seep.tif',classout_seep)
.
Do you know why gdal does not find gcps coordinates ?
python gdal gdalwarp sentinel-1
python gdal gdalwarp sentinel-1
New contributor
New contributor
edited Apr 9 at 12:14
marc
New contributor
asked Apr 9 at 8:12
marcmarc
62
62
New contributor
New contributor
which sentinel product are you downloading? sentinel 2 is provided in different levels of preprocessing.
– Leo
Apr 9 at 8:59
I take sentinel images on the esa website. When i use gdalinfo on a sentinel images i have this type of result :Size is 26178, 16870 Coordinate System is ' GCP Projection = GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] GCP[ 0]: Id=1, Info= (0,0) -> (11.6038164704897,-8.78663832897941,-1.14552676677704e-05)
– marc
Apr 9 at 9:09
You mean that for you gdalinfo shows something different than in the examples in gdal.org/frmt_sentinel2.html? What is your GDAL version?
– user30184
Apr 9 at 9:37
I use sentinel 1A and 1B images. My result look like L1B subdataset at the bottom of your link. I have the 2.2.2 gdal version on python 2.7.14.
– marc
Apr 9 at 13:20
add a comment |
which sentinel product are you downloading? sentinel 2 is provided in different levels of preprocessing.
– Leo
Apr 9 at 8:59
I take sentinel images on the esa website. When i use gdalinfo on a sentinel images i have this type of result :Size is 26178, 16870 Coordinate System is ' GCP Projection = GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] GCP[ 0]: Id=1, Info= (0,0) -> (11.6038164704897,-8.78663832897941,-1.14552676677704e-05)
– marc
Apr 9 at 9:09
You mean that for you gdalinfo shows something different than in the examples in gdal.org/frmt_sentinel2.html? What is your GDAL version?
– user30184
Apr 9 at 9:37
I use sentinel 1A and 1B images. My result look like L1B subdataset at the bottom of your link. I have the 2.2.2 gdal version on python 2.7.14.
– marc
Apr 9 at 13:20
which sentinel product are you downloading? sentinel 2 is provided in different levels of preprocessing.
– Leo
Apr 9 at 8:59
which sentinel product are you downloading? sentinel 2 is provided in different levels of preprocessing.
– Leo
Apr 9 at 8:59
I take sentinel images on the esa website. When i use gdalinfo on a sentinel images i have this type of result :
Size is 26178, 16870 Coordinate System is ' GCP Projection = GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] GCP[ 0]: Id=1, Info= (0,0) -> (11.6038164704897,-8.78663832897941,-1.14552676677704e-05)
– marc
Apr 9 at 9:09
I take sentinel images on the esa website. When i use gdalinfo on a sentinel images i have this type of result :
Size is 26178, 16870 Coordinate System is ' GCP Projection = GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] GCP[ 0]: Id=1, Info= (0,0) -> (11.6038164704897,-8.78663832897941,-1.14552676677704e-05)
– marc
Apr 9 at 9:09
You mean that for you gdalinfo shows something different than in the examples in gdal.org/frmt_sentinel2.html? What is your GDAL version?
– user30184
Apr 9 at 9:37
You mean that for you gdalinfo shows something different than in the examples in gdal.org/frmt_sentinel2.html? What is your GDAL version?
– user30184
Apr 9 at 9:37
I use sentinel 1A and 1B images. My result look like L1B subdataset at the bottom of your link. I have the 2.2.2 gdal version on python 2.7.14.
– marc
Apr 9 at 13:20
I use sentinel 1A and 1B images. My result look like L1B subdataset at the bottom of your link. I have the 2.2.2 gdal version on python 2.7.14.
– marc
Apr 9 at 13:20
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "79"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
marc is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318208%2fwhy-gdal-does-not-find-gcps-coordinates-on-sentinel-images%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
marc is a new contributor. Be nice, and check out our Code of Conduct.
marc is a new contributor. Be nice, and check out our Code of Conduct.
marc is a new contributor. Be nice, and check out our Code of Conduct.
marc is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318208%2fwhy-gdal-does-not-find-gcps-coordinates-on-sentinel-images%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
which sentinel product are you downloading? sentinel 2 is provided in different levels of preprocessing.
– Leo
Apr 9 at 8:59
I take sentinel images on the esa website. When i use gdalinfo on a sentinel images i have this type of result :
Size is 26178, 16870 Coordinate System is ' GCP Projection = GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] GCP[ 0]: Id=1, Info= (0,0) -> (11.6038164704897,-8.78663832897941,-1.14552676677704e-05)
– marc
Apr 9 at 9:09
You mean that for you gdalinfo shows something different than in the examples in gdal.org/frmt_sentinel2.html? What is your GDAL version?
– user30184
Apr 9 at 9:37
I use sentinel 1A and 1B images. My result look like L1B subdataset at the bottom of your link. I have the 2.2.2 gdal version on python 2.7.14.
– marc
Apr 9 at 13:20