-
Notifications
You must be signed in to change notification settings - Fork 120
Description
Problem Description
I understand that Tippecanoe supports reading data sources in WGS84 (EPSG:4326) coordinate system and by default generates vector tiles using the Web Mercator (EPSG:3857) projection tile scheme. I would like to confirm if Tippecanoe itself can directly generate vector tiles using EPSG:4326 or EPSG:4490 tile schemes.
The key point here is that I'm not concerned about the coordinate system of the data source itself (I know the data source can be EPSG:4326), but rather whether the final tile output can use non-Web Mercator tile schemes.
Current Behavior vs. Expected Behavior
Current Behavior: Regardless of the input data's coordinate system, Tippecanoe outputs vector tiles using the Web Mercator (EPSG:3857) projection tile scheme.
Expected Behavior: Hope Tippecanoe can provide an option (such as a new command-line parameter) to support generating vector tiles in other coordinate system tile schemes, such as geographic coordinate system (EPSG:4326) or China Geodetic Coordinate System 2000 (EPSG:4490).
Attempted Alternatives
Since Tippecanoe currently doesn't seem to support direct output of non-Web Mercator tiles, I've explored some possible alternatives:
Tool Conversion: Attempted to use other tools (like GDAL) to convert tile data coordinates after generating standard Web Mercator tiles with Tippecanoe. However, this approach is very complex because both the tile scheme (such as XYZ vs. TMS tile indexing) and the coordinates within the tile data need to be converted, making it difficult to ensure correctness and efficiency.
Finding Alternative Tools: Also explored whether other vector tile tools natively support EPSG:4326 or EPSG:4490 tile schemes.
Additional Context
In certain specific application scenarios, particularly projects related to Chinese geographic information data, there's a need to use the China Geodetic Coordinate System 2000 (EPSG:4490). Additionally, some 3D globe applications often require tiles in geographic coordinates (EPSG:4326) directly to avoid client-side projection transformations.
I've noticed that in Tippecanoe's official documentation and existing issues, there's no clear statement or option about directly outputting non-Web Mercator tile schemes. Parameters like -s or --projection appear to be mainly used for specifying the input data's coordinate system, rather than controlling the output tile scheme.
If Tippecanoe currently cannot directly implement this feature, is the development team considering adding support for non-Web Mercator tile schemes in future versions? Alternatively, could you recommend any viable workarounds or alternative tools to help generate such tiles?
Thank you for your time and attention to this matter!