ERDDAP / erddap

ERDDAP is a scientific data server that gives users a simple, consistent way to download subsets of gridded and tabular scientific datasets in common file formats and make graphs and maps. ERDDAP is a Free and Open Source (Apache and Apache-like) Java Servlet from NOAA NMFS SWFSC Environmental Research Division (ERD).
Creative Commons Zero v1.0 Universal
84 stars 59 forks source link

problems with WMS service #8

Closed Sammers21 closed 7 years ago

Sammers21 commented 7 years ago

Hello Bob

As you can see on this page

http://40.68.46.120:8080/erddap/wms/erddap_dd09_b52e_bc1c/index.html

says 'To get an image file with a map with a transparent background, use

http://40.68.46.120:8080/erddap/wms/jplMURSST41/request?service=WMS&version=1.3.0&request=GetMap&bbox=-179.99,-89.99,180.0,89.99&crs=EPSG:4326&width=360&height=180&bgcolor=0x808080&layers=jplMURSST41:analysed_sst&styles=&format=image/png&transparent=TRUE ' But when i had tried to open this link in my browser i got error : HTTP Status 404 - Resource not found: /erddap/wms/jplMURSST41/request (unmatched WMS request (2)) screenshot link: http://imgur.com/puqYrGM

I would be very grateful for help!

BobSimons commented 7 years ago

Many of the examples throughout your ERDDAP are based on a bunch of settings in your setup.xml. The griddap example settings start with . The tabledap example settings start with .

You don't have the datasets referenced by the default and in your ERDDAP. The easiest way to fix this is to include those datasets in your ERDDAP by adding this in your datasets.xml

---begin insert

http://coastwatch.pfeg.noaa.gov/erddap/griddap/jplMURSST41 http://coastwatch.pfeg.noaa.gov/erddap/tabledap/pmelTaoDySst

---end insert

I added the etopo datasets because adding those to your ERDDAP will solve other problems.

If you either wait for those datasets to load (within 15 minutes), or flag the datasets, or restart your ERDDAP, those datasets should appear. Then the examples will work.

I hope that helps.

On Mon, Mar 13, 2017 at 2:22 PM, Sammers21 notifications@github.com wrote:

Hello Bob

As you can see on this page

http://40.68.46.120:8080/erddap/wms/erddap_dd09_b52e_bc1c/index.html

says 'To get an image file with a map with a transparent background, use

http://40.68.46.120:8080/erddap/wms/jplMURSST41/ request?service=WMS&version=1.3.0&request=GetMap&bbox=-179. 99,-89.99,180.0,89.99&crs=EPSG:4326&width=360&height= 180&bgcolor=0x808080&layers=jplMURSST41:analysed_sst& styles=&format=image/png&transparent=TRUE ' But when i had tried to open this link in my browser i got error : HTTP Status 404 - Resource not found: /erddap/wms/jplMURSST41/request (unmatched WMS request (2)) screenshot link: http://imgur.com/puqYrGM

I would be very grateful for help!

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/BobSimons/erddap/issues/8, or mute the thread https://github.com/notifications/unsubscribe-auth/ABarODajCcIVCc_agatrCXfjeRZikKbZks5rlbOOgaJpZM4Mb1Zd .

-- Sincerely,

Bob Simons IT Specialist Environmental Research Division NOAA Southwest Fisheries Science Center 99 Pacific St., Suite 255A (New!) Monterey, CA 93940 (New!) Phone: (831)333-9878 (New!) Fax: (831)648-8440 Email: bob.simons@noaa.gov

The contents of this message are mine personally and do not necessarily reflect any position of the Government or the National Oceanic and Atmospheric Administration. <>< <>< <>< <>< <>< <>< <>< <>< <><

Sammers21 commented 7 years ago

Thank you. That helps me