![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
georss-ign-sismologia-client
Advanced tools
This library provides convenient access to the Instituto Geográfico Nacional Sismología (Earthquakes) Feed feed.
pip install georss-ign-sismologia-client
See below for examples of how this library can be used for particular GeoRSS
feeds. After instantiating a particular class and supply the required
parameters, you can call update
to retrieve the feed data. The return value
will be a tuple of a status code and the actual data in the form of a list of
feed entries specific to the selected feed.
Status Codes
Supported Filters
Filter | Description | |
---|---|---|
Radius | filter_radius | Radius in kilometers around the home coordinates in which events from feed are included. |
Minimum Magnitude | filter_minimum_magnitude | Minimum magnitude as float value. Only events with a magnitude equal or above this value are included. |
Example
from georss_ign_sismologia_client import IgnSismologiaFeed
# Home Coordinates: Latitude: 40.38, Longitude: -3.72
# Filter radius: 200 km
# Filter minimum magnitude: 3.0
feed = IgnSismologiaFeed((40.38, -3.72),
filter_radius=200,
filter_minimum_magnitude=3.0)
status, entries = feed.update()
Each feed entry is populated with the following properties - subject to availability in GeoRSS feed:
Name | Description |
---|---|
geometry | All geometry details of this entry. |
coordinates | Best coordinates (latitude, longitude) of this entry. |
external_id | External id of this entry. |
title | Title of this entry with date and time of the event. |
attribution | Attribution of the feed. |
distance_to_home | Distance in km of this entry to the home coordinates. |
description | Textual description of this entry. |
published | Published date of this entry. |
magnitude | Magnitude value of this entry. |
region | Region in formation of this entry. |
image_url | Image URL showing a map of the entry. |
The Feed Manager helps managing feed updates over time, by notifying the consumer of the feed about new feed entries, updates and removed entries compared to the last feed update.
After a successful update from the feed, the feed manager will provide two different dates:
last_update
will be the timestamp of the last successful update from the
feed. This date may be useful if the consumer of this library wants to
treat intermittent errors from feed updates differently.last_timestamp
will be the latest timestamp extracted from the feed data.
This requires that the underlying feed data actually contains a suitable
date. This date may be useful if the consumer of this library wants to
process feed entries differently if they haven't actually been updated.FAQs
A GeoRSS client library for the IGN Sismologia feed.
We found that georss-ign-sismologia-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.