-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to search for hurricanes in Louisiana #252
Comments
I see. The best way to retrieve hazards within an area of interest is always to use the s2 cells to find the associated regions. I would suggest updating the s2 cell usage in hazard queries. I will do it later. |
The below query should retrieve hurricanes located in Louisiana, but no result will show up. PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX kwg-ont: <http://stko-kwg.geog.ucsb.edu/lod/ontology/>
PREFIX sosa: <http://www.w3.org/ns/sosa/>
PREFIX time: <http://www.w3.org/2006/time#>
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX kwgr: <http://stko-kwg.geog.ucsb.edu/lod/resource/>
select distinct ?entity ?label ?time ?wkt
{
?entity rdf:type ?type;
rdfs:label ?label;
kwg-ont:hasTemporalScope|sosa:isFeatureOfInterestOf/sosa:phenomenonTime ?time.
optional
{
?entity geo:hasGeometry/geo:asWKT ?wkt.
}
?type rdfs:subClassOf kwg-ont:Hazard.
?entity kwg-ont:sfWithin ?place.
?time time:inXSDDateTime|time:inXSDDate ?startTimeLabel;
time:inXSDDateTime|time:inXSDDate ?endTimeLabel.
filter (?type in (kwg-ont:NOAAHurricane))
?entity kwg-ont:sfWithin|kwg-ont:sfWithin/kwg-ont:sfContains ?s2Cell .
?s2Cell rdf:type kwg-ont:KWGCellLevel13 .
values ?placesConnectedToS2 {kwgr:Earth.North_America.United_States.USA.19_1}
?s2Cell kwg-ont:spatialRelation ?placesConnectedToS2.
} limit 20 |
We're definitely on the right track here. Chatting with the ontology team you're right that the S2 cells are going to be the most reliable. I would suggest starting with a smaller query and seeing if you can get it to work with a sample of hazard types (if not all of them). Then once it's working, incorporate it into the larger query above. |
Putting this in the next milestone, 1.2.1 |
This issue is solved with the latest commit by using s2 cell-based search for all hazard search scenarios: 0e8aba6. One potential issue coming with the temporary solution is that we might not be able to get all earthquakes we want. This is because earthquakes don't have s2 cells connected with them. |
I see that #274 was linked this issue-when testing I found that I still wasn't able to find hurricanes in Louisiana. @zilongliu-geo can you check on your end? |
@ThomasThelen Check out the same search for Tornado or Hail. Then you will realize that the query would work for hazards like them instead of Hurricane, which means this is a data issue. |
Are you able to pinpoint the issue with the data? The SPARQL query should be breaking on a particular pattern. |
@ThomasThelen This is because a Hurricane is linked to a NWZone and then this NWZone is linked to a s2 cell. But for a Tornado, it is associated with a s2 cell directly. I replaced |
Kitty reported an issue where if you're in the search page and
I think that this is happening because Hurricanes are connected to NWZones instead of administrative regions (to my understanding).
An example of finding hurricanes in a national weather zone (in Louisiana)
Opposed to what we're doing in the user interface, searching by administrative region which will return 0 results
The text was updated successfully, but these errors were encountered: