9

In QGIS software, a vector layer has "attribute" but the name length is limited to only 10 Characters.

Is there any method to name an "attribute" to a longer name? (e.g. attribute name "building name" becomes "building n")

example1

My layer define dialog window is as below

example2

Taras
  • 32,823
  • 4
  • 66
  • 137
Xianlin
  • 487
  • 7
  • 15

1 Answers1

18

This is a (bad) limitation of the ESRI Shapefile format.

Not much you can do with it but change the underlying format, maybe try SpatiaLite.

Nathan W
  • 34,706
  • 5
  • 97
  • 148
  • 4
    Just for clarity, the limitation is directly tied to the DBF file format, which the shapefile format happens to implement. As stated above, if you need/want longer file names, you'll need to choose a different storage format. – RyanKDalton Mar 13 '12 at 15:09