android-spatialite icon indicating copy to clipboard operation
android-spatialite copied to clipboard

Spatialite database JNI wrapper for Android

Results 12 android-spatialite issues
Sort by recently updated
recently updated
newest added

The intersection function doesn't return anything when intersecting two MULTILINESTRING, however the spatialite_gui application do returns. I've tested the same query with the same database and the intersection with android-spatialite...

is there a chance for a more recent build with spatialite 5.0.1 with latest sqllite,geos,proj,etc ? i tried doing that the last 2 days but did not succeed too many...

Hello Please we can't seem to use version 2.0.0 as it is no longer available on jitpack repository. `implementation 'com.github.sevar83:android-spatialite:2.0.0'` ``` ERROR: Failed to resolve: android-spatialite Affected Modules: app ```...

Hi there – I'm not a super-expert of Android development nor of Gradle, so please feel free to tell me I'm just missing something :) Basically, I've noticed the following...

I have tested building this project on macOs and this is required for gradle to sync.

you have mentioned spatialite 4.4 in the readme file but the actual library is 4.3a and exportShp does not exists in 4.3. I think its time to update spatialite

Hi, Thanks for great library. Am using the library to run spatialite queries which works perfects. But when i tried to run Spatialite virtual routing query based on this link...

Hello, I need to export shape files in android. so does any query exists to accomplish this task? best

Hi, i've initialized database with: @Override public void onCreate(SQLiteDatabase db) { String createSql = "CREATE TABLE t_geom id INTEGER NOT NULL " + "PRIMARY KEY AUTOINCREMENT " + "name TEXT...

Hi, I am trying to create spatialite db but no luck. Here is my code to ``` getWritableDatabase().rawQuery("select InitSpatialMetadata(1)", null); String sqlCizim = "create table CIZIM(OBJECTID INTEGER PRIMARY KEY AUTOINCREMENT,...