Web Services

Notifications, questions and comments related to using the DMC’s web services

Email address
webservices@lists.ds.iris.edu
Type
Subscribers
321
Moderated by
Chad Trabant, Robert Casey, gillian@iris.washington.edu, Gillian Sharer, Rob Casey
Related tags
Web Service
Login to manage your subscriptions
March
February
January
December (2)
November (3)
October (3)
September
August
July
June
May (8)
April
March
February (2)
January
December
November
October
September
August (1)
July (1)
June
May (4)
April
March (3)
February (19)
January (4)
December
November
October
September
August
July
June
May
April
March
February
January
December
November
October
September
August
July
June (1)
May
April
March
February
January
December
November
October
September
August
July
June
May
April
March
February
January
December
November
October
September
August
July
June
May
April
March
February
January
December (1)
November
October
September
August
July
June
May
April
March
February (1)
January

Active Message Threads for May 2013

Celso Reyes
2013-05-25 01:20:30
Hello web services users, We are pleased to announce the release of version 2.0.0 of the MATLAB irisFetch.m utility. This version is compatible with recently released FDSN versions of our core web services1. Older versions of these services will be turned off at the end of this year, at which time irisFetch v1.x will cease to function. Retrieve irisFetch.m from the software download page: http://www.iris.edu/dms/nodes/dmc/software/downloads/irisFetch.m/2-0-0/ Notable Changes (See revision h… [more]
No replies
Philip Crotwell
2013-05-24 19:24:27
Hi Just got this, I am guessing you all know about this, but just in case... Philip Error: Error 503: Service Unavailable: ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist Linux-x86_64 Error: 2: No such file or directory Request: http://service.iris.edu/fdsnws/event/1/query?contributor=NEIC%20PDE-W&endtime=2009-06-08T00:00:00.001&maxmagnitude=10.0&minmagnitude=5.5&starttime=2009-06-01T00:00:00.001 Request Submitted: 2013/05/24 16:17:20 UTC Service version: fds… [more]
Replies
Philip Crotwell
2013-05-17 20:48:06
Hi all Since parsing units from a string can be tricky, I have gone through all of the networks available via the fdsnstation web service and pulled the units out. Luckily, there are only 41 distinct strings as unit names. To aid in converting values, I have put together a csv file with three columns: 1) unit name from the xml 2) my best guess at how to "SI" the unit (some are, um, nonstandard) 3) a "description" The only case I found of a unit name meaning two things in two different channel… [more]
No replies
Philip Crotwell
2013-05-13 18:15:35
Hi Just a packaging question, the current jar file in both the direct download and in the src zip include the classes from dependencies (like log4j, javax.mail, etc). That is nice for someone that just wants to grab the jar and build a simple application on top of it, but can be problematic for a larger package that may already use dependencies like log4j. This will cause potential duplication and may be a bigger deal if the versions of the dependency libraries don't match. Obviously version m… [more]
No replies
Philip Crotwell
2013-05-13 17:07:33 - 2013-05-13 17:52:19
Hi It looks like the edu.iris.dmc.fdsn package is missing from both the source code distribution zip and from the online javadocs. Is that source in a separate download? ls src/edu/iris/dmc/ criteria extensions service ws event sacpz timeseries thanks Philip
Replies
Philip Crotwell
2013-05-04 00:39:49 - 2013-05-10 23:15:19
Just to make sure I am doing this correctly... If I have a known channel start time, say 1995-03-21T17:16:00, then to limit the returned xml to be just the response for that single channel I should use endafter and endtime like this: http://service.iris.edu/fdsnws/station/1/query?network=IU&sta=ANMO&loc=--&cha=BHZ&endafter=1995-03-21T17:16:00&endtime=1995-03-21T17:16:00&level=response&nodata=404 In contrast, if I use starttime andendtime like this: http://service.iris.edu/fdsnws/station/1/que… [more]
Replies
Web service developers, Version 2 of the IRIS Java Web Services access library is now available. This version is not backwards compatible with the 1.x release, primarily due to schema changes. While similar in usage to the 1.x releases, it is expected that developers will need to change code when adopting this new release level. Downloads and more available here: http://www.iris.edu/dms/nodes/dmc/software/downloads/IRIS-WS/2-0-0/ Features of this major new release: * This version uses t… [more]
No replies
Philip Crotwell
2013-05-10 17:44:12 - 2013-05-10 20:42:48
Hi http://service.iris.edu/fdsnws/station/1/query?channel=HHE&level=response&network=3A&station=L001 generates an invalid XML, the FIR has a <ResponseName> element but the schema says it should be a "Name" attribute. >From schema: <xs:attribute name="name" type="xs:string"> <xs:annotation> <xs:documentation>A name given to this filter. </xs:documentation> </xs:annotation> </xs:attribute> >From xml: <Stage number="3"> <FIR> … [more]
Replies
Celso Reyes
2013-05-08 00:17:39
Hello web service users, The DMC has released an update to our fdsnws-event service (http://service.iris.edu/fdsnws/event/1/). This release also includes many changes to the internal workings of the service. Here is a list of some important updates: * The service now returns a hybrid result when a catalog is not specified. By default, the service returns events from the ISC catalog. The NEIC PDE catalog is used to return events that are too recent to appear in the ISC catalog. * If an in… [more]
No replies
Russ Welti
2013-05-03 22:20:55 - 2013-05-03 22:36:54
I'm tired and might have goofed but here I asked for format=text but got QuakeML. Just a heads up, and I do realize it's beta. The non-beta one did give me text. ‎service.iris.edu/fdsnwsbeta/event/1/query?format=text&starttime=2010-01-01&limit=100
Replies
Carl.Sandland@ga.gov.au
2013-05-02 22:56:48
Yes, that fixed my problem using wget and led me to solve my underlying python problem. thanks for your help. Because it might be interesting, my old python bulkdataselect code: with open(input_file_name) as f: post_data = f.read() post_data = dict(selection=selection_data) request_obj = urllib2.Request(url=url_server, data=urllib.urlencode(post_data)) This did not work when switching endpoints, this did fine: with open(input_file_name) as f: post_data = f.read() request_obj = urllib2.Re… [more]
No replies
Carl.Sandland@ga.gov.au
2013-05-02 22:02:57
Hello, I'm moving my code over to the new FSDN endpoints and am having trouble with the bulkdataselect replacement, dataselect: Here is an example input: IC BJT 00 BHE 2005-01-01T00:00:00 2005-01-01T00:10:00 IC BJT 00 BHN 2005-01-01T00:00:00 2005-01-01T00:10:00 IC BJT 00 BHZ 2005-01-01T00:00:00 2005-01-01T00:10:00 Here is my wget command: $ wget --debug --post-data foo.in http://service.iris.edu/fdsnws/dataselect/1/query And here is the result: ----------------------- snip Setting --post-da… [more]
Replies
Philip Crotwell
2013-04-30 18:33:41 - 2013-05-01 00:03:41
Hi The main page for the fdsn dataselect and station web services say that you should use network, station, location and channel. But the examples sometimes use abbreviations like "sta". This example on the main fdsn station page uses "network" but also "sta". http://service.iris.edu/fdsnws/station/1/query?starttime=2013-01-01&network=IU&sta=ANMO&level=channel&nodata=404 Another point of confusion is that the docs for the fdsn event services allow minlat instead of minlatitude, but the stati… [more]
Replies
07:52:46 v.01697673