| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 2 months |
| seen | 7 hours ago | |
| stats | profile views | 74 |
|
11h |
comment |
Calculating distance and/or time taken to travel from population centre to nearest hospital in QGIS Did you look into anita graser examples of pgrouting. Take also a look into [GRASS network functions] (jcastellssala.wordpress.com/2012/05/07/…). |
|
May 14 |
comment |
Split polygons and extract points Separating the polygons in separate files would mean that you would need to merge them back later right? Do you have your data in shapefile? I would try katahdin suggestion first. Install Postgresql\postgis and put your data there. With Postgis spatial index QGIS will decide better what to draw and won't care about the rest. Also, In QGIS you might want to set Scale dependent rendering for your layer, for instance to draw points only if you zoom to the level of one polygon. That will make rendering the full zoom faster. |
|
May 8 |
comment |
How calculate areas between certain contour lines in qgis? Try using Interpolation tool in Raster Menu. |
|
May 6 |
comment |
How calculate areas between certain contour lines in qgis? How about you create a DEM from your contour lines? After that you could reclass your raster in the desired elevation levels, and then calculate the area (n_of_ pixes * pixel_size²) for each class. |
|
Apr 23 |
comment |
how separate Mixed classes Hello Nora, welcome to gis.stackexchange! Could you please edit your question and explain a bit more of your problem. For instance, how is africacover data organized. Are you saying that, in an attribute, you have both "6R" values and "2H/6R" and you want to select all features having "6R" even if it's mixed with other? |
|
Apr 23 |
comment |
Is it possible to show our custom message in QGIS Status bar using python? @venkat, If you think this was the right answer for your question, please accept it as correct. Thanks. |
|
Apr 22 |
awarded | Constituent |
|
Apr 22 |
comment |
How to make digitization more detailed afterwards with QGIS? Maybe another approach, isolate both polygons in a shapefile and merge them (give polygon 2 attributes). Make sure you have no holes in the resulting polygon. Use polygons to lines on polygon 1 to convert it to lines. Then use union to cut your bigger polygon in two, or use Difference to erase polygon 1 area. |
|
Apr 21 |
comment |
How to make digitization more detailed afterwards with QGIS? In the snapping options set the Avoid intersection to that layer. Then, when digitalizing the second polygon, near the border, just draw simple lines inside the first polygon. In the end QGIS will erase the overlapping part. |
|
Apr 15 |
awarded | Caucus |
|
Apr 15 |
comment |
How can I change SQL query through a layer of an action (python)? Welcome to gis.stackexchange.com. you need to be a bit more specific about your question. What software are you using? What's the type of you layers and where are they stored? |
|
Apr 15 |
comment |
Capitalizing The First Letter Of Each Word In Attribute Field Take a look into my Edit, in your especific case, it will be: value = <BLD_NAME>.title() Notice that Python is case sensitive. Also, title() is not a function but a method of the class string, that's why the syntax is string.title() |
|
Apr 15 |
revised |
Capitalizing The First Letter Of Each Word In Attribute Field added 127 characters in body |
|
Apr 15 |
answered | Capitalizing The First Letter Of Each Word In Attribute Field |
|
Apr 4 |
comment |
Help in GRASS/QGIS/Python I think that is a totally different question. You should post a new question for that. Very short answer, fid is the feature ID. |
|
Apr 1 |
comment |
How to calculate weighted mean coordinates within polygons? How about use the Vector > Analysis Tools > Mean Coordinates? |
|
Mar 28 |
comment |
Unable to connect Postgis from QGIS 1.8.0 Im' using QGIS 1.8 and 1.9 in Windows 7 64 bit, with Postgres 9.2 and Postgis 2.0 withou any problems. |
|
Mar 27 |
comment |
Is it possible to add a new line in a non-spatial table using Qgis? If someone don't want to open the attribute table each time he needs to add a new line, an alternative to this answer was given in this question |
|
Mar 26 |
comment |
How do I find vector line bearing in QGIS or GRASS? Depending on the quantity of line segments, you could use this very simple (but with some manual work) approach: - In QGIS select the desired line segments and copy them; - Paste it to any text editor, and you will have your features in WKT (Now comes the bad part) - Now you can edit the text to transform it into a csv to import into a spreadsheet. |
|
Mar 25 |
comment |
How to represent two fields of the same states or district layer using different color borders and fills in QGIS? Not really... It must be something related to your data, since I had no problems with it, and you already had problems before. The problem seams to start when you query the "political" field, right? |