123 reputation
16
bio website
location Cornwall and Isles of Scilly, United Kingdom
age 24
visits member for 8 months
seen 3 mins ago
stats profile views 9

2d
comment Is there a way to connect to PostgreSQL in ArcCatalog without SDE?
hi, is this still read-only?
May
9
comment Is there a way to connect to PostgreSQL in ArcCatalog without SDE?
so basically you can use all the ArcGIS editing tools you would use on a ESRI Geodatabase with featureclasses. I am not sure of the specifics of Topology checks.
May
9
comment Is there a way to connect to PostgreSQL in ArcCatalog without SDE?
It works is by creating a temp geodatabase for the user's selected features and locks those features to the user for editing, using ArcGIS you can then edit the feature in the geodatabase, once the edits are saved, the features are updated in PostGIS. It is also possible to edit all the feature in a layer at once.
May
9
comment Is there a way to connect to PostgreSQL in ArcCatalog without SDE?
yes GISquirrel allows full editing in ArcGIS.
Apr
30
comment bathymetry for a UK location
Try the Channel Coast Observatory website channelcoast.org
Feb
26
comment Can you insert a marker symbol at a specific scale?
Take a look at data driven pages. resources.arcgis.com/en/help/main/10.1/index.html#/…
Feb
22
comment How do I convert GML to ESRI featureclasses?
@Alex Oulton I have the same problem converting XML's which contain GML tags, did you work out an open source solution?
Feb
22
comment 'File is too big' error when uploading QGIS Plugin
@nhopton This seems to be the the only solution, but still not ideal, if the OS change the schema of there Code Point CSV then the plugin would fail.
Feb
20
comment How to use QgsVertexMarker in a python plugin?
doh! Many thanks :)
Oct
24
comment How do I programmatically export a single Data Driven Page to JPEG?
@Tomek I am using Windows. My page ID's start at 40000 and I have tried several different page numbers with the same results. I thought it might be something to do with choosing page layout but removing that hasn't made a difference.
Oct
23
comment How do I programmatically export a single Data Driven Page to JPEG?
@Tomek I was using 'String' as the input parameter in arcgis but also tried amending my code as you suggested and using 'Double' with the same result :-(
Oct
23
comment What does “Error when writing Schema: A unique destination featuretype name could not be generated for” mean?
@AlexOulton Did you find a solution? I have the same problem.
Oct
23
comment How do I programmatically export a single Data Driven Page to JPEG?
@Arabella thanks but tried that, see above comments.
Oct
22
comment How do I programmatically export a single Data Driven Page to JPEG?
@Tomek Thanks I have tried that and get 'PageLayoutObject: Error in SetDataDrivenPageID'
Oct
11
comment How do I correctly use 'MultiValue' in Python script parameters?
@KHibma tried that and got 'clip1 does not exist or is not supported'
Oct
11
comment How do I correctly use 'MultiValue' in Python script parameters?
Thanks @KHibma Looking at your answer I think I am going about this the wrong way. I have a geodatabase containing a number of feature classes, and I want to clip each feature class several times using different shapefiles.
Oct
11
comment How do I correctly use 'MultiValue' in Python script parameters?
hi @om_henners Sorry I corrected my question, should make more sense now.
Oct
3
comment How to programmatically work with featureclasses from multiple geodatabases?
gdb_dir = [“C:/GIS/dir1”, “C:/GIS/dir2”, “C:/GIS/dir3”] for gdb in gdb_dir: arcpy.env.workspace = os.path.join(gdb_dir, gdb) if gdb == "geo1.gdb": fcList = ["list of feature classes"] for featureClass in fcList: DO STUFF elif gdb == "geo2.gdb" fcList = ["list of feature classes”] for featureClass in fcList: DO STUFF elif gdb == "geo3.gdb" fcList = list of feature classes"] for featureClass in fcList: DO STUFF
Oct
3
comment How to programmatically work with featureclasses from multiple geodatabases?
Thanks Chad Cooper and @LarsVegas. Would the following work ok?
Oct
3
comment How to programmatically work with featureclasses from multiple geodatabases?
@PolyGeo yes sorry I mean feature classes.