Bonjour,
il y a un plugin Photoshop ici:
http://www.resmap.com/instructions/photoshop.htmlOn ne peut pas ouvrir les grosses cartes mais les pixels sont affichés
Dans ton fichier map il s'agit de cette ligne:
MMPXY,3,46847,53759X=Largeur=46847
Y=Hauteur=53759
Mais ça sont en réalité les points de calibrage qui ne sont pas forcément les coins de la carte.
Tu peux utiliser cette fonction gdalinfo par example:
gdalinfo "D:\Italie 25'000 ECW\Abruzzo_IGM_25000\CAbruzzo IGM 25000.ecw"Elle est installée dans le même dossier que gdal_translate.exe
Tu trouveras la liste des fonctions installées et leurs paramètres ici:
http://www.gdal.org/gdal_utilities.htmlPenses encore à la taille de la carte que tu vas exporter. Si tu exportes une carte ecw entiére, ça peut faire plusieurs Gb.
D'où l'intérêt d'exporter en plusieurs morceaux.
Tu peux créer des fichiers .bat et insérer tes command lines dedans, par exemple pour une carte de : 64000 x 56000 pixels
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 00000 00000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 01.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 16000 00000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 02.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 32000 00000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 03.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 48000 00000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 04.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 00000 14000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 05.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 16000 14000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 06.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 32000 14000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 07.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 48000 14000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 08.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 00000 28000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 09.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 16000 28000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 10.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 32000 28000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 11.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 48000 28000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 12.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 00000 42000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 13.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 16000 42000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 14.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 32000 42000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 15.tif"
gdal_translate.exe -of GTiff -co TFW=YES -srcwin 48000 42000 16000 14000 "C:\Abruzzo IGM 25000.ecw" "C:\Abruzzo IGM 25000 16.tif"Alain