Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
4answers
4k views

NoSQL and spatial data

Has any of you had any experience with using NoSQL (non-relational) databases to store spatial data? Are there any potential benefits (speed, space, ...) of using such databases to hold data for, say, ...
3
votes
3answers
1k views

how to compile spatialite for iOS

I am new here and this is my first topic. I am very new on iOS platform and i am trying to use spatialiate extension with sqlite3 but i couldn't do this. It is making me crazy. I don't know how and ...
3
votes
3answers
1k views

SQLite + SpatiaLite problems

I'm trying to access a SpatiaLite from C# using System.Data.SQLite provider. When I try to load the SpatiaLite extension, I always get the System.Data.SQLite.SQLiteException: SQLite error The ...
2
votes
2answers
76 views

ActiveRecord set field to SQL expression

I am using Ruby 1.8.7 and Rails 2.3.8 and have a number of locations represented by a latitude and a longitude. I am using the SQLite SpatiaLite extension to convert the coordinates to the well-known ...
2
votes
2answers
121 views

Python: SpatiaLite table to numpy recarray with datetime format?

I posted this question at the QGIS-user forum but it might be too technical, thus I take a chance and try here as well. My plan is to have a QGIS plugin that reads and plots time series data ...
2
votes
1answer
90 views

Do I need specific configuration for Spatialite with GeoDjango?

According to https://docs.djangoproject.com/en/1.3/ref/contrib/gis/db-api/, Spatialite supports GeoQuerySet.distance(). However, having imported an area list (MultiPolygon as mpoly attribute), I'm ...
2
votes
1answer
246 views

pyspatialite symbol not found for _iconv

I am trying to compile pyspatialite 2.6.1 using the command sudo python setup.py install It compiles successfully but the resulting binary is missing a symbol. When I import the dbapi2 module from ...
2
votes
3answers
2k views

Android NDK build of spatialite?

I'm attempting to build a copy of sqlite with spatialite extensions. I've seen the one or two related posts online related to this issue, but no one seems to have gone all the way. I've downloaded ...
2
votes
2answers
1k views

Getting GeoDjango + Spatialite running on Windows

I continue to have problems setting up a GeoDjango installation that uses Spatialite as a backend on a Windows machine. I used the GeoDjango installer and downloaded the precompiled libraries from ...
1
vote
0answers
74 views

Sqlite load_extension fail for spatialite in Python

I am trying to use the Spatialite beta version 3.0 because I am using Windows 7 on a 64-bit machine. I consistently get the dreaded sqlite3.OperationalError: The specified module could not be found. ...
1
vote
1answer
83 views

Build a static library for iOS - specifically spatialite

First, please forgive and point out if I am to use some other protocol for referencing another thread/post. There was a previous thread how to compile spatialite for iOS where the top answer partly ...
1
vote
1answer
107 views

Getting GeoDjango working on RHEL

I'm working through dependency problems while installing GeoDjango dependencies on RHEL. I would love step-by-step instructions from anyone who has done this before. I'm transferring a working app ...
0
votes
1answer
48 views

What unit is does Spatialite's Distance() function return?

Spatialite has a the ability to calculate the distance between 2 geometries with it's Distance() function. There are other functions that work on LINESTRINGs. However I can't find out what units it ...
0
votes
0answers
121 views

Spatialite-Android Project NDK Build

I am trying to follow the instructions on the spatialite-android project here: link and have some errors are occuring I was hoping someone here could give me a hand. I am using CYGWIN to do the ...
0
votes
0answers
69 views

how to use the functions of “Spatialite” From the library jsqlite.so

je traivaille on a proposed geolocation android, why I have compiled a library spatiality (libjsqlite.so) following a tutorial on this link http://code.google.com/p/spatialite-android/, I want to know ...
0
votes
0answers
70 views

Get nearest geometry in spatiality using spatial index

I'd like to get the nearest feature to a given point in Spatialite using a spatial SQL query. I'd like to speed it up using index table. Spatial index boundary should be calculated from defined point ...
0
votes
0answers
17 views

What do I need to do to run spatialite in a webrole on Azure?

I've been looking into using spatialite on Azure. The precompiled binaries at SpatiaLite 2.3.1 are all for x86 and trying to include libspatialite-1.dll of course won't work since Azure requires x64. ...
0
votes
3answers
280 views

How to copy a Azure blob file to Azure local storage

I have a WCF service hosted in Azure. I have a spatialite database file I'm going to keep in Azure blob storage (1.1G). Compressed it is 500K. I would like to copy it to local storage when my ...
0
votes
0answers
98 views

how-to build spatialite for iOS

Like in subject I want to rebuild the latest version of spatialite for iOS platform. Anyone can help me please? Thanks!
0
votes
0answers
49 views

How do I execute '.dumpshp' from C#?

I'm trying to export a shapefile from spatialite. The command to do this is ".dumpshp". How do I execute this command from C#? My guess was to use SQLiteCommand cmd = cnn.CreateCommand(); ...
0
votes
1answer
130 views

Error when using GeoDjango with SpatiaLite on Ubuntu

I'm trying to get GeoDjango running on SpatiaLite on Ubuntu 11.04, and even with a very minimal setup, I'm hitting a strange error. Saving an instance of a model with geo-fields works, but loading it ...