/usr/share/osgearth/maps/arcgisonline-utm.earth is in osgearth-data 2.4.0+dfsg-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <!--
osgEarth Sample
This example shows how to pull map tiles from an ESRI ArcGIS Server.
Please note that use of ESRI's free maps is subject to certain restrictions:
http://resources.esri.com/arcgisonlineservices/index.cfm?fa=content
-->
<map name="ESRI ArcGIS Online UTM" type="projected" version="2">
<options>
<!--Specify the profile to use since we want to reproject to UTM-->
<profile srs="+proj=utm +zone=17 +ellps=GRS80 +datum=NAD83 +units=m +no_defs"
xmin="560725.500" ymin="4385762.500"
xmax="573866.500" ymax="4400705.500"/>
<lighting>false</lighting>
</options>
<image name="arcgis-world-imagery" driver="arcgis">
<url>http://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer</url>
<nodata_image>http://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/100/0/0.jpeg</nodata_image>
</image>
<image name="arcgis-transportation" driver="arcgis">
<url>http://services.arcgisonline.com/ArcGIS/rest/services/Reference/World_Transportation/MapServer</url>
</image>
<options>
<lighting>false</lighting>
<terrain>
<min_tile_range_factor>9</min_tile_range_factor>
</terrain>
</options>
</map>
|