This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Vendor\Package\Routing; | |
use TYPO3\Flow\Annotations as Flow; | |
use TYPO3\Neos\Domain\Service\SiteService; | |
use TYPO3\TYPO3CR\Domain\Model\NodeInterface; | |
use TYPO3\Neos\Routing\Exception as Exception; | |
/** | |
* A route part handler for finding nodes specifically in the website's frontend. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#install gdal | |
brew install gdal | |
#convert 1:1 | |
ogr2ogr -f "GeoJSON" file.geojson file.shp | |
#convert loose, higher tolerance in simplify reduce files size and lost data precision | |
ogr2ogr -simplify 0.000001 -f "GeoJSON" file.geojson file.shp |