tessl install tessl/pypi-fiona@1.10.0Fiona reads and writes spatial data files
Agent Success
Agent success rate when using this tile
88%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.1x
Baseline
Agent success rate without this tile
80%
A utility that standardizes coordinate reference system (CRS) information from multiple input formats into a common output format.
4326, returns a dictionary with CRS information in PROJ JSON format @test3857, returns a dictionary with CRS information in PROJ JSON format @test"+proj=longlat +datum=WGS84 +no_defs", returns a dictionary with CRS information in PROJ JSON format @test"+proj=merc +a=6378137 +b=6378137", returns a dictionary with CRS information in PROJ JSON format @test4326, returns the Well-Known Text representation of the CRS @test"+proj=longlat +datum=WGS84 +no_defs", returns the Well-Known Text representation of the CRS @test@generates
def parse_crs_to_dict(crs_input):
"""
Parse a CRS from various input formats and return as a dictionary.
Args:
crs_input: Can be an integer (EPSG code), a PROJ string, or a WKT string
Returns:
dict: CRS information in PROJ JSON format (dictionary representation)
"""
pass
def convert_crs_to_wkt(crs_input):
"""
Convert a CRS from various input formats to Well-Known Text format.
Args:
crs_input: Can be an integer (EPSG code), a PROJ string, or a WKT string
Returns:
str: WKT representation of the CRS
"""
passProvides GIS data handling and coordinate reference system support.