- Android botany climate change Data handling Data sources decision support tool forest GIS GIS software GRASS GIS history LibreOffice / OpenOffice Mobile tools Modelling online mapping Open access Operating system QGIS R computing environment research tools Software release Spatialite SQLite statistics tools Ubuntu Uncategorized vegetation
Meta
Tag Archives: SQL
Find and select duplicate values in your vector attribute table
Suppose you have a vector layer in your GRASS GIS database and you want to find all duplicate values in one of the columns of the attribute table of that layer? If you are using SQLite or PostgreSQL as the … Continue reading
Posted in Data handling, GRASS GIS, SQLite
Tagged GRASS GIS, select, SQL, SQLite, vector layer
Leave a comment
Concatenate in SQLite
I wrote before on using concatenate in OpenOffice / LibreOffice and how this alternatively can be done in R using the paste function. You can do the same in SQLite using a query too.
Posted in Data handling, SQLite
Tagged concatenate, example sourcecode, open source, SQL, SQLite
Leave a comment
Select random sample from SQLite table
I came across this post by underdark about how to select a random sample from a table in PostgreSQL. You can achieve the same (selecting 1000 random features from a table) in SQLite using something like below:
Posted in Data handling, GIS, Spatialite, SQLite
Tagged QGIS, random sampling, Spatialite, SQL, SQLite
Leave a comment
Finding and removing carriage returns in your SQLite table
The problem with copy data from e.g., an excel or calc sheet into an SQLite database (or any database I reckon) is that the data you copy might include an carriage return. I found this out the hard way after … Continue reading
