forked from CSIRO-enviro-informatics/loci-integration-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.py
1192 lines (1141 loc) · 41.3 KB
/
functions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import asyncio
import asyncpg
import math
from decimal import Decimal
from aiohttp import ClientSession
from aiohttp.client_exceptions import ClientConnectorError
from config import TRIPLESTORE_CACHE_SPARQL_ENDPOINT
from config import ES_ENDPOINT
from config import GEOM_DATA_SVC_ENDPOINT
from config import LOCI_DATATYPES_STATIC_JSON
from config import USE_LOCAL_LOCI_DATATYPES_STATIC_JSON
from json import JSONDecodeError
import logging
import math
from json import loads
import os
import json
from errors import ReportableAPIError
#Until we have a better way of understanding fundamental units in spatial hierarchies
prefix_base_unit_lookup = {
"linked.data.gov.au/dataset/asgs2016" : "linked.data.gov.au/dataset/asgs2016/meshblock",
"linked.data.gov.au/dataset/geofabric" : "linked.data.gov.au/dataset/geofabric/contractedcatchment",
"linked.data.gov.au/dataset/gnaf-2016-05" : "linked.data.gov.au/dataset/gnaf-2016-05/address"
}
prefix_linkset_lookup = {
"linked.data.gov.au/dataset/asgs2016" : ["http://linked.data.gov.au/dataset/mb16cc", "http://linked.data.gov.au/dataset/addr1605mb16" ],
"linked.data.gov.au/dataset/geofabric" : ["http://linked.data.gov.au/dataset/addrcatch", "http://linked.data.gov.au/dataset/mb16cc" ],
"linked.data.gov.au/dataset/gnaf-2016-05" : [ "http://linked.data.gov.au/dataset/addr1605mb16", "http://linked.data.gov.au/dataset/addrcatch"]
}
resource_type_linkset_lookup = {
"http://linked.data.gov.au/def/asgs" : ["http://linked.data.gov.au/dataset/mb16cc", "http://linked.data.gov.au/dataset/addr1605mb16" ],
"http://linked.data.gov.au/def/geofabric" : ["http://linked.data.gov.au/dataset/addrcatch", "http://linked.data.gov.au/dataset/mb16cc" ],
"http://linked.data.gov.au/def/gnaf" : [ "http://linked.data.gov.au/dataset/addr1605mb16", "http://linked.data.gov.au/dataset/addrcatch"]
}
async def get_linkset_uri(from_uri, output_featuretype_uri):
'''
Get the linkset connecting an input uri and an output_featuretype_uri
'''
from_uri_compatible_linksets = []
resource_uri_compatible_linksets = []
if from_uri is None or output_featuretype_uri is None:
return None
for uri_prefix, linksets in prefix_linkset_lookup.items():
if uri_prefix in from_uri:
from_uri_compatible_linksets = linksets
for resource_uri_prefix, linksets in resource_type_linkset_lookup.items():
if resource_uri_prefix in output_featuretype_uri:
resource_uri_compatible_linksets = linksets
results = list(set(resource_uri_compatible_linksets).intersection(from_uri_compatible_linksets))
if len(results) > 0:
return results[0]
else:
return None
def get_to_base_unit_and_type_prefix(from_uri, query_uri):
"""
Find the base_units and type prefix of a uri that is not of the from_uri type
and is of the query_uri type
"""
base_unit_prefix = None
resource_type_prefix = None
for key, value in prefix_base_unit_lookup.items():
if key not in from_uri:
if key in query_uri:
base_unit_prefix = value
resource_type_prefix = key
return base_unit_prefix, resource_type_prefix
return base_unit_prefix, resource_type_prefix
async def get_all_overlaps(target_uri, output_featuretype_uri, linksets_filter, include_areas=True, include_proportion=True, include_contains=True, include_within=True, includes_partial_overlaps=True):
offset = 0
all_overlaps = []
while True:
results = list(await get_location_overlaps(target_uri, output_featuretype_uri, include_areas, include_proportion, include_within, include_contains, linksets_filter, count=100000, offset=offset, includes_partial_overlaps=includes_partial_overlaps))
length = results[0]['count']
if "featureArea" in results[0].keys():
my_area = results[0]['featureArea']
else:
my_area = 0
all_overlaps = all_overlaps + results[1]
if length < 100000:
break
offset += 100000
return my_area, all_overlaps
counter = 0
async def query_graphdb_endpoint(sparql, infer=True, same_as=True, limit=1000, offset=0):
"""
Pass the SPARQL query to the endpoint. The endpoint is specified in the config file.
:param sparql: the valid SPARQL text
:type sparql: str
:param infer:
:type infer: bool
:param same_as:
:type same_as: bool
:param limit:
:type limit: int
:param offset:
:type offset: int
:return:
:rtype: dict
"""
global counter
counter = counter + 1
loop = asyncio.get_event_loop()
try:
session = query_graphdb_endpoint.session_cache[loop]
except KeyError:
session = ClientSession(loop=loop)
query_graphdb_endpoint.session_cache[loop] = session
args = {
'query': sparql,
'infer': 'true' if bool(infer) else 'false',
'sameAs': 'true' if bool(same_as) else 'false',
'limit': int(limit),
'offset': int(offset),
}
headers = {
'Accept': "application/sparql-results+json,*/*;q=0.9",
'Accept-Encoding': "gzip, deflate",
}
resp = await session.request('POST', TRIPLESTORE_CACHE_SPARQL_ENDPOINT, data=args, headers=headers)
resp_content = await resp.text()
try:
return loads(resp_content)
except JSONDecodeError as e:
logging.error("Bad response querying {0}".format(sparql))
raise
query_graphdb_endpoint.session_cache = {}
async def check_type(target_uri, output_featuretype_uri):
"""
check if resource_uri is of type output_featuretype_uri
return boolean
:param target_uri:
:type target_uri: str
:param output_featuretype_uri:
:type output_featuretype_uri: str
:return:
:rtype: bool
"""
sparql = """\
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
select * where {
BIND(EXISTS{<TARGETURI> rdf:type <TARGETTYPE>} AS ?a)
}
"""
sparql = sparql.replace("<TARGETURI>", "<{}>".format(str(target_uri)))
sparql = sparql.replace("<TARGETTYPE>", "<{}>".format(str(output_featuretype_uri)))
resp = await query_graphdb_endpoint(sparql)
results = []
if 'results' not in resp:
return locations
bindings = resp['results']['bindings']
for b in bindings:
results.append(b['a']['value'])
return results[0] == "true"
async def get_resource(resource_uri):
"""
:param resource_uri:
:type resource_uri: str
:return:
"""
sparql = """\
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?p ?o ?p1 ?o1 ?p2 ?o2
WHERE {
{
?s rdf:subject <URI> ;
rdf:predicate ?p;
rdf:object ?o .
OPTIONAL { FILTER (isBlank(?o))
{
?s2 rdf:subject ?o ;
rdf:predicate ?p1;
rdf:object ?o1 .
}
UNION
{ ?o ?p1 ?o1 . }
OPTIONAL { FILTER (isBlank(?o1))
?o1 ?p2 ?o2 .
}
}
}
UNION
{
<URI> ?p ?o .
OPTIONAL { FILTER (isBlank(?o))
{
?s3 rdf:subject ?o ;
rdf:predicate ?p1;
rdf:object ?o1 .
}
UNION
{ ?o ?p1 ?o1 . }
OPTIONAL { FILTER (isBlank(?o1))
?o1 ?p2 ?o2 .
}
}
}
}
"""
sparql = sparql.replace("<URI>", "<{}>".format(str(resource_uri)))
resp = await query_graphdb_endpoint(sparql)
resp_object = {}
if 'results' not in resp:
return resp_object
bindings = resp['results']['bindings']
for b in bindings:
pred = b['p']['value']
obj = b['o']
if obj['type'] == "bnode":
try:
obj = resp_object[pred]
except KeyError:
resp_object[pred] = obj = {}
pred1 = b['p1']['value']
obj1 = b['o1']
if obj1['type'] == "bnode":
try:
obj1 = obj[pred1]
except KeyError:
obj[pred1] = obj1 = {}
pred2 = b['p2']['value']
obj2 = b['o2']['value']
obj1[pred2] = obj2
else:
obj1 = obj1['value']
obj[pred1] = obj1
else:
obj = obj['value']
resp_object[pred] = obj
return resp_object
async def get_linksets(count=1000, offset=0):
"""
:param count:
:type count: int
:param offset:
:type offset: int
:return:
:rtype: tuple
"""
sparql = """\
PREFIX loci: <http://linked.data.gov.au/def/loci#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?l
WHERE {
{
?l a loci:Linkset .
}
UNION
{
?c rdfs:subClassOf+ loci:Linkset .
?l a ?c .
}
}
"""
resp = await query_graphdb_endpoint(sparql, limit=count, offset=offset)
linksets = []
if 'results' not in resp:
return linksets
bindings = resp['results']['bindings']
for b in bindings:
linksets.append(b['l']['value'])
meta = {
'count': len(linksets),
'offset': offset,
}
return meta, linksets
async def get_datasets(count=1000, offset=0):
"""
:param count:
:type count: int
:param offset:
:type offset: int
:return:
:rtype: tuple
"""
sparql = """\
PREFIX dcat: <http://www.w3.org/ns/dcat#>
PREFIX loci: <http://linked.data.gov.au/def/loci#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?d
WHERE {
{
?d a dcat:Dataset .
}
UNION
{
?d a loci:Dataset .
}
UNION
{
?c rdfs:subClassOf+ dcat:Dataset .
?d a ?c .
}
}
"""
resp = await query_graphdb_endpoint(sparql, limit=count, offset=offset)
datasets = []
if 'results' not in resp:
return datasets
bindings = resp['results']['bindings']
for b in bindings:
datasets.append(b['d']['value'])
meta = {
'count': len(datasets),
'offset': offset,
}
return meta, datasets
async def get_dataset_types(datasetUri, datasetType, baseType, count=1000, offset=0):
"""
:param datasetUri:
:type datasetUri: string
:param datasetType:
:type datasetType: string
:param baseType:
:type baseType: boolean
:param offset:
:type offset: int
:return:
"""
loop = asyncio.get_event_loop()
try:
gdt_session = get_dataset_types.session_cache[loop]
except KeyError:
gdt_session = ClientSession(loop=loop)
get_dataset_types.session_cache[loop] = gdt_session
row = {}
results = {}
counter = 0
params = {
}
formatted_resp = {
'ok': False
}
meta = {
'count': -1,
'offset': 0
}
formatted_resp = {}
if USE_LOCAL_LOCI_DATATYPES_STATIC_JSON == True:
#retrieve from file
curr_dir = os.path.dirname(__file__)
rel_path = "loci-types.json"
abs_file_path = os.path.join(curr_dir, rel_path)
#print("Is file {} : {}".format(abs_file_path, os.path.isfile(abs_file_path)))
#arr = os.listdir(curr_dir)
#print(arr)
try:
with open(abs_file_path) as f:
#print("file opened")
formatted_resp = json.load(f)
except:
formatted_resp['errorMessage'] = "File error: Could not find file {} to load Loc-I Types with.".format(abs_file_path)
return meta,formatted_resp
else: #retrieve from the web url
http_ok = [200]
url = LOCI_DATATYPES_STATIC_JSON
try:
resp = await gdt_session.request('GET', url, params=params)
resp_content = await resp.text()
if resp.status not in http_ok:
formatted_resp['errorMessage'] = "Could not retrieve datatypes at loci.cat. Error code {}".format(resp.status)
return meta,formatted_resp
formatted_resp = loads(resp_content)
except ClientConnectorError:
formatted_resp['errorMessage'] = "Could not connect to retrieve datatypes at loci.cat. Connection error thrown."
return meta,formatted_resp
if(datasetUri is not None):
res = list(filter(lambda i: i['datasetUri'] == datasetUri, formatted_resp))
formatted_resp = res
if datasetType is not None:
res = list(filter(lambda i: i['uri'] == datasetType, formatted_resp))
formatted_resp = res
if(baseType == True):
res = list(filter(lambda i: ('baseType' in i and i['baseType'] == True), formatted_resp))
formatted_resp = res
meta = {
'count': len(formatted_resp),
'offset': 0
}
return meta, formatted_resp
get_dataset_types.session_cache = {}
async def get_locations(count=1000, offset=0):
"""
:param count:
:type count: int
:param offset:
:type offset: int
:return:
:rtype: tuple
"""
sparql = """\
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?l
WHERE {
{ ?l a geo:Feature }
UNION
{
?c1 rdfs:subClassOf+ geo:Feature .
?l a ?c1 .
}
UNION
{
?s1 rdf:subject ?l ;
rdf:predicate rdf:type ;
rdf:object geo:Feature .
}
UNION
{ ?l a prov:Location }
UNION
{
?c2 rdfs:subClassOf+ prov:Location .
?l a ?c2 .
}
UNION
{
?s2 rdf:subject ?l ;
rdf:predicate rdf:type ;
rdf:object prov:Location .
} .
}
"""
resp = await query_graphdb_endpoint(sparql, limit=count, offset=offset)
locations = []
if 'results' not in resp:
return locations
bindings = resp['results']['bindings']
for b in bindings:
locations.append(b['l']['value'])
meta = {
'count': len(locations),
'offset': offset,
}
return meta, locations
async def get_location_is_within(target_uri, count=1000, offset=0):
"""
:param target_uri:
:type target_uri: str
:param count:
:type count: int
:param offset:
:type offset: int
:return:
:rtype: tuple
"""
sparql = """\
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?l
WHERE {
{
?s rdf:subject <URI> ;
rdf:predicate geo:sfWithin ;
rdf:object ?l .
}
UNION
{ <URI> geo:sfWithin+ ?l }
}
"""
sparql = sparql.replace("<URI>", "<{}>".format(str(target_uri)))
#print(sparql)
resp = await query_graphdb_endpoint(sparql, limit=count, offset=offset)
locations = []
if 'results' not in resp:
return locations
bindings = resp['results']['bindings']
for b in bindings:
locations.append(b['l']['value'])
meta = {
'count': len(locations),
'offset': offset,
}
return meta, locations
async def get_location_contains(target_uri, count=1000, offset=0):
"""
:param target_uri:
:type target_uri: str
:param count:
:type count: int
:param offset:
:type offset: int
:return:
:rtype: tuple
"""
sparql = """\
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?l
WHERE {
{
?s rdf:subject <URI> ;
rdf:predicate geo:sfContains;
rdf:object ?l .
}
UNION
{ <URI> geo:sfContains+ ?l }
}
"""
sparql = sparql.replace("<URI>", "<{}>".format(str(target_uri)))
#print(sparql)
resp = await query_graphdb_endpoint(sparql, limit=count, offset=offset)
locations = []
if 'results' not in resp:
return locations
bindings = resp['results']['bindings']
for b in bindings:
locations.append(b['l']['value'])
meta = {
'count': len(locations),
'offset': offset,
}
return meta, locations
async def query_build_response_bindings(sparql, count, offset, bindings):
"""
:param sparql:
:type sparql: str
:param count:
:type count: int
:param offset:
:type offset: int
:return:
"""
resp = await query_graphdb_endpoint(sparql, limit=count, offset=offset)
if 'results' in resp and 'bindings' in resp['results']:
if len(resp['results']['bindings']) > 0:
if len(resp['results']['bindings'][0].keys()) > 0:
bindings.extend(resp['results']['bindings'])
async def get_location_overlaps_crosswalk(from_uri, output_featuretype_uri, include_areas, include_proportion, include_within, include_contains, include_count=1000, offset=0):
"""
find location overlaps across spatial hierarchies
:param target_uri:
:param target_feature_type:
:type target_uri: str
:type include_areas: bool
:type include_proportion: bool
:type include_within: bool
:type include_contains: bool
:param count:
:type count: int
:param offset:
:type offset: int
:return:
"""
# for a from_uri
# get all contained objects
# iterate over all responses
# if a "base unit" e.g a meshblock or a contracted catchment note how much of the from_uri is part of this base unit
# find things that overlap with this base unit that are other base units e.g if this is a meshblock find contracted catchments
# get the amount of intersection with original from_uri by multiplying it by the reversePercentage (i.e amount base units intersect)
# find the new base units various parent units and add the forward areas to
# collate and sum all results for target units
# calcuate final foward and reverse proportions by finding the proportions of passed over area that is in the target block (reversePercentage)
# and the proportion of final passed over area as as a proportion of the original area (forwardProportion)
linksets_filter = await get_linkset_uri(from_uri, output_featuretype_uri)
base_unit_prefix, resource_type_prefix = get_to_base_unit_and_type_prefix("", from_uri)
# this is a base unit so continue to base unit logic
parent_amount = {}
# cache of withins, base units in other hierarchary may overlap multiple times so don't need to find parents everytime
# just use cache of parents
found_parents = {}
if base_unit_prefix not in from_uri:
# This must be a parent unit so get everything contained and find base units
my_area, all_contained = await get_all_overlaps(from_uri, None, None, include_contains=True, include_within=False)
collated_uri_dict = {}
for an_contained in all_contained:
from_base_uri = an_contained['uri']
if base_unit_prefix is None:
continue
if base_unit_prefix not in from_base_uri:
# isn't actually a base uri but record information
parent_amount[from_base_uri] = {"uri": from_base_uri, "featureArea": my_area, "forwardPercentage": an_contained["forwardPercentage"], "reversePercentage": an_contained["reversePercentage"], "intersectionArea": an_contained["intersectionArea"]}
continue
# found a base uri do base uri logic
percentage_from_uri_in_from_base_uri = float(an_contained["forwardPercentage"]) # This is the amount this base unit takes up of the parent unit
area_parent = float(my_area) * percentage_from_uri_in_from_base_uri / 100
await get_location_overlaps_crosswalk_base_uri(found_parents, parent_amount, area_parent, percentage_from_uri_in_from_base_uri, from_base_uri, linksets_filter, output_featuretype_uri)
else:
my_area = await get_location_overlaps_crosswalk_base_uri(found_parents, parent_amount, None, 100, from_uri, linksets_filter, output_featuretype_uri)
parents = parent_amount.values()
final_parents = []
for aparent in parents:
if output_featuretype_uri is not None:
type_match = await check_type(aparent['uri'], output_featuretype_uri)
if not type_match:
continue
final_parents.append(aparent)
area_from_uri = float(my_area)
area_parent = float(aparent["featureArea"])
area_from_uri_in_parent = aparent["intersectionArea"]
if include_proportion and "forwardPercentage" not in aparent.keys():
proportion_area_of_from_uri = area_from_uri_in_parent / area_from_uri
if proportion_area_of_from_uri >= 1:
proportion_area_of_from_uri = 1
aparent["forwardPercentage"] = str(proportion_area_of_from_uri * 100)
if not include_proportion and "forwardPercentage" in aparent.keys():
aparent.pop("forwardPercentage", None)
if include_proportion and "reversePercentage" not in aparent.keys():
proportion_area_of_parent = area_from_uri_in_parent / area_parent
if proportion_area_of_parent >= 1:
proportion_area_of_parent = 1
aparent["reversePercentage"] = str(proportion_area_of_parent * 100)
if not include_proportion and "reversePercentage" in aparent.keys():
aparent.pop("reversePercentage", None)
if include_areas:
aparent["intersectionArea"] = str(aparent["intersectionArea"])
else:
aparent.pop("intersectionArea", None)
aparent.pop("featureArea", None)
for key in aparent:
value = aparent[key]
if isinstance(value, float) and math.isnan(value):
aparent[key] = "nan"
meta = {
'count': len(final_parents),
'offset': 0,
}
if my_area and include_areas:
meta['featureArea'] = my_area
return meta, list(final_parents)
async def get_location_overlaps_crosswalk_base_uri(found_parents, parent_amount, area_incoming, percentage_from_uri_in_from_base_uri, from_base_uri, linksets_filter=None, output_featuretype_uri=None):
"""
find location overlaps across to "to" spatial hierarchies given a base uri in a "from" hierarchy
"""
my_area, all_overlaps = await get_all_overlaps(from_base_uri, None, include_contains=True, include_within=True, linksets_filter=linksets_filter)
# if there is no area incoming from another higher level object then this is the U shaped query is a L shaped and starts
# from a base_uri therefore the area is the area of the base_uri
if area_incoming is None:
area_incoming = float(my_area)
for an_overlap in all_overlaps:
to_base_uri = an_overlap["uri"]
base_unit_prefix, resource_type_prefix = get_to_base_unit_and_type_prefix(from_base_uri, to_base_uri)
if base_unit_prefix is None:
continue
if base_unit_prefix not in to_base_uri:
continue
# found a real overlapping base unit
if "featureArea" in an_overlap:
to_feature_area = an_overlap["featureArea"]
else:
to_feature_area = float('nan')
if to_base_uri not in parent_amount:
parent_amount[to_base_uri] = {"uri": to_base_uri, "intersectionArea": 0, "featureArea": to_feature_area}
if "forwardPercentage" in an_overlap:
percentage_from_base_uri_in_to_base_uri = an_overlap["forwardPercentage"]
else:
percentage_from_base_uri_in_to_base_uri = float('nan')
area_from_other_base_uri = (float(percentage_from_base_uri_in_to_base_uri) / 100 * area_incoming)
parent_amount[to_base_uri]["intersectionArea"] += area_from_other_base_uri
if (output_featuretype_uri is not None) and (await check_type(to_base_uri, output_featuretype_uri)):
# this is already the target type so it is the "parent"
continue
# find all its parents
if to_base_uri not in found_parents.keys():
if math.isnan(float(percentage_from_base_uri_in_to_base_uri)):
found_parents[to_base_uri] = await get_all_overlaps(to_base_uri, None, None, include_areas=False, include_proportion=False, include_contains=False, include_within=True)
else:
found_parents[to_base_uri] = await get_all_overlaps(to_base_uri, None, None, include_contains=False, include_within=True)
parent_area, all_within = found_parents[to_base_uri]
for an_within in all_within:
if isinstance(an_within, str):
within_uri = an_within
if resource_type_prefix in within_uri:
parent_amount[within_uri] = {"uri": within_uri, "intersectionArea": float('nan'), "featureArea": float('nan'), "forwardPercentage": float('nan'), "reversePercentage": float('nan')}
continue
within_uri = an_within['uri']
# exclude things that contain this base unit but aren't in the same spatial hierarchy
if resource_type_prefix not in within_uri:
continue
feature_area = an_within["featureArea"]
# how much of this bigger thing is in the thing in the to hierarchy
if resource_type_prefix not in within_uri:
continue
# this is a parent of the to_base_unit
if within_uri not in parent_amount.keys():
parent_amount[within_uri] = {"uri": within_uri, "intersectionArea": 0, "featureArea": feature_area}
parent_amount[within_uri]["intersectionArea"] += area_from_other_base_uri
return my_area
async def get_location_overlaps(target_uri, output_featuretype_uri, include_areas, include_proportion, include_within, include_contains, linksets_filter=None, count=1000, offset=0, includes_partial_overlaps=True):
"""
:param target_uri:
:type target_uri: str
:type include_areas: bool
:type include_proportion: bool
:type include_within: bool
:type include_contains: bool
:type linkset_filter: str
:param count:
:type count: int
:param offset:
:type offset: int
:return:
"""
overlaps_sparql = """\
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX ipo: <http://purl.org/dc/terms/isPartOf>
PREFIX geox: <http://linked.data.gov.au/def/geox#>
PREFIX qb4st: <http://www.w3.org/ns/qb4st/>
PREFIX epsg: <http://www.opengis.net/def/crs/EPSG/0/>
PREFIX dt: <http://linked.data.gov.au/def/datatype/>
SELECT <SELECTS>
WHERE {
{
{
?s1 rdf:subject <URI> ;
<LINKSET_FILTER>
rdf:predicate geox:transitiveSfOverlap;
rdf:object ?o .
} UNION {
?s2 rdf:subject <URI> ;
<LINKSET_FILTER>
rdf:predicate geo:sfOverlaps;
rdf:object ?o .
}
}
UNION
{ <URI> geox:transitiveSfOverlap ?o }
UNION
{ <URI> geo:sfOverlaps ?o }
<EXTRAS>
}
GROUP BY ?o
"""
contains_sparql = """\
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX ipo: <http://purl.org/dc/terms/isPartOf>
PREFIX geox: <http://linked.data.gov.au/def/geox#>
PREFIX qb4st: <http://www.w3.org/ns/qb4st/>
PREFIX epsg: <http://www.opengis.net/def/crs/EPSG/0/>
PREFIX dt: <http://linked.data.gov.au/def/datatype/>
SELECT ?c <SELECTS>
WHERE {
{
?s2 rdf:subject <URI> ;
<LINKSET_FILTER>
rdf:predicate geo:sfContains;
rdf:object ?o .
}
UNION
{ <URI> geo:sfContains+ ?o }
OPTIONAL { FILTER(bound(?o))
BIND(true as ?c) .
}
<EXTRAS>
}
GROUP BY ?c ?o
"""
within_sparql = """\
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX geox: <http://linked.data.gov.au/def/geox#>
PREFIX ipo: <http://purl.org/dc/terms/isPartOf>
PREFIX qb4st: <http://www.w3.org/ns/qb4st/>
PREFIX epsg: <http://www.opengis.net/def/crs/EPSG/0/>
PREFIX dt: <http://linked.data.gov.au/def/datatype/>
SELECT ?w <SELECTS>
WHERE {
{
?s2 rdf:subject <URI> ;
<LINKSET_FILTER>
rdf:predicate geo:sfWithin;
rdf:object ?o .
}
UNION
{ <URI> geo:sfWithin+ ?o }
OPTIONAL { FILTER(bound(?o))
BIND(true as ?w) .
}
<EXTRAS>
}
GROUP BY ?w ?o
"""
use_areas_sparql = include_proportion or include_areas
use_proportion_sparql = include_proportion
selects = "?o "
area_selects = "(MAX(?a1) as ?uarea) (MAX(?a2) as ?oarea) "
iarea_selects = "(MAX(?a3) as ?iarea) "
areas_sparql = """\
OPTIONAL {
<URI> geox:hasAreaM2 ?ha1 .
?ha1 geox:inCRS epsg:3577 .
?ha1 dt:value ?a1 .
}
OPTIONAL {
?o geox:hasAreaM2 ?ha2 .
?ha2 geox:inCRS epsg:3577 .
?ha2 dt:value ?a2 .
}
"""
iarea_sparql = """\
OPTIONAL {
{ <URI> geo:sfContains ?i }
UNION
{
?s3 rdf:subject <URI> ;
<LINKSET_FILTER>
rdf:predicate geo:sfContains ;
rdf:object ?i
} .
{ ?o geo:sfContains ?i }
UNION
{
?s4 rdf:subject ?o ;
<LINKSET_FILTER>
rdf:predicate geo:sfContains ;
rdf:object ?i
} .
OPTIONAL {
?i geox:hasAreaM2 ?ha3 .
?ha3 geox:inCRS epsg:3577 .
?ha3 dt:value ?a3 .
}
}
"""
extras = ""
use_selects = selects
if use_areas_sparql:
extras += areas_sparql
use_selects += area_selects
if use_proportion_sparql:
extras += iarea_sparql
use_selects += iarea_selects
overlaps = []
bindings = []
if includes_partial_overlaps:
sparql = overlaps_sparql.replace("<SELECTS>", use_selects)
sparql = sparql.replace("<EXTRAS>", extras)
sparql = sparql.replace("<URI>", "<{}>".format(str(target_uri)))
if not linksets_filter is None:
sparql = sparql.replace("<LINKSET_FILTER>", "ipo: <{}> ;".format(str(linksets_filter)))
else:
sparql = sparql.replace("<LINKSET_FILTER>", "")
if not linksets_filter is None:
sparql = sparql.replace("<LINKSET_FILTER>", "ipo: <{}> ;".format(str(linksets_filter)))
else:
sparql = sparql.replace("<LINKSET_FILTER>", "")
await query_build_response_bindings(sparql, count, offset, bindings)
extras = ""
#print(sparql)
if include_contains:
use_selects = selects
if use_areas_sparql:
extras = areas_sparql
use_selects += area_selects
sparql = contains_sparql.replace("<SELECTS>", use_selects)
sparql = sparql.replace("<EXTRAS>", extras)
sparql = sparql.replace("<URI>", "<{}>".format(str(target_uri)))
if not linksets_filter is None:
sparql = sparql.replace("<LINKSET_FILTER>", "ipo: <{}> ;".format(str(linksets_filter)))
else:
sparql = sparql.replace("<LINKSET_FILTER>", "")
await query_build_response_bindings(sparql, count, offset, bindings)
extras = ""
if include_within:
use_selects = selects
if use_areas_sparql:
extras = areas_sparql
use_selects += area_selects
sparql = within_sparql.replace("<SELECTS>", use_selects)
sparql = sparql.replace("<EXTRAS>", extras)
sparql = sparql.replace("<URI>", "<{}>".format(str(target_uri)))
if not linksets_filter is None:
sparql = sparql.replace("<LINKSET_FILTER>", "ipo: <{}> ;".format(str(linksets_filter)))
else:
sparql = sparql.replace("<LINKSET_FILTER>", "")
await query_build_response_bindings(sparql, count, offset, bindings)
#print(sparql)
if len(bindings) < 1:
return {'count': 0, 'offset': offset}, overlaps
if not include_proportion and not include_areas:
my_area = False
for b in bindings:
overlaps.append(b['o']['value'])
else:
d100 = Decimal("100.0")
try:
uarea = bindings[0]['uarea']
except (LookupError, AttributeError):
uarea = {}
uarea['value'] = math.nan
logging.warning("Source feature {0} does not have a known geometry area."
"Cannot return areas or calculate proportions.".format(target_uri))
my_area = round(Decimal(uarea['value']), 8)
for b in bindings:
o_dict = {"uri": b['o']['value']}
if include_within:
try:
is_w = b['w']
except (LookupError, AttributeError):
is_w = False
o_dict["isWithin"] = bool(is_w)
if include_contains:
try:
has_c = b['c']
except (LookupError, AttributeError):
has_c = False
o_dict["contains"] = bool(has_c)
overlaps.append(o_dict)
try:
oarea = b['oarea']
except (LookupError, AttributeError):
b['oarea'] = {}
b['oarea']['value'] = math.nan
oarea = b['oarea']
o_area = round(Decimal(oarea['value']), 8)
if include_areas:
o_dict['featureArea'] = str(o_area)
if include_proportion:
if include_within and is_w:
my_proportion = d100
other_proportion = (my_area / o_area) * d100
i_area = my_area
elif include_contains and has_c:
my_proportion = (o_area / my_area) * d100
other_proportion = d100
i_area = o_area
else:
try:
i_area = Decimal(b['iarea']['value'])
except (LookupError, AttributeError):
continue
my_proportion = (i_area / my_area) * d100
other_proportion = (i_area / o_area) * d100
if include_areas:
o_dict['intersectionArea'] = str(round(i_area, 8))
my_proportion = round(my_proportion, 8)
other_proportion = round(other_proportion, 8)
o_dict['forwardPercentage'] = str(my_proportion)
o_dict['reversePercentage'] = str(other_proportion)
meta = {
'count': len(overlaps),
'offset': offset,
}
if my_area and include_areas:
meta['featureArea'] = str(my_area)
final_overlaps = overlaps
if output_featuretype_uri is not None:
final_overlaps = []
for an_overlap in overlaps:
if isinstance(an_overlap, str):
uri_to_check = an_overlap
else:
uri_to_check = an_overlap['uri']
type_match = await check_type(uri_to_check, output_featuretype_uri)
if type_match:
final_overlaps.append(an_overlap)
return meta, final_overlaps
async def get_at_location(lat, lon, loci_type="any", crs=4326, count=1000, offset=0):
"""
:param lat:
:type lat: float
:param lon:
:type lon: float
:param crs:
:type crs: int
:param count:
:type count: int
:param offset:
:type offset: int
:return:
"""