Versions Compared

Key

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

...

Example of the grids.xml file for the KNMI Radar grid products

Info
titleKNMI_Radar grids.xml definition

The firstCellCenter coordinates have been changed on this Wiki page July 2020, based on a new check of the netCDF file for the complete Radar grid as returned by WIWB. It is unclear if/when the old firstCellCenter coordinates were valid 


Code Block
languagexml
<?xml version="1.0" encoding="UTF-8"?>
<grids xmlns="http://www.wldelft.nl/fews" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wldelft.nl/fews http://fews.wldelft.nl/schemas/version1.0/grids.xsd">
	<regular locationId="knmi_radar_1km">
		<rows>765</rows>
		<columns>700</columns>
		<polarStereographic>
			<originLatitude>90</originLatitude>
			<originLongitude>0</originLongitude>
			<trueScalingLatitude>60</trueScalingLatitude>
			<equatorRadius>6378137</equatorRadius>
			<poleRadius>6356752</poleRadius>
		</polarStereographic>
		<!--<firstCellCenter>
			<x>500</x>
			<y>-3650500</y>
			<z>0</z>
		</firstCellCenter>-->
		<firstCellCenter>
			<x>11000</x>
			<y>-3640000</y>
			<z>0</z>
		</firstCellCenter>
		<xCellSize>1000</xCellSize>
		<yCellSize>1000</yCellSize>
	</regular>
</grids>

...