A command used to retrieve information from a database
0
votes
1answer
11 views
Is it possible to extract many municipalities out of a state map at once?
Is it possible to extract many municipalities out of a state map at once? I mean not to have to do the QUERY for each and one of them?
Thanks in advance.
0
votes
2answers
26 views
How to find polygons with area size between 300 and 500?
I have bunch of polyygons, all with different area-size. I want to find polygons with areasize between 300-500. Normally I would pick out everyone above 300 (query1) and then commit a new query on ...
1
vote
1answer
33 views
Computing altitude from contour table - slow ST_Dwithin query
I am using PostgreSQL 9.2/PostGIS 2.0. I have a table of house addresses and a table of contour lines which are as follows:
address_list
house_id | geom (point, 4283)
---------+---------
1 | ...
1
vote
1answer
19 views
How to solve 'syntax error, unexpected LE' in QGIS query builder?
I have a very simple question about the advanced query builder in QGIS.
I'd like to search for a range of numerical data values in the attribute table, but asking QGIS to show me values that are ...
1
vote
0answers
5 views
uDig window to change between historical dates?
I'm new to uDig, but I'm experienced Java developer. I have points with temperature measurements that change overtime in SQL database. I would like to give user ability to change between historical ...
0
votes
1answer
33 views
How to filter shapefile using definition query?
I have a point shapefile which I want to interpolate using IDW interpolation. However, I want to interpolate only those points which satisfies a certain condition. I need to do it in python and I ...
2
votes
1answer
45 views
Model or Code to query all feature classes in geodatabase by selecting by attribute
I have a geodatabase that has 60+ feature classes that each contain records for 60+ locations. I need to export all records from each feature class for a specific location. In each FC there is a ...
0
votes
1answer
34 views
OpenLayers CQL filter gets info about NOT VISIBLE features
I have a WMS layer and a control WMSGetFeatureInfo.
If I apply a CQL Filter to the layer and I redraw it, the WMSGetFeatureInfo control continue querying also NOT VISIBLE features.
Why in your ...
3
votes
2answers
71 views
How to group and count attribute data?
I have a problem with group same data to count it.
for example, i want to group same code to one and count them.
i can do it when i use MapInfo (Pic 1) but i can't in QGIS. (Pic 2: i can classify ...
1
vote
1answer
52 views
Mapinfo SQL Query for compare for edited data in tables
I have a table that contain several columns, each has their own data. then, someone have made some change in the data (just a little one data editing). how do i know later what data have been ...
1
vote
0answers
21 views
PostGis search query on hstore tags
I am writing a search client, to query postgis db.
The search query will be,
SELECT tags->'name' AS name,ST_Transform(way,4326) AS pt_lonlattext FROM planet_osm_point WHERE lower(tags->'name') ...
1
vote
3answers
67 views
How to search for several different features in the attribute table?
I guess my problem is a quite simple one, but the query builder and I have our difficulties, so maybe someone can help me.
I have a long attribute table in QGIS and am trying to extract about 200 ...
2
votes
1answer
45 views
Determining closest representation of polygon as collection of points+radii
Have a bit of a tough question, which I realize there may not be an easy solution to. Figured what better place to ask.
I'm attempting to transform a polygon into a series of arbitrary points with ...
1
vote
1answer
50 views
Counting and sum by two layers
I´ve got to layers, both polygons. Layer 1 consists of propertiers, where ID is individually names. Layer 2 consists of lakes. The query I want is:
Total count of squaremeters of lakes for each ...
1
vote
2answers
68 views
spatial query st_contains postgis
This seems too simple to be asking this but I am really new to postgis/postgres have been going around in circles with this. I am performing a really simple spatial query where I would like to make a ...
1
vote
2answers
78 views
Merge lines with the same 'name' attribute on QGIS?
I have a shapefile with a few thousand lines, each is a street segment. I'd like to merge all features with the same 'streetName' attribute into a single attribute. I only really care about the name ...
3
votes
2answers
82 views
Why does ArcGIS Server not return data when querying joined fields?
I've been trying to help troubleshoot an issue that is very strange, and I think we've boiled it down to an issue with ArcGIS Server.
We have a map service that shows up in the services directory as:
...
1
vote
1answer
14 views
Why do I suddenly get 'ERROR' as elements in my attribute table after doing a query in QGIS?
I was looking at an .osm file in QGIS using the OSM plugin; I was specifically looking at a country's lines layer. When I checked the attribute table just after opening the .osm, everything looked ...
2
votes
1answer
100 views
How can you tell if a RDBMS is an ArcSDE Geodatabase?
I want to know if there is any way I can query the RDBMS to determine whether it is an ArcSDE Geodatabase, or if I have to do it through ArcObjects. I am wondering if it would be enough to check if ...
0
votes
1answer
33 views
Spatial query without spatial database module
I have the following scenario:
Oracle database without the space module.
Application in JEE2 with the following architecture:
-- Entity
-- Persistence (DAO / JPA + JDBC)
-- Business (BC)
-- Vision ...
1
vote
2answers
64 views
How to speed up spatialite-query using spatialindex?
I have got 2 tables, one of type LineLayer called strlayer, the other one is a PolygonLayer called blayer. The LineLayer contains two rows called fromBland and toBland that should be filled with an ...
1
vote
0answers
57 views
ArcObjects: How to Speedup Spatial Query to Feature Layer?
I have ROAD (POLYLINE) Shape File with more than 400,000 Records. I am working on a code which goes like this:
Loop through all Feature of the Shape File
Take First Feature
Find the LAST VERTEX of ...
0
votes
2answers
52 views
oracle search against intersect of a region that covers the whole world doesnt find any records
I am new to Oracle Spatial, I am trying to implement a service that will take coordinates from a map, and search our database to find any geometries that intersect with that map view. I works fine for ...
0
votes
0answers
20 views
SQL Query Remove Multiple Attributes
I'd like to query a street layer by the ownership of the street (State County etc). I know I can do
"Road_Auth" <> 'IL' or "Road_Auth" <> 'Kane' and so on. This question Select by ...
0
votes
1answer
110 views
A couple GeoExplorer questions
I just started working with the OpenGeo Suite. I'd really like to use it for a County web map, but have a couple questions...
1) Is there a way to add a lat/lon or other X/Y location to the URL and ...
2
votes
2answers
97 views
Select by Attributes - If string has a letter
I'm running ArcMap 10.1.
I'm using a File Geodatabase.
I have a string coordinate field that I want to clean and some records have letters in it (mostly 'N' or 'E' or 'n' or 'e' e.g. '6213210N' or ...
1
vote
1answer
65 views
IQueryFilter where Clause quering two feature class at a time
I need to query two feature class at the same time using IQueryFIlter.
For eg -
FeatureClass -- A has field OBJECTID
FeatureClass -- B has field OBJECTID
what i am tring to do is --
IQueryFilter ...
1
vote
2answers
50 views
Find the majority area within another area
I have a survey grid overlaid unto several administrative areas. Both are polygon features and I have performed a union on both features in order to determine the areal contribution of the segments ...
0
votes
1answer
85 views
Circles created by points inside bounding box query - PostGIS
The table that i want to perform this query has 3 columns: id, the_geom and seen_count.
The query i've been using to get points inside a bounding box is as follows:
SELECT id, ST_AsGeoJSON(the_geom) ...
0
votes
2answers
101 views
ST_DWithin uses Geometry or Geography type
assuming I use the following query to match the locations to a poi within 10km distance:
SELECT
poi.poi_id,
h.loc_id,
(ST_Distance(poi.geom,h.geom)*111.111) as distanceinkm
FROM iut_poi_transl AS ...
0
votes
1answer
56 views
How to select all cities in Germany from city and country layer?
I have 2 layers: layer_1: countries of europe, layer_2: cities of europe
I want to create (and then save) a layer_3 which would be all the cities of Germany.
Is there any good tutorial of how can i ...
1
vote
1answer
96 views
Why isn't my select by attributes query working?
I'm running ArcMap 10.1.
I have a point feature class joined to a table and am trying to query a field.
If I do [field] = 'TEST', it selects all the fields.
But if I do [field] LIKE 'TES%', it ...
0
votes
0answers
37 views
ArcGIS server 10 web adf query attributes task results sorting
I'm fairly new to web mapping and my company uses ArcGIS server 10 web ADF.
I've used 'query attribute' task and given the list of data to select from. Now I was asked if I could sort those results ...
2
votes
1answer
101 views
Help building SQL query to get a list of streets of a city
From two layers in PostGIS (osm_places and osm_roads), I would need to have the roads belonging to a certain city.
It would be fair enough to get the street names of all streets in a radius of X ...
2
votes
3answers
102 views
How can I export or query all hospitals from Open Street Map?
I'd like to extract all the hospital locations in the US from Open Street Map as a reference for my geocoding project. I know how to get all the OSM data for a small area with the QGIS plugin but not ...
3
votes
0answers
133 views
Select features within a country or bounding box effectively using PostGIS
I imported the planet OSM file into a PostgreSQL 9.2/PostGIS 1.5 server using osm2pgsql. I now want to select certain map features which lie within the bounding box formed by a countries borders, e.g. ...
1
vote
1answer
47 views
For each polygon, return yes/no value if it intersects another layer
I have a polygon grid overlaying several other polygon vectors. I wish to visit each polygon in the grid and ask yes/no if each of these layers fall within the grid cell or not. I can do this easily ...
0
votes
2answers
90 views
PostGIS, distance between two users
I have a simple table (location_test) with three column (name, geom , jid). geom is a geometry column with SRID 27700. I set the user's geometry position with:
UPDATE location_test SET geom = ...
2
votes
2answers
187 views
Built a query for polygon Shapefile in R
I use the package maptools to read in Shapefiles in R. I would like to know if there is a function that can built up a query/subset to select only some Polygons based on a specific attribute in the ...
3
votes
2answers
67 views
How to query for a specific point, within a specific polygon?
I have a shapefile points layer, with each point representing either Marginal, suboptimal, or optimal conditions. I want to find only the marginal points within a specific polygon from my catchments ...
2
votes
1answer
88 views
Merge attribute data using spatial query in QGIS
I have 2 vector layers that I wish to correlate attributes - a shape file containing boundary polygons and a shape file containing point locations.
I'm using the vector>spatial query tool to generate ...
3
votes
1answer
94 views
Filter contour lines in QGIS
I have a shapefile of contour lines, with an ALTITUDE attribute with the height ASL in metres. The source data is in 0.5m intervals, but I'd like to filter it down so I get contour lines at (for eg.) ...
1
vote
2answers
129 views
What are the options for working around the max number of records returned for a query task on ArcGIS Server 9.3.1?
I'm trying to return polygon features that intersect a larger polygon which defines my area of interest. It is working in some cases, but when the area of interest gets large (7000 intersecting ...
1
vote
1answer
173 views
Querytask/query - executed select
Is there a way to get to the query condition, which is executed under the querytask ?
I have an example, which is actually a copy of this ArcGIS example ...
0
votes
1answer
111 views
How can I change SQL query through a layer of an action (python)?
I have three layers from three diferent database tables.
When I click in other layer I want to change (with an action) the query of that three layers.
How can I do that?
Thank you
2
votes
3answers
169 views
Creating a where clause from user input/Python list
I am trying to perform a query based on values in a Python list. The where clause will then be used in an Update Cursor, so that the rows NOT equal to the values in the list will be deleted.
This is ...
2
votes
1answer
203 views
Reading OGC geometry data from SQL server using R
I would like to write a script in R that creates a map using OGC geometry data that is stored on a Microsoft SQL server. Is there a way to read OGC geometry data using a query passed from R?
Maybe ...
0
votes
1answer
87 views
In QGIS can I show just the lines in a Postgis query? How can I do that?
I have three tables in Postgresql, each table with one layer of lines.
I want to show the path of an initial line to another final. Is it possible executing a SQL query?
Thanks
My three tables are ...
3
votes
1answer
203 views
How to Find points in a Kilometre radius
I am new to PostGIS and GeoData.
I need to find where the lightning has stroke by a period of time and kilometre radius based on a given location.
I have given lon/lat and my table is:
latitude ...
1
vote
1answer
95 views
How to get the nearest line to a feature?
I have features on map, and i want to get the nearest poly-line to each one.
How to write spatial query to get the nearest one.
I tried to use ISpatialFilter but i couldn't reach anything.