Changes between Version 126 and Version 127 of GIS/InstallationGuidelines/Linux


Ignore:
Timestamp:
03/16/11 13:24:44 (14 years ago)
Author:
Fran Boon
Comment:

Fix for MapProxy wrapping dateLine

Legend:

Unmodified
Added
Removed
Modified
  • GIS/InstallationGuidelines/Linux

    v126 v127  
    761761}}}
    762762  * http://mapproxy.org/docs/1.0.0/configuration.html
     763  * http://lists.osgeo.org/pipermail/mapproxy/2010-December/000301.html
     764{{{
     765vim /usr/share/proj/epsg
     766# Google Maps Global Mercator
     767<900913> +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs +over
     768}}}
    763769  * http://mapproxy.org/docs/1.0.0/configuration_examples.html
    764770{{{
    765771vim /home/mapproxy/etc/mapproxy.yaml
    766 
    767 }}}
     772layers:
     773  - name: TRMM_3B42_V6_DAILY
     774    title: Rainfall (1 day)
     775    sources: [TRMM_3B42_V6_DAILY_cache, TRMM_3B42_V6_DAILY]
     776  - name: TRMM_3B42_V6_10_DAY
     777    title: Rainfall (10 days)
     778    sources: [TRMM_3B42_V6_10_DAY_cache, TRMM_3B42_V6_10_DAY]
     779caches:
     780  TRMM_3B42_V6_DAILY_cache:
     781    grids: [GLOBAL_MERCATOR, global_geodetic_sqrt2]
     782    #grids: [900913]
     783    sources: [TRMM_3B42_V6_DAILY]
     784  TRMM_3B42_V6_10_DAY_cache:
     785    grids: [GLOBAL_MERCATOR, global_geodetic_sqrt2]
     786    #grids: [900913]
     787    sources: [TRMM_3B42_V6_10_DAY]
     788sources:
     789  TRMM_3B42_V6_DAILY:
     790    type: wms
     791    supported_srs: ['EPSG:4326']
     792    req:
     793      url: http://gdata2.sci.gsfc.nasa.gov/daac-bin/wms_trmm?
     794      layers: TRMM_3B42_V6_DAILY
     795      transparent: true
     796  TRMM_3B42_V6_10_DAY:
     797    type: wms
     798    supported_srs: ['EPSG:4326']
     799    req:
     800      url: http://gdata2.sci.gsfc.nasa.gov/daac-bin/wms_trmm?
     801      layers: TRMM_3B42_V6_10_DAY
     802      transparent: true
     803}}}
     804
    768805
    769806----