├── .gitmodules ├── gdal ├── .gitignore ├── consumer-rules.pro ├── src │ └── main │ │ └── AndroidManifest.xml ├── proguard-rules.pro ├── build.gradle └── build_cpp.sh ├── gdaltest ├── .gitignore ├── src │ └── main │ │ ├── assets │ │ └── gdal_test_data │ │ │ ├── shp中文测试2.cpg │ │ │ ├── shp中文测试3_GB2312.cpg │ │ │ ├── shp中文测试.zip │ │ │ ├── shp中文测试2.dbf │ │ │ ├── shp中文测试2.shp │ │ │ ├── shp中文测试2.shx │ │ │ ├── shp中文测试3_GB2312.dbf │ │ │ ├── shp中文测试3_GB2312.shp │ │ │ ├── shp中文测试3_GB2312.shx │ │ │ ├── shp中文测试2.prj │ │ │ └── shp中文测试3_GB2312.prj │ │ ├── res │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── themes.xml │ │ │ └── colors.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ └── drawable │ │ │ └── ic_launcher_background.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── gdaltest │ │ │ ├── ui │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Type.kt │ │ │ │ └── Theme.kt │ │ │ ├── asset_reader.kt │ │ │ └── MainActivity.kt │ │ └── AndroidManifest.xml ├── proguard-rules.pro └── build.gradle ├── .idea ├── .gitignore ├── compiler.xml ├── kotlinc.xml ├── vcs.xml ├── migrations.xml ├── deploymentTargetSelector.xml ├── misc.xml └── gradle.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── screenshots └── make_gdal_module.png ├── .gitignore ├── settings.gradle ├── docker ├── Dockerfile ├── Dockerfile_16kb └── cmake_modules │ └── FindJNI.cmake ├── gradle.properties ├── gradlew.bat ├── README.md └── gradlew /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gdal/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /gdal/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gdaltest/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试2.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试3_GB2312.cpg: -------------------------------------------------------------------------------- 1 | GB2312 -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /gdaltest/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | gdaltest 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /screenshots/make_gdal_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/screenshots/make_gdal_module.png -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/assets/gdal_test_data/shp中文测试.zip -------------------------------------------------------------------------------- /gdaltest/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /gdaltest/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /gdaltest/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/assets/gdal_test_data/shp中文测试2.dbf -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/assets/gdal_test_data/shp中文测试2.shp -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/assets/gdal_test_data/shp中文测试2.shx -------------------------------------------------------------------------------- /gdaltest/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /gdaltest/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /gdal/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /gdaltest/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /gdaltest/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /gdaltest/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /gdaltest/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试3_GB2312.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/assets/gdal_test_data/shp中文测试3_GB2312.dbf -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试3_GB2312.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/assets/gdal_test_data/shp中文测试3_GB2312.shp -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试3_GB2312.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/assets/gdal_test_data/shp中文测试3_GB2312.shx -------------------------------------------------------------------------------- /gdaltest/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kikitte/GDAL4Android/HEAD/gdaltest/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试2.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /gdaltest/src/main/assets/gdal_test_data/shp中文测试3_GB2312.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /gdaltest/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |