refactor: formatting
This commit is contained in:
parent
8858cff9cf
commit
0051cb07c9
@ -8,12 +8,14 @@ HEADERS = {
|
||||
"Content-Type": "application/json"
|
||||
}
|
||||
|
||||
|
||||
def load_osm_data(file_path):
|
||||
#Load OSM data from a GeoJSON file.
|
||||
with open(file_path, "r", encoding="utf-8") as file:
|
||||
data = json.load(file)
|
||||
return data
|
||||
|
||||
|
||||
def transform_osm_data(feature):
|
||||
#Transform a single OSM feature into the API payload format
|
||||
prop = feature.get("properties", {})
|
||||
@ -30,6 +32,7 @@ def transform_osm_data(feature):
|
||||
"external_source_id": "OSM"
|
||||
}
|
||||
|
||||
|
||||
def send_to_api(data):
|
||||
# Send transformed data to the Notfellchen API.
|
||||
response = requests.post(ENDPOINT, headers=HEADERS, json=data)
|
||||
@ -44,7 +47,6 @@ def main():
|
||||
# Step 1: Load OSM data
|
||||
osm_data = load_osm_data(OSM_DATA_FILE)
|
||||
|
||||
|
||||
# Step 2: Process each shelter and send it to the API
|
||||
for feature in osm_data.get("features", []):
|
||||
shelter_data = transform_osm_data(feature)
|
||||
|
Loading…
x
Reference in New Issue
Block a user