jesspav commented on issue #30:
URL: https://github.com/apache/sedona-db/issues/30#issuecomment-3275724141

   Based on these queries I believe that it is the `proj_create: unrecognized 
format / unknown name` that we are being asked to suppress.
   
   ```
   > SELECT ST_Transform(ST_GeomFromText('POINT (1 1)'), 4326, 3857) as geom;
   Execution error: First argument must be a scalar string
   
   > SELECT ST_Transform(ST_GeomFromText('POINT (1 1)'), '4326', '3857') as 
geom;
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   proj_create: unrecognized format / unknown name
   Execution error: Transform error: Failed to create CRS from source '4326': 
Invalid PROJ string syntax
   
   > SELECT ST_Transform(ST_GeomFromText('POINT (1 1)'), 'EPSG:4326', 
'EPSG:3857') as geom;
   ┌─────────────────────────────────────────────┐
   │                     geom                    │
   │                   geometry                  │
   ╞═════════════════════════════════════════════╡
   │ POINT(111319.49079327357 111325.1428663851) │
   └─────────────────────────────────────────────┘
   
   1 row(s)/1 column(s) fetched. 
   Elapsed 0.007 seconds.
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to