- Announcing the release of QGIS 1.4.0 'Enceladus'
- Carson Farmer's report back on the Vienna Hackfest
- Vienna Hackfest 2009 Report Back
- Introducing the QGIS Hackfest (Vienna 2009) crew
- Announcing the release of QGIS 1.3.0 'Mimas'
- Announcing the releases of QGIS 1.0.2 (stable) and QGIS 1.1.0 'Pan' (unstable).
- Summer of Code project: Label placement
- QGIS and Google Summer of Code 2009
- QGIS Is And Will Remain Free Open Source Software
- QGIS Going Closed Source
Forum
[SOLVED] Reinstall Graticule Plugin?
by hagg_koos (Posted Wed Mar 10, 2010 2:54 pm)
Ok! I found the one in ftools.
Creating those graticule shape files is a good way to do quality control on georef'd maps.
Have a great day everyone!
Koos
Read the main topic related to this post
svg symbols
by Gede2A (Posted Wed Mar 10, 2010 2:47 pm)
look here :http://lists.osgeo.org/pipermail/qgis-developer/2009-November/008427.html and the following answers
Read the main topic related to this post
Add the _geom to an existing feature.
by underdark (Posted Wed Mar 10, 2010 2:27 pm)
QGIS plugins can only be developed in C++ and Python. But getting in to Python is a piece of cake if you're used to C#.
There's a QGIS developer meeting (aka Hackfest) next weekend. I'll try to bring the topic ("adding geometries into NULL-fields") up. Maybe it's not even a big deal and can be implemented already during the hackfest.
Read the main topic related to this post
Problem with shape file positioning
by Gede2A (Posted Wed Mar 10, 2010 2:24 pm)
seems like your project properties is in wgs 84
Read the main topic related to this post
How can I change data directly in the attributetable?
by Gede2A (Posted Wed Mar 10, 2010 2:12 pm)
right clic on the layer, save as a shapefile
Read the main topic related to this post
How can I change data directly in the attributetable?
by ososo (Posted Wed Mar 10, 2010 12:50 pm)
How can I do that?
Read the main topic related to this post
Reinstall Graticule Plugin?
by underdark (Posted Wed Mar 10, 2010 8:01 am)
It's generally not possible to install pre 1.0 plugins with QGIS versions > 1.0
Seems like graticule creator has been replaced by a function in ftools (see http://lists.osgeo.org/pipermail/qgis-trac/2009-February/002182.html)
Read the main topic related to this post
[SOLVED] WFS-T support in QGIS?
by underdark (Posted Wed Mar 10, 2010 7:56 am)
I think Marco Hugentobler developed this plugin. But even if he didn't he should be able to point you to a developer:
Dr. Marco Hugentobler
HUGIS - GIS programming and consulting
Webereistr. 66
CH-8134 Adliswil
http://homepage.hispeed.ch/hugis/
Read the main topic related to this post
QGIS As Framework In Developing Custom Application
by daniel02_0403 (Posted Wed Mar 10, 2010 7:37 am)
Hello to all,
I'm just new to QGIS and found it very interesting.
I'm trying to build a mapping application, can I use QGIS as the framework or engine or something like that for my development?
I hope to hear constructive opinions and suggestions.
Thank you very much!
Read the main topic related to this post
[SOLVED] WFS-T support in QGIS?
by adamlodge (Posted Tue Mar 09, 2010 9:57 pm)
This has all of a sudden become a high priority item for a project I am working on. Can anyone refer me to a developer who may be able to create a plugin that will support wfs-t transactions?
Thanks
-Adam
alodge@fargeo.com
Read the main topic related to this post
Reinstall Graticule Plugin?
by hagg_koos (Posted Tue Mar 09, 2010 4:55 pm)
Back in v 0.11.0 there was a graticule plugin that was pretty useful. I don't see it in 1.4, except for in the Map Composer.
I tried to copy the Dll from the 0.11.0 plugins folder over to the 1.4 directories, but have not had any success in installing that way. It is also not listed in the main repositories.
Does anybody know how I can get this plugin installed in 1.4? This is on a WIndows XP machine.
Thanks!
Koos
Read the main topic related to this post
Open Source approach to clipping scanned maps
by hagg_koos (Posted Tue Mar 09, 2010 4:48 pm)
Hi,
I use Adobe Photoshop for that kind of thing, an Open Source alternative to that is called GIMP (originally for Linux but also available for other OS's)
Some maps (due to projection) will not be perfectly square- I fill the segments around the border with a color (usually white=255) and label that as the 'no data' value once it's georef'd. That border can be any unique color that is not in your map.
I have also heard of MicroDEM, which has a lot under it's hood- but I have yet to try it.
Hope this helps!
Koos
Read the main topic related to this post
Add the _geom to an existing feature.
by underdark (Posted Tue Mar 09, 2010 2:51 pm)
Sorry for the confusion. I forgot that you're working on Spatialite.
Anyway, for Spatialite there is also a function for loading shapefiles (.loadshp i think). You can simply digitize the geometries and later join the attributes to the table via SQL. There is no need to program anything. But if you like programming, maybe you'd consider writing a QGIS plugin
Read the main topic related to this post
install contour plugin in windows xp
by underdark (Posted Tue Mar 09, 2010 2:46 pm)
Using OSGeo4W you can install missing libs from the libs section of advanced installation. Installing manually installs the to your windows python installation but not to the one QGIS is trying to use.
Read the main topic related to this post
Add the _geom to an existing feature.
by underdark (Posted Tue Mar 09, 2010 1:20 pm)
I'm not aware of any way to populate geometry values that are NULL. But you could put some dummy geometry there and edit it in QGIS afterwards. An alternative would be to create layers (shapefiles) of geometries, digitize the geometries and assign them the corresponding ids used in your original data from flash filer. Load the finished shapefiles into Postgis using SPIT or shp2pgsql and join attribute data from flash filer to the geometries.
Read the main topic related to this post
Add the _geom to an existing feature.
by jwolter (Posted Tue Mar 09, 2010 12:56 pm)
No, Flash Filer doesn't have any geometry that is why I'm moving to SpatiaLite.
After I create all of my tables in SpatiaLite I run my AddGeometry.sql script to add the "the_geom" columns to the five tables that will need geometry.
SELECT AddGeometryColumn('SnapFarms', 'the_geom', 3071, 'POINT', 2);
SELECT AddGeometryColumn('SnapFields', 'the_geom', 3071, 'POLYGON', 2);
SELECT AddGeometryColumn('SnapSoilSamples', 'the_geom', 3071, 'POINT', 2);
SELECT AddGeometryColumn('SnapWater', 'the_geom', 3071, 'POLYGON', 2);
SELECT AddGeometryColumn('SnapWells', 'the_geom', 3071, 'POINT', 2);
Then, after inserting data from the FF tables into my SpatiaLite tables the "the_geom" value defaults to NULL.
Can I use QGIS editing to populate those NULL geometry values?
Thanks,
Joe
Read the main topic related to this post
NEED HELP WITH ROAD NAMES AND CANVAS OPACITY!
by underdark (Posted Tue Mar 09, 2010 12:33 pm)
Using QGIS labeling plugin will display the road names nicely in QGIS but I don't think it reflects in the generated .map file. You have to study the mapfile documentation to find how labeling is achieved there. But Mapserver certainly has a pretty good labeling engine.
- Code: Select all
- # Background color for the map canvas -- change as desired
IMAGECOLOR 192 192 192
This line defines the grey background color visible on your screen shot. I'm not that familiar with the mapfile api but maybe you can change IMAGECOLOR to NONE ... or something like that.
Read the main topic related to this post
How I can choose a no earth CRS on map-server?
by underdark (Posted Tue Mar 09, 2010 12:26 pm)
What exactly are you trying to do? Do you want to host your own WMS? Which server software are you using?
Read the main topic related to this post
How can I change data directly in the attributetable?
by underdark (Posted Tue Mar 09, 2010 12:24 pm)
You can't change the attribute table of layers based on CSV files in QGIS. An alternative would be to save the layer as shapefile. You can edit the attirbute table of layers based on shapefiles.
Read the main topic related to this post
install contour plugin in windows xp
by fanngyuan (Posted Tue Mar 09, 2010 11:30 am)
stand-alone
Read the main topic related to this post

Recent comments
25 weeks 9 hours ago
31 weeks 2 days ago
32 weeks 1 day ago
32 weeks 5 days ago
34 weeks 4 days ago
40 weeks 22 hours ago
40 weeks 4 days ago
41 weeks 1 day ago
41 weeks 1 day ago
41 weeks 1 day ago