Changes between Version 1 and Version 2 of USGS_PDF_Topo


Ignore:
Timestamp:
Sep 23, 2011, 1:16:54 AM (13 years ago)
Author:
EliL
Comment:

Add detail about determining file to download based on WMS GetFeatureInfo Request

Legend:

Unmodified
Added
Removed
Modified
  • USGS_PDF_Topo

    v1 v2  
    5757= Notes =
    5858 * There is probably a more elegant way to grab the NEATLINE for use.
    59  * This could be combined with gdalinfo to determine which file to download. 
     59 * This could be combined with gdalinfo, wget, or curl to determine which file to download.  (This is not the same file listed above but a nearby historical Topo)
    6060{{{
    61 gdalinfo "WMS:
     61wget "http://usgs-catalog4.srv.mst.edu/cgi-bin/gda?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetFeatureInfo&BBOX=-125.317789,43.823383,-123.427332,45.547829&SRS=EPSG:4326&WIDTH=912&HEIGHT=831&LAYERS=gdagfigeopdfs&STYLES=&FORMAT=image/jpeg&QUERY_LAYERS=gdagfigeopdfs&INFO_FORMAT=text/plain&X=629&Y=335"
    6262}}}
     63
     64{{{
     65curl -s "http://usgs-catalog4.srv.mst.edu/cgi-bin/gda?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetFeatureInfo&BBOX=-125.317789,43.823383,-123.427332,45.547829&SRS=EPSG:4326&WIDTH=912&HEIGHT=831&LAYERS=gdagfigeopdfs&STYLES=&FORMAT=image/jpeg&QUERY_LAYERS=gdagfigeopdfs&INFO_FORMAT=text/plain&X=629&Y=335" | grep DOWNLOAD
     66}}}
     67
     68Not sure how to GetFeatureInfo with gdalinfo, here is a general GetCapabilities:
     69{{{
     70gdalinfo "WMS:http://usgs-catalog4.srv.mst.edu/cgi-bin/gda?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetFeatureInfo&BBOX=-125.317789,43.823383,-123.427332,45.547829&SRS=EPSG:4326&LAYERS=gdagfigeopdfs&STYLES=&QUERY_LAYERS=gdagfigeopdfs&INFO_FORMAT=text/plain&X=629&Y=335"
     71}}}