由于我希望使用Bootleaf,并且它使用GeoJSON数据,因此试图找到解决方案。我遵循了他的指南中有关如何将CSV文件转换为GeoJSON文件结构的指南,并设法做到了这一点。这是我的代码
<?php
/*
* Title: CSV to GeoJSON
* Notes: Convert a comma separated CSV file of points with x & y fields to
GeoJSON format, suitable for use in OpenLayers, Leaflet, etc. Only point
features are supported.
* Author: Bryan R. McBride, GISP
* Contact: bryanmcbride.com
* GitHub: https://github.com/bmcbride/PHP-Database-GeoJSON
*/
# Read the CSV file
$csvfile = 'Property_CSVTruncated.csv';
$handle = fopen($csvfile, 'r');
# Build GeoJSON feature collection array
$geojson = array(
'type' => 'FeatureCollection',
'features' => array()
);
# Loop through rows to build feature arrays
$header = NULL;
while (($row = fgetcsv($handle, 1000000, ',')) !== FALSE) {
if (!$header) {
$header = $row;
} else {
$data = array_combine($header, $row);
// print_r($data) ;
$properties = $data;
# Remove x and y fields from properties (optional)
// unset($properties['x']);
// unset($properties['y']);
$feature = array(
'type' => 'Feature',
'geometry' => array(
'type' => 'Point',
'coordinates' => array(
$data['51.045681'],
$data['-114.191544']
)
),
// 'properties' => $properties
);
# Add feature arrays to feature collection array
array_push($geojson['features'], $feature);
}
}
fclose($handle);
header('Content-type: application/json');
echo json_encode($geojson, JSON_NUMERIC_CHECK);
?>
不确定我是否真的了解JSON和GeoJSON之间的区别,但是在使用方面它们可以互换吗?我可以将输出另存为JSON并将其链接到bootleaf代码中吗?
答案 0 :(得分:1)
GeoJSON只是用于常见地理数据(如点,线和面)的架构,其规范是将数据编码为JSON。
任何JSON解析器都可以将GeoJSON解析为其数据,然后您的应用程序负责解释其中的数据。