From edfff8bd84d6647cb5c7af4030e18951e06cf7df Mon Sep 17 00:00:00 2001 From: Arno Kaimbacher Date: Tue, 8 Mar 2022 18:06:12 +0100 Subject: [PATCH] - added import scripts for project area 'Pechgraben' --- .vscode/settings.json | 2 +- insert_sensor/wrapper.py | 3 + pechgraben_images/InsertPechgraben.xml | 82 ++++++++++ pechgraben_images/__init.py | 0 pechgraben_images/import_feature_sensor.py | 167 +++++++++++++++++++++ pechgraben_images/import_images.py | 74 +++++++++ requirements.txt | Bin 1092 -> 1146 bytes 7 files changed, 327 insertions(+), 1 deletion(-) create mode 100644 pechgraben_images/InsertPechgraben.xml create mode 100644 pechgraben_images/__init.py create mode 100644 pechgraben_images/import_feature_sensor.py create mode 100644 pechgraben_images/import_images.py diff --git a/.vscode/settings.json b/.vscode/settings.json index b1d253b..ed5f5da 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,6 +8,6 @@ "pylint_flask_sqlalchemy", ], // "python.pythonPath": "d:\\Software\\geomon\\.venv\\Scripts\\python.exe", - "python.defaultInterpreterPath": "./.venv/Scripts/python.exe", + "python.defaultInterpreterPath": ".venv/Scripts/python.exe", "python.envFile": "${workspaceFolder}/.env" } \ No newline at end of file diff --git a/insert_sensor/wrapper.py b/insert_sensor/wrapper.py index 049b188..87d90dc 100644 --- a/insert_sensor/wrapper.py +++ b/insert_sensor/wrapper.py @@ -72,6 +72,9 @@ class SensorType: elif type_ == "inclinometer": # INCLINOMETER self.pattern = {"name": "inclinometer", "type": 'fixed', "attributes": [ ("Slope", "m"), ("Roll", "m")]} + elif type_ == "camera": # INCLINOMETER + self.pattern = {"name": "camera", "type": 'fixed', "attributes": [ + ("Image", "xo")]} elif type_ == "noise": # NOISE self.pattern = {"name": "noise", "type": 'fixed', "attributes": [ ("Battery level", "m"), ("Noise", "m")]} diff --git a/pechgraben_images/InsertPechgraben.xml b/pechgraben_images/InsertPechgraben.xml new file mode 100644 index 0000000..41a72e5 --- /dev/null +++ b/pechgraben_images/InsertPechgraben.xml @@ -0,0 +1,82 @@ + + {procedure_identifier} + + + + + shortName + {procedure_name} + + + + + + + + + {offering_label} + {offering_name} + + + + + + + featuresOfInterest + + + {feature_id} + {feature_name} + + + + + {coordinates} + + + + + + + + + + + + + + + + + + + + + + + {cord_x} + + + + + + {cord_y} + + + + + + {height} + + + + + \ No newline at end of file diff --git a/pechgraben_images/__init.py b/pechgraben_images/__init.py new file mode 100644 index 0000000..e69de29 diff --git a/pechgraben_images/import_feature_sensor.py b/pechgraben_images/import_feature_sensor.py new file mode 100644 index 0000000..27bffdc --- /dev/null +++ b/pechgraben_images/import_feature_sensor.py @@ -0,0 +1,167 @@ +# -*- coding: utf-8 -*- +"""This module does blah blah.""" + +import requests +# from insert_sensor.transactional import insert_sensor +from insert_sensor.wrapper import (Offering, FoI, Procedure, SensorType) +# import json + + +class Sos(): + """ + A class to represent a sos service. + ... + + Attributes + ---------- + sosurl : str + first name of the person + token : str + token to access soso service + """ + + def __init__(self, url, token=''): + self.sosurl = str(url) # url to access the SOS + self.token = str(token) # security token, optional + # Test if URL exists + try: + test = requests.get(self.sosurl) + test.raise_for_status() + except requests.HTTPError: + print("The URL is not valid") + + +def main(): + """ + main function + """ + sos_url = 'https://geomon.geologie.ac.at/52n-sos-webapp/service' + + # Gschliefgraben Glasfaser + + # offering = Offering( + # "https://geomon.geologie.ac.at/52n-sos-webapp/api/offerings/", + # "inclino1_02", + # "Inklinometer inclino1_02, Gschliefgraben Glasfaser" + # ) + # procedure = Procedure( "inclino1_02","inclino1_02") + + # offering = Offering( + # "https://geomon.geologie.ac.at/52n-sos-webapp/api/offerings/", + # "inclino1_05", + # "Inklinometer inclino1_05, Gschliefgraben Glasfaser" + # ) + # procedure = Procedure("inclino1_05", "inclino1_05") + + offering = Offering( + "https://geomon.geologie.ac.at/52n-sos-webapp/api/offerings/", + "camera1", + "camera1, Pechgraben" + ) + procedure = Procedure("camera1", "Kamera camera1 am Pechgraben") + + foi = FoI("degree", "m", (14.54621, 47.92861, 0.0), + "pechgraben", "Katastropheneinsatz in Pechgraben") + + sensor_type = SensorType("camera") + post_data = insert_sensor(offering, procedure, foi, sensor_type) + print(post_data) + headers = {'Accept': 'application/json'} + request = requests.post(sos_url, headers=headers, json=post_data) + print(request.text) + + # { + # "request" : "InsertSensor", + # "version" : "2.0.0", + # "service" : "SOS", + # "assignedProcedure" : "inclino1_14", + # "assignedOffering" : "inclino1_14" + # } + + +def insert_sensor(offering, procedure, foi, sensor_type): + """ + Prepares the body of a InsertSensor request for JSON biding. + :param offering: an instance of class Offering.Type object. + :param Procedure: instance of class Procedure. type object. + :param foi: feature of interest. Instance of FoI + :param sensor_type: SensorType object + :return: valid body for an InsertSensor request. + """ + + # shortName = offering.name # string + # longName = 'Sibratsgfall test' # string + + # Offering values + off_name = '\"' + str(offering.name) + '\"' # Offering name, double quoted + offering_name = offering.name + offering_label = offering.label + # offID = offering.fullId # URL format of full id + + # featureName = featureID = cordX = cordY = height = h_unit = z_unit = coordinates = "" + if foi is not None: # check if feature of interest should be declare + # feature_id = 'https://geomon.geologie.ac.at/52n-sos-webapp/api/features/' + \ + # str(foi.fid) # URL format + cord_x = str(foi.x) # longitude degrees, float + cord_y = str(foi.y) # latitude degrees, float + coordinates = cord_x + " " + cord_y + height = str(foi.z) # altitude in meters, float + # h_unit = foi.Hunit # units for horizontal coordinates + # z_unit = foi.Vunit # units for altitude + feature_id = foi.fid # "feature location" + feature_name = foi.name # "feature location" + else: + pass + + procedure_name = procedure.name + procedure_identifier = procedure.id # URL, + obs_types = [] + output_list = '' # output list element for describe procedure + properties_list = [] + for attr in sensor_type.pattern["attributes"]: + obs_prop_name = '\"' + attr[0] + '\"' # attribute name + # print(obs_prop_name) + unit_name = sensor_type.om_types[attr[1]] # om type + # magnitud = a # ?? + + obs_name = obs_prop_name.replace('\"', '') + obs_name = "".join(obs_name.split()) # observable property name + output = '' + output_list = output_list + output + # add property identifier to the list. + properties_list.append(obs_name) + # prepare list of measurement types + # A sensor can not registry duplicated sensor types. + this_type = "http://www.opengis.net/def/observationType/OGC-OM/2.0/"+unit_name + if this_type not in obs_types: # when new type appears + obs_types.append(this_type) + else: + continue + + # Unit of measurement: + unit_name = '\"' + procedure.name + '\"' # double quoted string + # unit = omType # one of the MO measurement types + + body = { + "request": "InsertSensor", + "service": "SOS", + "version": "2.0.0", + "procedureDescriptionFormat": "http://www.opengis.net/sensorml/2.0", + "procedureDescription": f'{procedure_identifier}shortName{procedure_name}{offering_label}{offering_name}featuresOfInterest{feature_id}{feature_name}{coordinates}{cord_x}{cord_y}{height}', + "observableProperty": [ + "Image", + # "Roll", + # "InSystemTemperature" + ], + "observationType": [ + "http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement" + ], + "featureOfInterestType": "http://www.opengis.net/def/samplingFeatureType/OGC-OM/2.0/SF_SamplingPoint" + } + return body + + +if __name__ == '__main__': + main() diff --git a/pechgraben_images/import_images.py b/pechgraben_images/import_images.py new file mode 100644 index 0000000..5b3f6e8 --- /dev/null +++ b/pechgraben_images/import_images.py @@ -0,0 +1,74 @@ +import os +from datetime import datetime, date, timedelta +from exif import Image + +def main(): + folder_path = 'C:/Users/arno/Documents/Fotos' + # img_filename = '_DSC9548.JPG' + # img_path = f'{folder_path}/{img_filename}' + + # Get the list of image files in the directory that exifread supports + directory = os.listdir(folder_path) + + for files in directory: + if files.endswith (('jpg','JPG','png','PNG','tiff','TIFF')): + file_path = os.path.join(folder_path, files) + print (file_path) + img_file = open(file_path, 'rb') + img: Image = Image(img_file) + if img.has_exif: + info = f" has the EXIF {img.exif_version}" + else: + info = "does not contain any EXIF information" + print(f"Image {img_file.name}: {info}") + + # Original datetime that image was taken (photographed) + # print(f'DateTime (Original): {img.get("datetime_original")}') + datetime_original = img.get("datetime_original") + # print(datetime_original) + # Grab the date + date_obj = datetime.strptime(datetime_original, '%Y:%m:%d %H:%M:%S') + # print(date_obj) + + + + # with open(img_path, 'rb') as img_file: + # img = Image(img_file) + # if img.has_exif: + # info = f" has the EXIF {img.exif_version}" + # else: + # info = "does not contain any EXIF information" + # print(f"Image {img_file.name}: {info}") + + + + # print(img.list_all()) + # print(img.has_exif) + # # Make of device which captured image: NIKON CORPORATION + # print(f'Make: {img.get("make")}') + + # # Model of device: NIKON D7000 + # print(f'Model: {img.get("model")}') + + # # Software involved in uploading and digitizing image: Ver.1.04 + # print(f'Software: {img.get("software")}') + + # # Name of photographer who took the image: not defined + # print(f'Artist: {img.get("artist")}') + + # # Original datetime that image was taken (photographed) + # print(f'DateTime (Original): {img.get("datetime_original")}') + + # # Details of flash function + # print(f'Flash Details: {img.get("flash")}') + + # print(f"Coordinates - Image") + # print("---------------------") + # print(f"Latitude: {img.copyright} {img.get('gps_latitude_ref')}") + # print(f"Longitude: {img.get('gps_longitude')} {img.get('gps_longitude_ref')}\n") + +if __name__ == "__main__": + # load_dotenv(find_dotenv()) + # print('sensors: {}'.format(os.environ.get( + # 'GLASFASER_GSCHLIEFGRABEN_SENSORS', []))) + main() \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index baf1a8fc087d34f28e686a0817c04d28252f124b..8a95cfdb11707787d378d9d1ce867c770cf62877 100644 GIT binary patch delta 59 zcmX@Y@rz@^F~L-Z3WiLEGzMEBG-S|YFy6RVkV!I!p_Cz)L6@O`p%N@(0F*HYV$;pX HnJO6pyyy*7 delta 20 ccmeyxafD;Sv5gNnm^O1T7csK%GH@{f09Swp3;+NC