9,139 reputation
11651
bio website nathanw.net
location Upper Coomera, Australia
age 25
visits member for 2 years, 10 months
seen 15 mins ago
stats profile views 1,291

Technical Consultant/QGIS Specialist at Digital Mapping Solutions. Passionate and enjoy spreading "the good news" about using open source GIS :)

QGIS, PostGIS and Python are my current weapons of choice.

Current Projects:


1h
comment How to set up Python 2.7 to work in both QGIS and ArcGIS?
@UffeKousgaard see update
1h
comment How to set up Python 2.7 to work in both QGIS and ArcGIS?
Ok, worked out what you need. Update coming.
7h
comment How to convert a txt file to shp?
FYI Add Delimited Text Layer is now core and no longer a plugin.
9h
comment Fill up polygons with field value
Which program are you using?
12h
comment how to fetch the geographic data for a given scope effectivily
Which program are you using?
1d
comment ArcPy Field Calculation with special characters
I think I would just rename the column :P
1d
comment ArcPy Field Calculation with special characters
I would say it's because Python is converting µSv to \xe6Sv/h
1d
comment How to symbolize more than one attribute simultaneously in QGIS?
Can you give us an example of your data?
1d
comment What language (or languages) are the next 'big thing'?
I think you could have a safe bet on Python sticking around. The main point is you shouldn't just know one thing.
1d
comment Can QGIS perform graphic clipping?
Is this like a cosmetic clip that updates when you pan?
2d
comment Errors using SelectLayerByAttribute in ArcPy
Should it be " \"ATTRIBUTE\" = 'Criterion'"
2d
comment How to change value of an Line edit dynamically
Try removing your translate code and see if it makes a difference.
2d
comment How to change value of an Line edit dynamically
Do you get an error?
2d
comment Combining polygon geometries with python and QGIS segfaults
You can also do geoms.append( QgsFeature(feat.geometry()) ) which will make a copy of the geometry.
May
21
comment Can I open a form in layer action?
yourcode.somemethod([% FieldName %]). It's Python code you can pass anything you want into it.
May
21
comment Can I open a form in layer action?
Just pass at as a argument, or use [% FieldName %]
May
21
comment Calculating distance and/or time taken to travel from population centre to nearest hospital in QGIS
Are you able to do a bit of Python scripting?
May
20
comment How to use expression in QgsVectorlayer label by using python?
concat(ErrorDescr,'-', Markerid)
May
20
comment Run Python child script using Python Add-In button class?
then there must be something else going on. Can you post more of your code, including any errors and child.py
May
20
comment Run Python child script using Python Add-In button class?
You can always import any Python file, Python just needs to see where it is. Try sys.path.append("C:\\Temp") then import child