Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Example xml response

Code Block
<?xml version="1.0" encoding="UTF-8"?>
<WMS_Capabilities xmlnsxsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd" xmlns:xsi="http://www.w3opengis.org/2001/XMLSchema-instancenet/wms" xmlns:xlinkxsi="http://www.w3.org/19992001/xlinkXMLSchema-instance" xsixmlns:schemaLocationxlink="http://www.opengisw3.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsdorg/1999/xlink" version="1.3.0">
	    <Service>
		        <Name>WMS</Name>
		<Title>
Delft-FEWS         <Title>Delft-FEWS Web Mapping Service with time support (WMS-T)
</Title>
	    </Service>
	    <Capability>
		<Request>
			<GetCapabilities>
				        <Request>
            <GetCapabilities>
                <Format>application/xml</Format>
				                <Format>application/json</Format>
			            </GetCapabilities>
			<GetMap>
				<Format>image/png</Format>
			</GetMap>
		</Request>
		<Exception>
			<Format>XML</Format>
		</Exception>
		<Layer>
			            <GetMap>
                <Format>image/png</Format>
            </GetMap>
        </Request>
        <Exception>
            <Format>XML</Format>
        </Exception>
        <Layer>
            <Title>Delft-FEWS Web Mapping Service layers</Title>
			            <CRS>EPSG:3857</CRS>
			            <BoundingBox CRS="EPSG:3857" maxx="20037508.342789" maxy="20037508.342789" minx="-20037508.342789" miny="-20037508.342789"></>
			<Layer>
				<Name>Satellite precipitation</Name>
				<Title>Satellite precipitation</Title>
				BoundingBox>
            <Layer>
                <Name>Goddard NASA Monthly Historical Grids</Name>
                <Title></Title>
                <Layer queryable="1">
					<Name>Precipitation GPM [mm]</Name>
					<Title/>
					<Dimension units="ISO8601" name="time">
2018-10-05T12:30:00Z,2018-10-05T13:00:00Z,2018-10-05T13:30:00Z,2018-10-05T14:00:00Z,2018-10-05T14:30:00Z,2018-10-05T15:00:00Z,2018-10-05T15:30:00Z
</Dimension>
				</Layer>
			</Layer>
		</Layer>
	</Capability>
</WMS_Capabilities>

Example JSON response

                    <Name>giss_e2_h_grid_monthly_historical_nat</Name>
                    <Title>Goddard NASA historical Natural surface temperature</Title>
                    <KeywordList>
                        <Keyword>parameterId=T.hindcast.mean.global.historicalNat</Keyword>
                        <Keyword>locationId=giss_e2_h_grid</Keyword>
                        <Keyword>moduleInstanceId=ImportForecastGissE2HHistoricalNatGrid</Keyword>
                        <Keyword>timeSeriesType=EXTERNAL_FORECASTING</Keyword>
                        <Keyword>forecastTime=1850-01-16T12:00:00Z</Keyword>
                    </KeywordList>
                    <Dimension units="ISO8601" name="time" default="1850-12-16T12:00:00Z">1850-01-16T12:00:00Z,1850-02-15T00:00:00Z,1850-03-16T12:00:00Z,1850-04-16T00:00:00Z,1850-05-16T12:00:00Z,1850-06-16T00:00:00Z,1850-07-16T12:00:00Z,1850-08-16T12:00:00Z,1850-09-16T00:00:00Z,1850-10-16T12:00:00Z,1850-11-16T00:00:00Z,1850-12-16T12:00:00Z</Dimension>
                </Layer>
            </Layer>
        </Layer>
    </Capability>
</WMS_Capabilities>

Example JSON response

Code Block
{
  "title" : "Spatial Display",
  "layers" : [ {
    "name" : "giss_e2_h_grid_monthly_historical_nat",
    "title" : "Goddard NASA historical Natural surface temperature",
    "groupName" : "Goddard NASA Monthly Historical Grids",
    "keywordList" : [ {
      "parameterId" : "T.hindcast.mean.global.historicalNat",
      "locationId" : "giss_e2_h_grid",
      "moduleInstanceId" : "ImportForecastGissE2HHistoricalNatGrid",
      "timeSeriesType" : "EXTERNAL_FORECASTING",
      "forecastTime" : "1850-01-16T12:00:00Z"
    } ],
    "timesDefault" : "1850-12-16T12:00:00Z
Code Block
{
  "title" : "Loire Spatial Data Display",
  "layers" : [ {
    "name" : "Precipitation GPM [mm]",
    "title" : "",
    "groupNametimes" : [ "Satellite precipitation",
    "groupTitle" : "Satellite precipitation",
    "times" : [ "2018-10-05T12:301850-01-16T12:00:00Z", "1850-02-15T00:00:00Z", "1850-03-16T12:00:00Z", "1850-04-16T00:00:00Z", "1850-05-16T12:00:00Z", "1850-06-16T00:00:00Z", "20181850-1007-05T1316T12:00:00Z", "20181850-1008-05T1316T12:3000:00Z", "20181850-1009-05T1416T00:00:00Z", "20181850-10-05T1416T12:3000:00Z", "20181850-1011-05T1516T00:00:00Z", "20181850-1012-05T1516T12:3000:00Z" ]
  } ]
}

 

Example request for getting capabilities of multiple forecasts (since 2019.02).

...