Algumas linguagens de script geoespacial:
1) Python / Jython
Somente Python / Jython:
Python e Jython podem ser usados sozinhos para processar dados geoespaciais sem nenhum software, usando módulos como osgeo (GDAL / OGR), PySAL, Shapely, Fiona, Pyshp, ..., consulte Índice de Pacotes Python, Tópico: GIS ou Geoscript (Jython) . Existem muitos exemplos em GST
como linguagem de script em aplicativos
QGIS, GRASS GIS, GvSIG, OpenJump ou Geoserver (e ArcGIS, veja acima) usam Python / Jython para scripts:
- Quantum GIS ( Python , 1.8, alterações na versão master)
from qgis.core import *
layer = qgis.utils.iface.activeLayer()
for elem in layer.selectedFeatures():
geom= elem.geometry()
attrs = elem.attributeMap()
from grass.script import raster as grassr
grassr.raster_info('s_newfrst3@moi')
{'north':118869.900569, 'timestamp': '"none"', 'min': -456.08587646484398,
'datatype': 'FCELL', 'max': 265.500732421875, 'ewres':
14.008076920000001, 'vertical_datum': '', 'west': 164160.653425,
'units': '', 'title': ' (s_newfrst3)', 'east': 176641.849961, 'nsres':
13.976472729999999, 'south': 112552.534895}
from gvsig import *
layer = currentLayer()
features = layer.features()
for feature in features:
geom = feature.geometry()
values = feature.getValues()
from org.openjump.util.python.JUMP_GIS_Framework import *
layer = getSelectedLayers()
for i in layer.iterator():
print layer.name
# first element of the layer
fc = layer[0].featureCollectionWrapper
for elem in range(fc.size):
obj = fc.features[elem]
geom = obj.getGeometry()
from geoserver import Catalog
cat = Catalog('aff_geol')
print cat.stores()
[u'affleurements', u'cartes']
st = cat['affleurements']
print st.layers()
[u'affs']
l = st['affs']
print l.count()
3214
print l.bounds()
(107206.74,148102.45,114110.46,157514.40, EPSG:31370)
e você também pode usar outras bibliotecas Java, como o Java Topology Suite ( Jython ):
import sys
sys.path.append('.../jts-1.8.0/lib/jts-1.8.jar')
from com.vividsolutions.jts.geom import Point
2) Bash
O GRASS GIS usa Bash (shell e scripts (.sh))
GRASS 6.4.2 (geol):~ > v.out.ascii in=ligneprofil format=standard | grep '^ '|\r.profile -c in=MNT res=30 output=profil.pts
3) R (sem linguagem de código de prettify)
Você pode usar R para todos os tratamentos geoespaciais, consulte Visão da Tarefa CRAN: Análise de Dados Espaciais :
library(maptools)
geol <-readShapePoly("cal.shp")
library(rgdal)
geol = readOGR(dsn=".", layer="cal")
library(PBSmapping)
geol = importShapefile("cal.shp")
library(shapefiles)
geol <- read.shapefile("cal")
# PostGIS
geol = readOGR("PG:dbname=test", "cal")
mas o GRASS GIS também pode usar R diretamente:
GRASS 6.4.2 (geol):~ > R
R version ....
> library(spgrass6)
> G <- gmeta6() # paramètres de Grass, région etc.
> montrait <- readRAST6(c("geologie", "mnt"),cat=c(TRUE, FALSE), ignore.stderr=TRUE,plugin=NULL)
4) BeanShell (Java)
O OpenJump também pode usar o Beanshell (console ou script)
layer = wc.layerManager .getLayer("road").featureCollectionWrapper;
getLongest() {
max = -1;
for (f : layer.features) { length = f.geometry.length; if (f.geometry.length > max) {max = length; result = f;}
}
return result;
print(getLongest().ID);
5) Groovy (Java), Scala e JavaScript
Você pode usar essas linguagens com o GeoScript, veja exemplos
6) Linguagem de Consulta JEQL
Conforme mostrado por Martin Davis ( label jeql )
shapefileReader t file: "agder/agder_buffer.shp";
t = select geomUnionMem(GEOMETRY) g from t;
ShapefileWriter t file: "result.shp";