#1 Thu 12 January 2012 10:19
- paulcarrot
- Participant occasionnel
- Lieu: saint-etienne
- Date d'inscription: 14 Nov 2005
- Messages: 42
[GDAL] gdal_grid problème
Bonjour,
J'ai un souci avec GDAL_GRID qui n'effectue pas la commande d'interpolation suivante sans afficher d'erreur...
Code:
gdal_grid -a invdist:power=2.0:smoothing=1.0 -txe 851543.5 855518.5 -tye 6506375.5 6508350.5 -outsize 3975 1975 -of GTiff -ot Float64 -l Poll_J730_modif D:\tout_venant\Simul_Poll\Simul_Poll\txt\Poll_J730_modif.vrt D:\tout_venant\Simul_Poll\Simul_Poll\txt\Poll_J730_modif.tiff
Le fichier vrt correspondant :
Code:
<OGRVRTDataSource> <OGRVRTLayer name="Poll_J730_modif"> <SrcDataSource>D:\tout_venant\Simul_Poll\Simul_Poll\txt\Poll_J730_modif.vrt</SrcDataSource> <GeometryType>wkbPoint</GeometryType> <GeometryField encoding="PointFromColumns" x="x" y="y" z="z"/> </OGRVRTLayer> </OGRVRTDataSource>
et un extrait du fichier en x, y, z
Code:
x,y,z 855418.5,6507300.5,0.211673498 855443.5,6507300.5,0.0704143271 855468.5,6507300.5,0.00350354449 855493.5,6507300.5,0.000143235928
J'ai également essayé
Code:
ogrinfo -ro -al D:\tout_venant\Simul_Poll\Simul_Poll\txt\Poll_J730_modif.vrt
Mais rien ne se passe, et aucune erreur n'est affichée...
voila, si quelqu'un peut me mettre sur la voie...
Dernière modification par paulcarrot (Thu 12 January 2012 10:56)
Hors ligne
#2 Thu 12 January 2012 23:46
- rouault
- Participant assidu
- Date d'inscription: 26 Apr 2009
- Messages: 168
Re: [GDAL] gdal_grid problème
Il y a probablement un bug dans ton VRT car le contenu de l'élément <SrcDataSource> pointe vers un VRT (lui-même) alors qu'il devrait vraisemblablement pointer ver le CSV.
Hors ligne
#3 Fri 13 January 2012 11:14
- paulcarrot
- Participant occasionnel
- Lieu: saint-etienne
- Date d'inscription: 14 Nov 2005
- Messages: 42
Re: [GDAL] gdal_grid problème
Merci beaucoup, cela viens exactement du vrt qui s'appelle lui même.
bonne journée
Hors ligne