Advertisement
Guest User

Ejercicio 1.3 - Taller MapProxy - CFP 2014

a guest
Apr 5th, 2014
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.50 KB | None | 0 0
  1. services:
  2.   demo:
  3.   tms:
  4.   wms:
  5.     srs: ['EPSG:4326', 'EPSG:3857', 'EPSG:25830', 'EPSG:900913']
  6.     image_formats: ['image/jpeg','image/png']
  7.     md:
  8.       title: Taller de MapProxy Ejercicio 1
  9.       abstract: Taller de demostración de MapProxy
  10.       contact:
  11.         person: Jorge Sanz y Pedro-Juan Ferrer
  12.         position: geoinquietos
  13.  
  14. layers:
  15.   - name: icv
  16.     title: Ortofoto del ICV 5m
  17.     sources: [icv_cache]
  18.   - name: osm-valencia
  19.     title: OSM de la zona de Valencia
  20.     sources: [osm_cache]
  21.  
  22. caches:
  23.   icv_cache:
  24.     grids: [merca_valencia, geo_valencia]
  25.     sources: [icv_wms]
  26.     format: 'image/jpeg'
  27.   osm_cache:
  28.     sources: [osm_tiles]
  29.  
  30. sources:
  31.   icv_wms:
  32.     type: wms
  33.     supported_formats: ['image/jpeg']
  34.     req:
  35.       url: http://terramapas.icv.gva.es/odcv05_etrs89h30_2010
  36.       layers: odcv05_etrs89h30_2010
  37.     supported_srs: ['EPSG:4326','EPSG:25830']
  38.     coverage:
  39.       bbox: [-0.45, 39.26, -0.26, 39.56]
  40.       bbox_srs: 'EPSG:4326'
  41.   osm_tiles:
  42.     type: tile
  43.     url: http://c.tile.openstreetmap.org/%(tms_path)s.%(format)s
  44.     grid: osm_grid
  45.     coverage:
  46.       bbox: [-0.45, 39.26, -0.26, 39.56]
  47.       bbox_srs: 'EPSG:4326'
  48.  
  49. grids:
  50.   merca_valencia:
  51.     base: GLOBAL_MERCATOR
  52.     bbox: [-0.45, 39.26, -0.26, 39.56]
  53.     bbox_srs: 'EPSG:4326'
  54.     min_res: 2000
  55.     max_res: .5
  56.  
  57.   geo_valencia:
  58.     base: GLOBAL_GEODETIC
  59.     bbox: [-0.45, 39.26, -0.26, 39.56]
  60.     bbox_srs: 'EPSG:4326'
  61.  
  62.   osm_grid:
  63.     srs: EPSG:900913
  64.     origin: nw
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement