<?php
// get value of key or default value if key does not exist
-function array_get($key, $array, $default) {
- if (array_key_exists($key, $array)) return $array[$key];
- return $default;
-}
-
-
// gets coordinates and returns an array of lon/lat coordinate pairs, e.g.
// 47.12 N 11.87 E
// 47.13 N 11.70 E
$lat = floatval($lat);
$lon = floatval($lon);
$title = Title::newFromText($sledrun['page_title']);
- $title_text = $title->getText();
- $title_url = $title->getLocalUrl();
- $condition = $sledrun['condition'];
- if (!is_null($condition)) $condition = intval($condition);
+ $properties = array('type' => 'sledrun', 'name' => $title->getText(), 'wiki' => $title->getLocalUrl());
+ if (!is_null($sledrun['date_report'])) $properties[] = $sledrun['date_report'];
+ if (!is_null($sledrun['condition'])) $properties[] = intval($sledrun['condition']);
$json_feature = array(
'type' => 'feature',
'geometry' => array(
'type' => 'Point',
'coordinates' => array($lon, $lat)
),
- 'properties' => array(
- 'type' => 'sledrun',
- 'name' => $title_text,
- 'wiki' => $title_url,
- 'date_report' => $sledrun['date_report'],
- 'condition' => $condition
- )
+ 'properties' => $properties
);
$json_features[] = $json_feature;
}
// convert XML to geojson (http://www.geojson.org/geojson-spec.html)
// Returns an array of features
+// TODO: Error reporting
function xml_to_json_features($input) {
libxml_use_internal_errors(true); // without that, we get PHP Warnings if the $input is not well-formed
$xml = new SimpleXMLElement($input); // input
$json_features = array(); // output
+ $point_type = array('gasthaus' => 'inn', 'haltestelle' => 'busstop', 'parkplatz' => 'carpark', 'achtung' => 'attention', 'punkt' => 'point');
+ $line_type = array('rodelbahn' => 'sledrun', 'gehweg' => 'walk', 'alternative' => 'alternative', 'lift' => 'lift', 'linie' => 'line');
foreach ($xml as $feature) {
// point
- if (in_array($feature->getName(), array('gasthaus', 'haltestelle', 'parkplatz', 'punkt'))) {
- $wiki = array_get('wiki', $feature, null);
- $name = array_get('name', $feature, null);
+ if (in_array($feature->getName(), array_keys($point_type))) {
+ $properties = array('type' => $point_type[$feature->getName()]);
+ if (isset($feature['wiki'])) $properties['wiki'] = (string) $feature['wiki'];
+ if (isset($feature['name'])) $properties['name'] = (string) $feature['name'];
$json_feature = array(
'type' => 'feature',
'geometry' => array(
'type' => 'Point',
'coordinates' => geo_to_coordinates($feature)[0]
),
- 'properties' => array(
- 'type' => $feature->getName(),
- 'name' => $name,
- 'wiki' => $wiki
- )
+ 'properties' => $properties
);
$json_features[] = $json_feature;
}
// line
- if (in_array($feature->getName(), array('rodelbahn', 'gehweg', 'alternative', 'lift', 'linie'))) {
- $color = array_get('farbe', $feature, null);
- $thickness = array_get('dicke', $feature, null);
+ if (in_array($feature->getName(), array_keys($line_type))) {
+ $properties = array('type' => $line_type[$feature->getName()]);
+ if (isset($feature['farbe'])) $properties['strokeColor'] = (string) $feature['farbe'];
+ if (isset($feature['dicke'])) $properties['strokeWidth'] = (string) $feature['dicke'];
$json_feature = array(
'type' => 'feature',
'geometry' => array(
'type' => 'LineString',
'coordinates' => geo_to_coordinates($feature)
),
- 'properties' => array(
- 'type' => $feature->getName(),
- 'color' => $color,
- 'thickness' => $thickness
- )
+ 'properties' => $properties
);
$json_features[] = $json_feature;
}