Vectorization

I am trying to convert the raster into vector using the experimental process from one of the processes of https://openeo.dataspace.copernicus.eu/ raster_to_vector but after apply neighbourhood process the job get error Is there a way to convert parcels into vector in openeo-community-examples/python/ParcelDelineation/Parcel delineation.ipynb at main · Open-EO/openeo-community-examples · GitHub
using this approach for now:
sobel_felzenszwalb = segmentationband.apply_neighborhood(
process=openeo.UDF.from_url(“https://raw.githubusercontent.com/Open-EO/openeo-community-examples/refs/heads/main/python/ParcelDelineation/udf_sobel_felzenszwalb.py”),
size=[
{“dimension”: “x”, “value”: 256, “unit”: “px”},
{“dimension”: “y”, “value”: 256, “unit”: “px”},
],
overlap=[
{“dimension”: “x”, “value”: 0, “unit”: “px”},
{“dimension”: “y”, “value”: 0, “unit”: “px”},
],
)
vectorization = sobel_felzenszwalb.raster_to_vector()
vectorization_job = vectorization.create_job(
title=“vectorization”,
out_format=“json”,
job_options=job_options
)
vectorization_job.start_and_wait()
vectorization_job.download_result(base_path / “parcels.json”)

As replied on the other forum:

Hi, I’m investigating your issue with raster_to_vector. Can you perhaps also provide the batch job id of the job that failed? That helps me locate what is going wrong.

duplicate of Vectorization - openEO API - Copernicus Data Space Ecosystem | Community forum