Converting GIS features into multiple CAD layers based on attribute values

You can do it in AutoCAD Map with Query and Alter Properties.

  1. export you data to shp file
  2. import it into AutoCAD Map with attribute data in Object Table
  3. save your file as dwg and close it
  4. open empty dwg file and open Task plane (MAPWSPACE) - Map Explorer
  5. attach the drawing in which you imported your shp file
  6. define a query with Location:ALL ; Query mode: Draw
  7. open Alter Properties
  8. select Layer
  9. in Expression field write (strcat :fleid1@objectTable " " :field2@objectTable)
  10. press Add, then OK then Execute Query
  11. and thats it

filed1 and field2 are names of attribute columns in shapefile (in your example they are Diameter and Material) objectTable is name of you shapefile (this can be something else, but if you left as a default value in time of import it will be name of the shapefile)

I tested it on my example and it works so i think it will work for you also. I hope it helps.


In map 3d 2010 you can set the import to use data field for layer name. however if you have a size and type in two differing fields you would still not be able to accomplish exactly what you are talking about without another step of creating a composite field with size and type in it. If on the other hand your data does not have concidental values (i.e. 8" ductile, and 8" PVC) then you can accomplish. To describe further ... on the first page of your import dialog (after selecting the import file type) select the drawing layer elipsis... to the right of the default. and select use data field for layer name, select the data field you want to use and walla! Of course if you have enterprise data this would add another step to get your data into shape to begin with. If you add FME to the mix then you can accomplish in sooo many ways! as described in previous post or even with my solution by selecting your enterprise data type in map. hope this helps


You could set up a model that runs through the various selections, and then exports to CAD. All that would be required then is to run the model when a request comes in, or you could export it to a Python script and automate it to run on a set schedule. It will require some setup to get the model working, but it's time well spent. Here is a link to ESRI's help on working with models.