Update to Worldwind release 0.4.0
[worldwind-tracker.git] / config / DataFileCache.xml
blobbae143ea7e24595fce50c0aa98cfbb5dccfc32b1
1 <?xml version="1.0"?>
2 <!-- World Wind data-file cache configuration -->
3 <!--$Id: DataFileCache.xml 3336 2007-10-19 04:06:17Z tgaskins $-->
4 <dataFileCache>
5     <readLocations>
6         <!-- These locations are all searched, in the given order, when World Wind needs a data or image file. -->
7         <!-- The write location selected from the writeLocations list is searched before these locations. -->
8         <location property="gov.nasa.worldwind.platform.alluser.cache" appDir="MyAppDir" wwDir="WorldWindData"/>
9         <location property="gov.nasa.worldwind.platform.user.cache" wwDir="WorldWindData"/>
10         <location property="user.dir" wwDir="WorldWindData"/>
11         <location property="user.home" wwDir="WorldWindData"/>
12     </readLocations>
13     <writeLocations>
14         <!-- The first writable location in this list is used as the session's data and image file cache. -->
15         <!-- If a location does not exist and the create attribute is "true", an attempt is made to create it.-->
16         <!-- If that creation attempt succeeds, the location becomes the first writable location and thus is used. -->
17         <!-- Only the first location that's writable or creatable is used. Subsequent locations are ignored. -->
18         <!-- The chosen writable location is also the first search location, searched prior to any readLocations. -->
19         <location property="gov.nasa.worldwind.platform.alluser.cache" wwDir="WorldWindData" create="true"/>
20         <location property="gov.nasa.worldwind.platform.user.cache" wwDir="WorldWindData" create="true"/>
21         <location property="java.io.tmpdir" wwDir="WorldWindData" create="true"/>
22     </writeLocations>
23 </dataFileCache>