ncwms | Web Map Service for displaying environmental data | Map library

 by   Reading-eScience-Centre Java Version: 2.5.2 License: Non-SPDX

kandi X-RAY | ncwms Summary

kandi X-RAY | ncwms Summary

ncwms is a Java library typically used in Institutions, Learning, Education, Geo, Map applications. ncwms has no bugs, it has no vulnerabilities, it has build file available and it has low support. However ncwms has a Non-SPDX License. You can download it from GitHub, Maven.

ncWMS is a Web Map Service for geospatial data that are stored in CF-compliant NetCDF files. The intention is to create a WMS that requires minimal configuration: the source data files should already contain most of the necessary metadata. ncWMS is developed and maintained by the Reading e-Science Centre (ReSC) at the University of Reading, UK. ncWMS v2 is built on top of the EDAL libraries developed by ReSC.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              ncwms has a low active ecosystem.
              It has 46 star(s) with 23 fork(s). There are 15 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              There are 28 open issues and 46 have been closed. On average issues are closed in 46 days. There are 1 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of ncwms is 2.5.2

            kandi-Quality Quality

              ncwms has 0 bugs and 0 code smells.

            kandi-Security Security

              ncwms has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              ncwms code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              ncwms has a Non-SPDX License.
              Non-SPDX licenses can be open source with a non SPDX compliant license, or non open source licenses, and you need to review them closely before use.

            kandi-Reuse Reuse

              ncwms releases are available to install and integrate.
              Deployable package is available in Maven.
              Build file is available. You can build the component from source.
              Installation instructions are not available. Examples and code snippets are available.
              ncwms saves you 1741 person hours of effort in developing the same functionality from scratch.
              It has 3853 lines of code, 144 functions and 48 files.
              It has medium code complexity. Code complexity directly impacts maintainability of the code.

            Top functions reviewed by kandi - BETA

            kandi has reviewed ncwms and discovered the below as its top functions. This is intended to give you an instant insight into ncwms implemented functionality, and help decide if they suit your requirements.
            • Initialize the WDMGridFactory
            • Read the configuration from the given file
            • Deserialize NcwmsConfig from a Reader
            • Returns a string representation of this object
            • Returns a String representation of the email
            • Returns a string representation of this class
            • Display a GET request
            • Display the edit variables page
            • Display the status page
            • Returns a JSON representation of the dataset
            • Decodes the state of a dataset
            • Get the front page
            • Gets a dataset title
            • Initialize the bundle
            • Gets the dataset
            • Is queryable?
            • Check if the layer is downloadable
            • Checks if the layer is disabled
            • Initialize the controller
            • Returns the layer metadata
            • Handles a POST request
            • Dispatch a WMS request
            • Override this method to return a dataset for the given id
            • Gather the statistics about all caches
            • Initializes the bundle
            • Initialize the servlet
            Get all kandi verified functions for this library.

            ncwms Key Features

            No Key Features are available at this moment for ncwms.

            ncwms Examples and Code Snippets

            ncWMS2,Licence
            Javadot img1Lines of Code : 28dot img1License : Non-SPDX (NOASSERTION)
            copy iconCopy
            Copyright (c) 2010 The University of Reading
            All rights reserved.
            
            Redistribution and use in source and binary forms, with or without
            modification, are permitted provided that the following conditions
            are met:
            1. Redistributions of source code must r  

            Community Discussions

            QUESTION

            Geoserver ncWMS extension, GetTimeseries doesn't work
            Asked 2020-Jan-10 at 18:06

            I am trying to use the ncWMS extension with Geoserver 2.16. When I use the GetTimeseries endpoint I get an error:

            ...

            ANSWER

            Answered 2020-Jan-10 at 18:06

            I suspect you have mismatched the plugin version and your GeoServer version - looking at the issue that added that function (found from the PR) it should work from 2.16.1.

            If you want to stay on 2.16.0 then you need a plugin build dated before 11th Sept 2019 (and we seem to have no archive before the start of the year), or build it from the source code.

            Source https://stackoverflow.com/questions/59654177

            QUESTION

            How to get Contours in ncWMS thredds vertical section for getVerticalSection request
            Asked 2018-Mar-23 at 23:36

            How to get Contours in ncWMS thredds vertical section for getVerticalSection request. I need to obtain some pngs with contours on them for a project using thredds 5.0.0, I am unable to find find any API parameter for it.

            ...

            ANSWER

            Answered 2018-Mar-23 at 21:43

            The THREDDS Data Server (TDS) v5.x uses the edal-java 2.x stack, so it's a little different than ncwms1.2. I think what you want in the new version is a GetTransect request, perhaps something like:

            REQUEST=GetTransect&LAYERS=&CRS=&LINESTRING=&FORMAT=&TIME=&COLORSCALERANGE=&NUMCOLORBANDS=&PALETTE=

            The GetTransect request is described in the GetCapabilities document returned by the ncwms2 service in the TDS. Here is an example using the University of Readings ncwms2 server:

            Note that the new ncwms2 server in TDS v5 is experimental, and not everything between the TDS and ncwms2 is hooked up, so your request may not work. Also, TDS v5 is just now in its first beta release, so bugs unrelated to the new ncwms server may pop up.

            Source https://stackoverflow.com/questions/49421214

            QUESTION

            Thredds getCapabilities for ncWMS server
            Asked 2018-Jan-18 at 17:28

            Thredds Data Server TDS provides getCapabilities for a netCDF file. e.g. http://localhost:8080/thredds/wms/testAll/Filename.nc?service=WMS&version=1.3.0&request=GetCapabilities Here, the filename would be a netCDF dataset present at this location in tomcat.

            tomcat/content/thredds/public/testdata

            Is there a way where I can display all layers getCapabilities document like it is explicitly available by ncWMS server. eg. http://localhost:8080/ncWMS2/wms?SERVICE=WMS&REQUEST=GetCapabilities&VERSION=1.1.1

            ...

            ANSWER

            Answered 2018-Jan-18 at 17:28

            Each dataset on THREDDS has a separate WMS endpoint with separate getCapabilities response.

            So if you wanted to get all the WMS layers from all the datasets on a THREDDS server, you would need to crawl the THREDDS catalog, retrieving all the WMS endpoints, and then query each WMS endpoint individually with GetCapabilities to get all the layers (variables) for each dataset.

            Source https://stackoverflow.com/questions/48316193

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install ncwms

            You can download it from GitHub, Maven.
            You can use ncwms like any standard Java library. Please include the the jar files in your classpath. You can also use any IDE and you can run and debug the ncwms component as you would do with any other Java program. Best practice is to use a build tool that supports dependency management such as Maven or Gradle. For Maven installation, please refer maven.apache.org. For Gradle installation, please refer gradle.org .

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            Install
            Maven
            Gradle
            CLONE
          • HTTPS

            https://github.com/Reading-eScience-Centre/ncwms.git

          • CLI

            gh repo clone Reading-eScience-Centre/ncwms

          • sshUrl

            git@github.com:Reading-eScience-Centre/ncwms.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link