fix: fix key

This commit is contained in:
moanos [he/him] 2025-01-26 17:04:56 +01:00
parent 461abd2e46
commit 70e2af6172

View File

@ -1,57 +1,57 @@
import json import json
import requests import requests
OSM_DATA_FILE = "osm_data.geojson" OSM_DATA_FILE = "osm_data.geojson"
ENDPOINT = "https://test.notfellchen.org/api/organizations/" ENDPOINT = "https://test.notfellchen.org/api/organizations/"
HEADERS = { HEADERS = {
"Authorization": "API_KEY", "Authorization": "API_KEY",
"Content-Type": "application/json" "Content-Type": "application/json"
} }
def load_osm_data(file_path): def load_osm_data(file_path):
#Load OSM data from a GeoJSON file. #Load OSM data from a GeoJSON file.
with open(file_path, "r", encoding="utf-8") as file: with open(file_path, "r", encoding="utf-8") as file:
data = json.load(file) data = json.load(file)
return data return data
def transform_osm_data(feature): def transform_osm_data(feature):
#Transform a single OSM feature into the API payload format #Transform a single OSM feature into the API payload format
prop = feature.get("prop", {}) prop = feature.get("properties", {})
geometry = feature.get("geometry", {}) geometry = feature.get("geometry", {})
return { return {
"name": prop.get("name", "Unnamed Shelter"), "name": prop.get("name", "Unnamed Shelter"),
"phone": prop.get("phone"), "phone": prop.get("phone"),
"website": prop.get("website"), "website": prop.get("website"),
"opening_hours": prop.get("opening_hours"), "opening_hours": prop.get("opening_hours"),
"email": prop.get("email"), "email": prop.get("email"),
"location": { "location": {
"type": geometry.get("type", "Point"), "type": geometry.get("type", "Point"),
"coordinates": geometry.get("coordinates", []) "coordinates": geometry.get("coordinates", [])
}, },
"external_object_id": prop.get("@id"), "external_object_id": prop.get("@id"),
"external_source_id": "OSM" "external_source_id": "OSM"
} }
def send_to_api(data): def send_to_api(data):
#Send transformed data to the Notfellchen API. #Send transformed data to the Notfellchen API.
response = requests.post(ENDPOINT, headers=HEADERS, json=data) response = requests.post(ENDPOINT, headers=HEADERS, json=data)
if response.status_code == 201: if response.status_code == 201:
print(f"Success: Shelter '{data['name']}' uploaded.") print(f"Success: Shelter '{data['name']}' uploaded.")
elif response.status_code == 400: elif response.status_code == 400:
print(f"Error: Shelter '{data['name']}' already exists or invalid data.") print(f"Error: Shelter '{data['name']}' already exists or invalid data.")
else: else:
print(f"Unexpected Error: {response.status_code} - {response.text}") print(f"Unexpected Error: {response.status_code} - {response.text}")
def main(): def main():
# Step 1: Load OSM data # Step 1: Load OSM data
osm_data = load_osm_data(OSM_DATA_FILE) osm_data = load_osm_data(OSM_DATA_FILE)
# Step 2: Process each shelter and send it to the API # Step 2: Process each shelter and send it to the API
for feature in osm_data.get("features", []): for feature in osm_data.get("features", []):
shelter_data = transform_osm_data(feature) shelter_data = transform_osm_data(feature)
send_to_api(shelter_data) send_to_api(shelter_data)
if __name__ == "__main__": if __name__ == "__main__":
main() main()