[PR] [SEDONA-605] Fix rasterization when useGeometryExtent=false [sedona]

2024-06-07 Thread via GitHub


Kontinuation opened a new pull request, #1473:
URL: https://github.com/apache/sedona/pull/1473

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-605. The PR name follows the 
format `[SEDONA-XXX] my subject`.
   
   ## What changes were proposed in this PR?
   
   Fix the code to compute the width and height of the rasterization result. 
Please refer to the JIRA ticket for a detailed explanation of this problem.
   
   This patch fixes `RS_AsRaster`, `RS_ZonalStats` and `RS_ZonalStatsAll`.
   
   ## How was this patch tested?
   
   Add new tests for RS_AsRaster.
   
   ## Did this PR include necessary documentation updates?
   
   - No, this PR does not affect any public API so no need to change the 
documentation.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[jira] [Created] (SEDONA-605) RS_AsRaster(useGeometryExtent=false) does not work with reference rasters with scaleX/Y < 1

2024-06-07 Thread Kristin Cowalcijk (Jira)
Kristin Cowalcijk created SEDONA-605:


 Summary: RS_AsRaster(useGeometryExtent=false) does not work with 
reference rasters with scaleX/Y < 1
 Key: SEDONA-605
 URL: https://issues.apache.org/jira/browse/SEDONA-605
 Project: Apache Sedona
  Issue Type: Bug
Affects Versions: 1.6.0
Reporter: Kristin Cowalcijk
 Attachments: zonal_stats_issue.zip

This problem is reported by users on Discord. They found that RS_ZonalStats 
does not work with a raster tile in EPSG:4326. Using the attached data you can 
see that the zonal stats computed are mostly NaN:
{code:python}
rawDf = spark.read.format("binaryFile").option("pathGlobFilter", 
"*.tiff").load("zonal_stats_issue/data_andalusia")
rawDf.createOrReplaceTempView("rawdf")
rasterDf = sedona.sql("""
SELECT
  RS_FromGeoTiff(content) as tile,
  path
FROM rawdf
""")
rasterDf.createOrReplaceTempView("l8imgs")

parcels = ShapefileReader.readToGeometryRDD(sedona, 
"zonal_stats_issue/parcelas")
parcles_df = Adapter.toDf(parcels, sedona)
parcles_df.createOrReplaceTempView("parcels")

features_df = sedona.sql("""
WITH matched_tile AS (
SELECT path, tile, geometry, idPanel
FROM l8imgs, parcels
WHERE ST_Intersects(RS_Envelope(tile), parcels.geometry) OR 
ST_Within(RS_Envelope(tile), parcels.geometry)
)
SELECT path, idPanel, RS_ZonalStats(tile, geometry, 1, 'mean') as stats_mean 
FROM matched_tile
""")
features_df.show(1000, False). # <-- Lots of NaN here.
{code}
Output:
{code:java}
+++--+
|path|idPanel 
|stats_mean|
+++--+
|zonal_stats_issue/data_andalusia/s2_20240604_01.tiff|14:38:0:0:14:9002:2 |NaN  
 |
|zonal_stats_issue/data_andalusia/s2_20240604_01.tiff|14:38:0:0:14:32:4   |NaN  
 |
|zonal_stats_issue/data_andalusia/s2_20240604_01.tiff|14:38:0:0:14:32:3   |NaN  
 |
|zonal_stats_issue/data_andalusia/s2_20240604_01.tiff|14:38:0:0:14:30:2   |NaN  
 |
|zonal_stats_issue/data_andalusia/s2_20240604_01.tiff|14:38:0:0:14:26:3   |NaN  
 |
|zonal_stats_issue/data_andalusia/s2_20240604_01.tiff|14:38:0:0:14:27:4   |NaN  
 |
...
{code}
This problem is caused by incorrect rasterization of the parcel geometries when 
the reference raster has scaleX/scaleY smaller than 1. There's some bad 
double->int casting when computing the extent of the result of rasterization, 
which is:

1. Unnecessary when we're using the extent of the reference raster
2. Problematic when handling rasters with non-integral scaleX or scaleY values

This bug affects the following RS functions:
 # {{RS_AsRaster}}
 # {{RS_ZonalStats}}
 # {{RS_ZonalStatsAll}}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Re: [PR] [SEDONA-602] Add ST_LocateAlong [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1471:
URL: https://github.com/apache/sedona/pull/1471


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-604] Add ST_AddMeasure [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1472:
URL: https://github.com/apache/sedona/pull/1472


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-601] Add ST_DelaunayTriangles [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1470:
URL: https://github.com/apache/sedona/pull/1470


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-599] [SEDONA-600] Add ST_MinimumClearance, ST_MinimumClearanceLine [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1469:
URL: https://github.com/apache/sedona/pull/1469


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-598] Add ST_UnaryUnion [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1468:
URL: https://github.com/apache/sedona/pull/1468


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-604] Add ST_AddMeasure [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1472:
URL: https://github.com/apache/sedona/pull/1472

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-XXX. The PR name follows the 
format `[SEDONA-XXX] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_AddMeasure
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-602] Add ST_LocateAlong [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1471:
URL: https://github.com/apache/sedona/pull/1471

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-602. The PR name follows the 
format `[SEDONA-602] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_LocateAlong
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-601] Add ST_DelaunayTriangles [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1470:
URL: https://github.com/apache/sedona/pull/1470

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-XXX. The PR name follows the 
format `[SEDONA-XXX] my subject`.
   
   ## What changes were proposed in this PR?
   
   Passed local tests
   
   ## How was this patch tested?
   
   Add ST_DelaunyTriangles
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-599] [SEDONA-600] Add ST_MinimumClearance, ST_MinimumClearanceLine [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1469:
URL: https://github.com/apache/sedona/pull/1469

   
   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-XXX. The PR name follows the 
format `[SEDONA-XXX] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_MinimumClearance
   Add ST_MinimumClearanceLine
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-598] Add ST_UnaryUnion [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1468:
URL: https://github.com/apache/sedona/pull/1468

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-598. The PR name follows the 
format `[SEDONA-598] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_UnaryUnion
   
   ## How was this patch tested?
   
   Passed local test
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-596] [SEDONA-597] Add ST_SimplifyVW, ST_SimplifyPolygonHull [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1467:
URL: https://github.com/apache/sedona/pull/1467


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-595] [SEDONA-603] Add ST_LinestringFromWKB, ST_MakePointM [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1466:
URL: https://github.com/apache/sedona/pull/1466


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-596] [SEDONA-597] Add ST_SimplifyVW, ST_SimplifyPolygonHull [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1467:
URL: https://github.com/apache/sedona/pull/1467

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-XXX. The PR name follows the 
format `[SEDONA-XXX] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_SimplifyVW
   Add ST_SimplifyPolygonHull
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-595] [SEDONA-603] Add ST_LinestringFromWKB, ST_MakePointM [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1466:
URL: https://github.com/apache/sedona/pull/1466

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-595. The PR name follows the 
format `[SEDONA-595] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_LinestringFromWKB
   Add ST_MakePointM
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[jira] [Created] (SEDONA-602) Add ST_LocateAlong

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-602:
-

 Summary: Add ST_LocateAlong
 Key: SEDONA-602
 URL: https://issues.apache.org/jira/browse/SEDONA-602
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-601) Add ST_DelaunyTriangles

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-601:
-

 Summary: Add ST_DelaunyTriangles
 Key: SEDONA-601
 URL: https://issues.apache.org/jira/browse/SEDONA-601
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-603) Add ST_MakePointM

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-603:
-

 Summary: Add ST_MakePointM
 Key: SEDONA-603
 URL: https://issues.apache.org/jira/browse/SEDONA-603
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-604) Add ST_AddMeasure

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-604:
-

 Summary: Add ST_AddMeasure
 Key: SEDONA-604
 URL: https://issues.apache.org/jira/browse/SEDONA-604
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-600) Add ST_MinimumClearanceLine

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-600:
-

 Summary: Add ST_MinimumClearanceLine
 Key: SEDONA-600
 URL: https://issues.apache.org/jira/browse/SEDONA-600
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-598) Add SST_UnaryUnion

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-598:
-

 Summary: Add SST_UnaryUnion
 Key: SEDONA-598
 URL: https://issues.apache.org/jira/browse/SEDONA-598
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-599) Add ST_MinimumClearance

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-599:
-

 Summary: Add ST_MinimumClearance
 Key: SEDONA-599
 URL: https://issues.apache.org/jira/browse/SEDONA-599
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-596) Add ST_SimplifyVW

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-596:
-

 Summary: Add ST_SimplifyVW
 Key: SEDONA-596
 URL: https://issues.apache.org/jira/browse/SEDONA-596
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-597) Add ST_SimplifyPolygonHull

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-597:
-

 Summary: Add ST_SimplifyPolygonHull
 Key: SEDONA-597
 URL: https://issues.apache.org/jira/browse/SEDONA-597
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-595) Add ST_LineStringFromWKB

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-595:
-

 Summary: Add ST_LineStringFromWKB
 Key: SEDONA-595
 URL: https://issues.apache.org/jira/browse/SEDONA-595
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Re: [PR] [SEDONA-593] [SEDONA-594] Add ST_Relate, ST_RelateMatch [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1465:
URL: https://github.com/apache/sedona/pull/1465


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-591] Add ST_MaxDistance [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1464:
URL: https://github.com/apache/sedona/pull/1464


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-590] [SEDONA-592] Add ST_GeomCollFromText, ST_MPointFromText [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1463:
URL: https://github.com/apache/sedona/pull/1463


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-593] [SEDONA-594] Add ST_Relate, ST_RelateMatch [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1465:
URL: https://github.com/apache/sedona/pull/1465

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-593. The PR name follows the 
format `[SEDONA-593] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_Relate
   Add ST_RelateMatch
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-591] Add ST_MaxDistance [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1464:
URL: https://github.com/apache/sedona/pull/1464

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-591. The PR name follows the 
format `[SEDONA-591] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_MaxDistance
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-590] [SEDONA-592] Add ST_GeomCollFromText, ST_MPointFromText [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1463:
URL: https://github.com/apache/sedona/pull/1463

   
   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-XXX. The PR name follows the 
format `[SEDONA-XXX] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_GeomCollFromText
   Add ST_MPointFromText
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[jira] [Created] (SEDONA-593) Add ST_Relate

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-593:
-

 Summary: Add ST_Relate
 Key: SEDONA-593
 URL: https://issues.apache.org/jira/browse/SEDONA-593
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-594) Add ST_RelatedMatch

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-594:
-

 Summary: Add ST_RelatedMatch
 Key: SEDONA-594
 URL: https://issues.apache.org/jira/browse/SEDONA-594
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-592) Add ST_MPointFromText

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-592:
-

 Summary: Add ST_MPointFromText
 Key: SEDONA-592
 URL: https://issues.apache.org/jira/browse/SEDONA-592
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-591) Add ST_MaxDistance

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-591:
-

 Summary: Add ST_MaxDistance
 Key: SEDONA-591
 URL: https://issues.apache.org/jira/browse/SEDONA-591
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-590) Add ST_GeomColFromText

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-590:
-

 Summary: Add ST_GeomColFromText
 Key: SEDONA-590
 URL: https://issues.apache.org/jira/browse/SEDONA-590
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Re: [PR] [SEDONA-589] Add ST_LongestLine [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1462:
URL: https://github.com/apache/sedona/pull/1462


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-587] Add ST_Force3DM, ST_Force4D [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1461:
URL: https://github.com/apache/sedona/pull/1461


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-589] Add ST_LongestLine [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1462:
URL: https://github.com/apache/sedona/pull/1462

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-589. The PR name follows the 
format `[SEDONA-589] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_LongestLine
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-587] Add ST_Force3DM, ST_Force4D [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1461:
URL: https://github.com/apache/sedona/pull/1461

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-587. The PR name follows the 
format `[SEDONA-587] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_Force3DM
   Add ST_Force4D
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-585] [SEDONA-586] Add ST_ForceCollection, ST_Force3DZ [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1460:
URL: https://github.com/apache/sedona/pull/1460


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-583] Add ST_Length2D [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1458:
URL: https://github.com/apache/sedona/pull/1458


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-584] Add ST_Zmflag [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1459:
URL: https://github.com/apache/sedona/pull/1459


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-585] [SEDONA-586] Add ST_ForceCollection, ST_Force3DZ [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1460:
URL: https://github.com/apache/sedona/pull/1460

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-585. The PR name follows the 
format `[SEDONA-585] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_ForceCollection
   Add ST_Force3DZ
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [SEDONA-582] Add ST_PointFromGeoHash [sedona]

2024-06-07 Thread via GitHub


jiayuasu merged PR #1457:
URL: https://github.com/apache/sedona/pull/1457


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-584] Add ST_Zmflag [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1459:
URL: https://github.com/apache/sedona/pull/1459

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-XXX. The PR name follows the 
format `[SEDONA-XXX] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_Zmflag
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-583] Add ST_Length2D [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1458:
URL: https://github.com/apache/sedona/pull/1458

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-583. The PR name follows the 
format `[SEDONA-583] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_Length2D
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [SEDONA-582] Add ST_PointFromGeoHash [sedona]

2024-06-07 Thread via GitHub


jiayuasu opened a new pull request, #1457:
URL: https://github.com/apache/sedona/pull/1457

   ## Did you read the Contributor Guide?
   
   - Yes, I have read the [Contributor 
Rules](https://sedona.apache.org/latest-snapshot/community/rule/) and 
[Contributor Development 
Guide](https://sedona.apache.org/latest-snapshot/community/develop/)
   
   ## Is this PR related to a JIRA ticket?
   
   - Yes, the URL of the associated JIRA ticket is 
https://issues.apache.org/jira/browse/SEDONA-582. The PR name follows the 
format `[SEDONA-582] my subject`.
   
   ## What changes were proposed in this PR?
   
   Add ST_PointFromGeoHash
   
   ## How was this patch tested?
   
   Passed local tests
   
   ## Did this PR include necessary documentation updates?
   
   - Yes, I am adding a new API. I am using the [current SNAPSHOT version 
number](https://github.com/apache/sedona/blob/99239524f17389fc4ae9548ea88756f8ea538bb9/pom.xml#L29)
 in `vX.Y.Z` format.
   


-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[jira] [Created] (SEDONA-589) Add ST_LongestLine

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-589:
-

 Summary: Add ST_LongestLine
 Key: SEDONA-589
 URL: https://issues.apache.org/jira/browse/SEDONA-589
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-586) Add ST_Force3DZ

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-586:
-

 Summary: Add ST_Force3DZ
 Key: SEDONA-586
 URL: https://issues.apache.org/jira/browse/SEDONA-586
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-585) Add ST_ForceCollection

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-585:
-

 Summary: Add ST_ForceCollection
 Key: SEDONA-585
 URL: https://issues.apache.org/jira/browse/SEDONA-585
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-588) Add ST_Force4D

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-588:
-

 Summary: Add ST_Force4D
 Key: SEDONA-588
 URL: https://issues.apache.org/jira/browse/SEDONA-588
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-587) Add ST_Force3DM

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-587:
-

 Summary: Add ST_Force3DM
 Key: SEDONA-587
 URL: https://issues.apache.org/jira/browse/SEDONA-587
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-582) Add ST_PointFromGeoHash

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-582:
-

 Summary: Add ST_PointFromGeoHash
 Key: SEDONA-582
 URL: https://issues.apache.org/jira/browse/SEDONA-582
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-583) Add ST_Length2D

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-583:
-

 Summary: Add ST_Length2D
 Key: SEDONA-583
 URL: https://issues.apache.org/jira/browse/SEDONA-583
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (SEDONA-584) Add ST_Zmflag

2024-06-07 Thread Jia Yu (Jira)
Jia Yu created SEDONA-584:
-

 Summary: Add ST_Zmflag
 Key: SEDONA-584
 URL: https://issues.apache.org/jira/browse/SEDONA-584
 Project: Apache Sedona
  Issue Type: New Feature
Reporter: Jia Yu






--
This message was sent by Atlassian Jira
(v8.20.10#820010)