Soldato
- Joined
- 18 Oct 2002
- Posts
- 4,898
At work we receive files XML from a number of external bodies (loosely) to an agreed schema that are loaded into our case management system. The files contain information about jobs that have been carried out at an address.
As part of the loading process the addresses are matched to land and property gazetteer. The loader is provided by our software supplier and we don't really have any control over it. If an address doesn't match, it is not processed and has to be matched manually or rejected.
WorkAddressDetails>
- <WorkAddress>
<NumberName>1</NumberName>
<Street>Any Street</Street>
<TownCity>Any Town</TownCity>
<PostCode>AB1 2CD</PostCode>
</WorkAddress>
Problem we have is that the match rate is only about 20% because many of the jobs omit the County tag from the address. If I add this in manually using xmlEditor, the match rate jumps to 80% (the other 20% are due to spelling errors and duff addresses).
What I need is a tool to go through each file and add the County, if it's not already present. All the jobs will the in the same county.
WorkAddressDetails>
- <WorkAddress>
<NumberName>1</NumberName>
<Street>Any Street</Street>
<TownCity>Any Town</TownCity>
<County>Any County</County>
<PostCode>AB1 2CD</PostCode>
</WorkAddress>
Are there any tools that will allow me to do this automatically? I'm not a programmer other than dabbling a bit in VBA when I have to, so something off the shelf would be good.
As part of the loading process the addresses are matched to land and property gazetteer. The loader is provided by our software supplier and we don't really have any control over it. If an address doesn't match, it is not processed and has to be matched manually or rejected.
WorkAddressDetails>
- <WorkAddress>
<NumberName>1</NumberName>
<Street>Any Street</Street>
<TownCity>Any Town</TownCity>
<PostCode>AB1 2CD</PostCode>
</WorkAddress>
Problem we have is that the match rate is only about 20% because many of the jobs omit the County tag from the address. If I add this in manually using xmlEditor, the match rate jumps to 80% (the other 20% are due to spelling errors and duff addresses).
What I need is a tool to go through each file and add the County, if it's not already present. All the jobs will the in the same county.
WorkAddressDetails>
- <WorkAddress>
<NumberName>1</NumberName>
<Street>Any Street</Street>
<TownCity>Any Town</TownCity>
<County>Any County</County>
<PostCode>AB1 2CD</PostCode>
</WorkAddress>
Are there any tools that will allow me to do this automatically? I'm not a programmer other than dabbling a bit in VBA when I have to, so something off the shelf would be good.