-
Book Overview & Buying
-
Table Of Contents
Programming ArcGIS with Python Cookbook, Second Edition
By :
XML files were designed as a way to transport and store data. They are platform-independent since the data is stored in a plain text file. Although similar to HTML, XML differs from HTML since the former is designed for display purposes, whereas XML data is designed for data. XML files are sometimes used as an interchange format for GIS data that is going between various software systems.
XML documents have a tree-like structure that is composed of a root element, child elements, and element attributes. Elements are also called nodes. All XML files contain a root element. This root element is the parent to all other elements or child nodes. The following code example illustrates the structure of an XML document. Unlike HTML files, XML files are case sensitive:
<root> <child att="value"> <subchild>.....</subchild> </child> </root>
Python provides several programming modules that you can use to process XML files...
Change the font size
Change margin width
Change background colour