Is there an XML/ML/Entity Relationship for the UO Map?

For example, when using uofiddler I can see:
X: 584 Y: 1460

LandTile:
forest: 0xC7 Altitute: 0

Statics:
flowers: 0xD2B Hue: 0 Altitute: 0
palisade: 0x222 Hue: 0 Altitute: 20

Is there any tool currently that can export that whole map in XML?
<tile>
<coords>
<coordx>584</coordx>
<coordy>1460</coordy>
</coords>
<landtile>
<type>
<name>forest</name>
<tile_info>0xC7</tile_info>
<altitude>0</altitude>
</type>
</landtile>
<statics>
<type>
<name>flowers</name>
<static_info>0xD2B</static_info>
<altitude>0</altitude>
</type>
<type>
<name>palisade</name>
<static_info>0x222</static_info>
<hue>0</hue>
<altitude>20</altitude>
</type>
</statics>
</tile>
 
Back