使用php将geoJSON写入.json文件


Write geoJSON to .json file using php

我需要写一个新的geoJSON功能的数据。Json文件使用php。现在我将数据写入文件,如下所示:

<?php
// Read from json file
$jsondata = json_decode( file_get_contents('data.json') );
// Add the new data
$jsondata []= array(
      'measure_location'=> $_POST["measure_location"],
      'measure_type'=> $_POST["measure_type"],
      'measurement'=> $_POST["measurement"], 
      'note_text'=> $_POST["note_text"]
    );
// encodes the array into a string in JSON format (JSON_PRETTY_PRINT - uses whitespace in json-string, for human readable)
$jsondata = json_encode($jsondata, JSON_PRETTY_PRINT);
// saves the json string in "data.json" (in "dirdata" folder)
// outputs error message if data cannot be saved
if(file_put_contents('data.json', $jsondata));
?>

data。json中的数据如下:

 {
    "measure_location": "52.370611247493486, 4.91587221622467",
    "measure_type": "negative",
    "measurement": "violence",
    "note_text": ""
 }

我可以调整我的PHP代码,使数据看起来像这样:

{
  "type": "Feature",
  "geometry": {
    "type": "Point",
    "coordinates": [
      "4.91587221622467",
      "52.370611247493486"
    ]
  },
  "properties": {
    "type": "negative",
    "input": "violence",
    "note": ""
  }
}

感谢charlietfl,我得到了答案。将php代码改为:

<?php
// Read from json file
$jsondata = json_decode( file_get_contents('data.json') );
// Add the new data
$jsondata [] = array(
                  'type' => 'Feature',
                  'geometry' => array(
                    'type' => 'Point',
                    'coordinates' => $_POST["measure_location"],
                  ),
                  'properties' => array(
                    'type' => $_POST["measure_type"],
                    'input' => $_POST["measurement"],
                    'note' => $_POST["note_text"],
                  )
                );
// encodes the array into a string in JSON format (JSON_PRETTY_PRINT - uses whitespace in json-string, for human readable)
$jsondata = json_encode($jsondata, JSON_PRETTY_PRINT);
// saves the json string in "data.json" (in "dirdata" folder)
// outputs error message if data cannot be saved
if(file_put_contents('data.json', $jsondata));
?>

我不能为你工作的代码。我试过很多次了。它生成了一个错误格式的JSON。正确的代码应该是,

$jsondata -> features [] = array(
                  'type' => 'Feature',
                  'geometry' => array(
                    'type' => 'Point',
                    'coordinates' => $_POST["measure_location"],
                  ),
                  'properties' => array(
                    'type' => $_POST["measure_type"],
                    'input' => $_POST["measurement"],
                    'note' => $_POST["note_text"],
                  )
                );