This is an automated email from the ASF dual-hosted git repository.

kontinuation pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sedona-testing.git


The following commit(s) were added to refs/heads/main by this push:
     new 48f6cd7  Add some raster files for testing the to-be-added raster 
functions in SedonaDB (#10)
48f6cd7 is described below

commit 48f6cd7efbc9e4f14bd3caf3a706e2cf12b9d6ce
Author: Kristin Cowalcijk <[email protected]>
AuthorDate: Thu Feb 12 00:53:44 2026 +0800

    Add some raster files for testing the to-be-added raster functions in 
SedonaDB (#10)
    
    Some of the test files were taken from the apache/sedona repository (see 
https://github.com/apache/sedona/tree/master/spark/common/src/test/resources/raster);
 some other files were cropped tiles of famous raster dataset, including NAIP, 
Landsat-8, Sentinel-2 and AlphaEarth.
---
 data/raster/README.md       |  44 ++++++++++++++++++++++++++++++++++++++++++++
 data/raster/alphaearth.tiff | Bin 0 -> 784400 bytes
 data/raster/landsat8.tif    | Bin 0 -> 713729 bytes
 data/raster/naip.jp2        | Bin 0 -> 146005 bytes
 data/raster/sentinel2.tif   | Bin 0 -> 322188 bytes
 data/raster/test.nc         | Bin 0 -> 124336 bytes
 data/raster/test1.asc       |   7 +++++++
 data/raster/test1.tiff      | Bin 0 -> 174803 bytes
 data/raster/test2.tif       | Bin 0 -> 2785537 bytes
 data/raster/test3.tif       | Bin 0 -> 6619 bytes
 data/raster/test4.tiff      | Bin 0 -> 467 bytes
 data/raster/test5.tiff      | Bin 0 -> 209199 bytes
 12 files changed, 51 insertions(+)

diff --git a/data/raster/README.md b/data/raster/README.md
new file mode 100644
index 0000000..dd2281d
--- /dev/null
+++ b/data/raster/README.md
@@ -0,0 +1,44 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements.  See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership.  The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied.  See the License for the
+ specific language governing permissions and limitations
+ under the License.
+ -->
+
+# Raster Test Files
+
+This directory contains raster files used for testing Sedona's raster 
functionality.
+Files are sourced from public datasets and the [Apache Sedona test 
resources](https://github.com/apache/sedona/tree/master/spark/common/src/test/resources/raster).
+
+## Public Dataset Tiles
+
+These are small cropped tiles from well-known public raster datasets. All 
permit free redistribution.
+
+- `naip.jp2`: A 512x512 JPEG 2000 tile from the 
[NAIP](https://www.usgs.gov/centers/eros/science/usgs-eros-archive-aerial-photography-national-agriculture-imagery-program-naip)
 (National Agriculture Imagery Program), 3 bands, 0.6m resolution, NAD83 / UTM 
zone 10N. NAIP imagery is U.S. public domain.
+- `landsat8.tif`: A 512x512 GeoTIFF tile from [Landsat 
8](https://www.usgs.gov/landsat-missions/landsat-8) (USGS/NASA), 1 band, 30m 
resolution, WGS 84 / UTM zone 46N. Landsat data is U.S. public domain.
+- `sentinel2.tif`: A 512x512 GeoTIFF tile from 
[Sentinel-2](https://sentinels.copernicus.eu/web/sentinel/missions/sentinel-2) 
(ESA/Copernicus), 1 band, 10m resolution, WGS 84 / UTM zone 14N. Contains 
modified Copernicus Sentinel data. Licensed under the [Copernicus Sentinel Data 
Terms](https://sentinels.copernicus.eu/documents/247904/690755/Sentinel_Data_Legal_Notice),
 free and open access.
+- `alphaearth.tiff`: A 128x128 GeoTIFF tile from the [AlphaEarth Foundations 
Satellite 
Embedding](https://developers.google.com/earth-engine/datasets/catalog/google_research_open_buildings_temporal_v1)
 dataset, 64 bands (Int8), WGS 84 / UTM zone 10N. Licensed under [CC-BY 
4.0](https://creativecommons.org/licenses/by/4.0/). Attribution: "The 
AlphaEarth Foundations Satellite Embedding dataset is produced by Google and 
Google DeepMind."
+
+## Test Files from Apache Sedona
+
+These files originate from the [Apache Sedona 
repository](https://github.com/apache/sedona/tree/master/spark/common/src/test/resources/raster),
 licensed under Apache License 2.0.
+
+- `test1.tiff`: A 512x517 single-band GeoTIFF (Byte)
+- `test1.asc`: A 2x2 Esri ASCII Grid (cellsize 30)
+- `test2.tif`: A 1491x1387 GeoTIFF with 3 bands (Byte, RGB)
+- `test3.tif`: A 32x32 GeoTIFF with 4 bands (UInt16, LZW compressed)
+- `test4.tiff`: A 10x10 single-band GeoTIFF (Byte)
+- `test5.tiff`: A 1440x720 single-band GeoTIFF (Byte, palette color)
+- `test.nc`: A NetCDF file (512x512)
diff --git a/data/raster/alphaearth.tiff b/data/raster/alphaearth.tiff
new file mode 100644
index 0000000..de7204c
Binary files /dev/null and b/data/raster/alphaearth.tiff differ
diff --git a/data/raster/landsat8.tif b/data/raster/landsat8.tif
new file mode 100644
index 0000000..54e0fb2
Binary files /dev/null and b/data/raster/landsat8.tif differ
diff --git a/data/raster/naip.jp2 b/data/raster/naip.jp2
new file mode 100644
index 0000000..bc86e2e
Binary files /dev/null and b/data/raster/naip.jp2 differ
diff --git a/data/raster/sentinel2.tif b/data/raster/sentinel2.tif
new file mode 100644
index 0000000..1224e26
Binary files /dev/null and b/data/raster/sentinel2.tif differ
diff --git a/data/raster/test.nc b/data/raster/test.nc
new file mode 100644
index 0000000..2f7b67d
Binary files /dev/null and b/data/raster/test.nc differ
diff --git a/data/raster/test1.asc b/data/raster/test1.asc
new file mode 100644
index 0000000..8d16491
--- /dev/null
+++ b/data/raster/test1.asc
@@ -0,0 +1,7 @@
+NCOLS 2
+NROWS 2
+XLLCORNER 378922
+YLLCORNER 4072345
+CELLSIZE 30
+NODATA_VALUE 0
+0 1 2 3
diff --git a/data/raster/test1.tiff b/data/raster/test1.tiff
new file mode 100644
index 0000000..bebd682
Binary files /dev/null and b/data/raster/test1.tiff differ
diff --git a/data/raster/test2.tif b/data/raster/test2.tif
new file mode 100644
index 0000000..a0a38aa
Binary files /dev/null and b/data/raster/test2.tif differ
diff --git a/data/raster/test3.tif b/data/raster/test3.tif
new file mode 100644
index 0000000..776d753
Binary files /dev/null and b/data/raster/test3.tif differ
diff --git a/data/raster/test4.tiff b/data/raster/test4.tiff
new file mode 100644
index 0000000..2130fc1
Binary files /dev/null and b/data/raster/test4.tiff differ
diff --git a/data/raster/test5.tiff b/data/raster/test5.tiff
new file mode 100644
index 0000000..6caabea
Binary files /dev/null and b/data/raster/test5.tiff differ

Reply via email to