Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Include Page
NETCDF:menuNETCDF:
menu
  1. CF standard: add a dummy variable crs and add all grid mapping related meta-data as attributes.
  2. The ADAGUC WMS/WCS software requires some additional attributes that contain the same information as the CF grid_mapping attributes: proj4_params and epsg_code. In the Dutch National Model and Data Centre NMDC.eu ADAGUC is used as a central component, so for NMDC these additional attributes are highly recommended.
    Code Block
    netcdf test_map {
    variables:
            double var(n);
                    var:proj4_params = "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs" ;
                    var:EPSG_code = "EPSG:4326";
    }
    

...