Raster vers autre format (Conversion)

Récapitulatif

Convertit un ou plusieurs formats de jeux de données raster pris en charge par ArcGIS au format BIL, BIP, BMP, BSQ, ENVI DAT, GIF, GRID, ERDAS IMAGINE, JPEG, JPEG 2000, PNG ou TIFF, ou en jeu de données raster de géodatabase.

Utilisation

Syntaxe

RasterToOtherFormat_conversion (Input_Rasters, Output_Workspace, {Raster_Format})
ParamètreExplicationType de données
Input_Rasters
[Input_Rasters,...]

Jeux de données raster en entrée à convertir.

Raster Dataset
Output_Workspace

Emplacement de stockage des jeux de données raster convertis.

Workspace ;Raster Catalog
Raster_Format
(Facultatif)

Format du jeu de données raster en sortie.

  • BILFichier ESRI Band Interleaved by Line.
  • BIPFichier ESRI Band Interleaved by Pixel.
  • BMPFormat de jeu de données raster graphique bitmap.
  • BSQFichier ESRI Band Sequential.
  • DATFichier ENVI DAT
  • GIFFormat GIF (Graphic Interchange Format) pour jeux de données raster
  • GRIDFormat de jeu de données raster GRID d'ESRI.
  • Image IMAGINEFormat de données raster ERDAS IMAGINE
  • JP2000Format de jeu de données raster JPEG 2000
  • JPEGFormat de jeu de données raster Joint Photographic Experts Group
  • PNGFormat de jeu de données raster Portable Network Graphic
  • TIFFFormat TIFF (Tag Image File Format) pour jeux de données raster
String

Exemple de code

Exemple 1 d'utilisation de l'outil RasterToOtherFormats (fenêtre Python)

Cet exemple convertit plusieurs rasters en entrée de formats différents en rasters en sortie de format identique.

import arcpy
from arcpy import env
env.workspace = "c:/data/PrjWorkspace/RasGP"
arcpy.RasterToOtherFormat_conversion("test.tif;test2.tif;test3.tif",\
                                     "OtherFormat","BIL")
Exemple 2 d'utilisation de l'outil RasterToOtherFormats (script autonome)

Cet exemple convertit plusieurs rasters en entrée de formats différents en rasters en sortie de format identique.

##=========================
##Raster To Other Format
##Usage: RasterToOtherFormat_conversion Input_Rasters;Input_Rasters... Output_Workspace {TIFF | BIL | BIP 
##                                      | BMP | BSQ | ENVI DAT | GIF | GRID | IMAGINE Image | JP2000 | JPEG | PNG}
try:
    import arcpy
    arcpy.env.workspace = r"\\MyMachine\PrjWorkspace\RasGP"
    ##Convert Multiple Raster Dataset to FGDB
    arcpy.RasterToOtherFormat_conversion("test1;test2.tif;test3.img","OtherFormat.gdb","")
    ##Load Raster Catalog
    arcpy.RasterToOtherFormat_conversion("test.tif;test2.tif;test3.tif","OtherFormat","BIL")
except:
    print "Raster To Other Format exsample failed."
    print arcpy.GetMessages()

Environnements

Rubriques connexes

Informations de licence

ArcView : Oui
ArcEditor : Oui
ArcInfo : Oui

7/10/2012