Fiona reads and writes spatial data files
88
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.
Install with Tessl CLI
npx tessl i tessl/pypi-fionadocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10