Hi
I am attempting to convert a land use polygon gdb to raster for inclusion in a suitability analysis. Am receiving the folllowing errors
The data looks like the following:
Do I need to remove all the spaces from the description column? If so, what is the quickest way of doing this?
Thanks in advance!
Solved! Go to Solution.
@DamonJohnson use field calculator with the python scripting selected and use the .replace function
!field_name!.replace(" ","_")
This will replace all spaces with underscores
Polygon to raster... the preferred raster format is a *.tif file in a folder.
Also, paths with spaces and punctuation (eg. dashes etc) are just asking for trouble
@DamonJohnson use field calculator with the python scripting selected and use the .replace function
!field_name!.replace(" ","_")
This will replace all spaces with underscores