Enrico Abcede
unread,Feb 12, 2026, 3:08:11 AM (10 days ago) Feb 12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to OpenQuake Users
I am migrating from the old GEM Catalogue Toolkit to the current OpenQuake Model Building Toolkit (oq-mbtk). Previously, I was able to download data from the ISC, but I am now encountering issues when attempting to retrieve earthquake catalogs in .isf format. Please see the code I am using below:
```python
%matplotlib inline
import openquake.cat.isc_downloader as isc
Cat1 = isc.ISCBulletinUrl()
Cat1.SetField("OutputFormat","ISF")
Cat1.SetField("StartYear","2000")
Cat1.SetField("EndYear","2001")
Cat1.SetField('SearchAreaShape','RECT')
Cat1.SetField('RectangleBottomLatitude','23')
Cat1.SetField('RectangleTopLatitude','34')
Cat1.SetField('RectangleLeftLongitude','77')
Cat1.SetField('RectangleRightLongitude','91')
Cat1.SetField("MinimumDepth","")
Cat1.GetCatalogue()
Cat1.WriteOutput("outputs/Example_ISF_Catalogue.isf")
```
I just get a connection error
```python
Warning: Server is busy, retrying in a few seconds...
Warning: Server is busy, retrying in a few seconds...
Warning: Server is busy, retrying in a few seconds...
Warning: Server is busy, retrying in a few seconds...
Warning: Server is busy, retrying in a few seconds...
Warning: Server is busy, retrying in a few seconds...
Warning: Server is busy, retrying in a few seconds...
Warning: Server is busy, retrying in a few seconds...
Warning: Server is busy, retrying in a few seconds...
Warning: Server is busy, retrying in a few seconds...
Warning: Server is busy, retrying in a few seconds...
Warning: Maximum number of attempts reached...
```
Has there been a recent change to the download method or API for the ISC Bulletin? Any insights would be appreciated.