Skip to content

adoptrti/geojson2image

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GeoJSON to Image

This is a PHP class for generate Image from GeoJSON.

How to use

include(__DIR__ . '/GeoJSON2Image.php');
$max_size = 1000;
$ret = GeoJSON2Image::json2image($json, $max_size);
$ret->image;   // GD Image object
$ret->boundry; // array(min_x, max_x, min_y, max_y) boundry

Files

  • GeoJSON2Image.php: main class
  • geojson2png: generate png from geojson file
  • TaiwanCounty.json: Taiwan County GeoJSON sample
  • TaiwanCounty.png: Taiwan County output (command: ./geojson2png TaiwanCounty.json; mv output.png TaiwanCounty.png )

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%