I'm not sure if anyone else has encountered this problem: Sometimes during the map download if the internet connection gets interrupted and causes the map file not to load completely.
#!/bin/sh # delete files younger than 10 days find . ! -type d -mtime -40 -print -delete # delete files with dates in the 70s find . ! -type d -mtime +11000 -print -delete