|
POST
|
Have a look here: arcgis desktop - How to represent several points with same coordinates on map? - Geographic Information Systems Stack Ex… Or QGIS: QGIS point displacement - YouTube
... View more
11-17-2014
11:16 PM
|
0
|
0
|
693
|
|
POST
|
But maybe you want to use a gis in which you can't load corrupt shape files 🙂
... View more
11-17-2014
02:48 AM
|
1
|
0
|
2246
|
|
POST
|
Thanks for the script. Sorry for bothering you. It was a problem with one null geometrie feature. So I should keep in mind to check the geometrie first. Disy is quite a good solution, if you can't afford to pay esri exorbitant license fees.
... View more
11-17-2014
02:23 AM
|
0
|
1
|
2246
|
|
POST
|
This one, if you are interestesd in: Welcome | Disy
... View more
11-17-2014
01:26 AM
|
0
|
1
|
2246
|
|
POST
|
There is also OSM data available now: http://www.arcgis.com/home/item.html?id=072461e47c314ecabe6529e679e39e63
... View more
11-17-2014
01:19 AM
|
0
|
0
|
1874
|
|
POST
|
We work here with a GIS System which doen't allow Null values, so I try to repair the shape. Like this it is not loadable in that other GIS System. Tried "0", nothing happens. Might it be that the path is not reachable for python, with the point inside? ... natura 2000\8847.04 MaP\7517-341_ ...
... View more
11-17-2014
01:15 AM
|
0
|
5
|
2246
|
|
POST
|
Fields to replace Null throught "0" are string fields
... View more
11-17-2014
12:53 AM
|
0
|
7
|
2246
|
|
POST
|
import arcpy
import os
in_data = r"R:\natura 2000\8847.04 MaP\7517-341_Horber_Neckarhaenge\Daten_Offenland\2014-11-12_PE_Maßnahmenentwurf\Reperatur\Reperatur.gdb\data\massnahmen_anm56_141117"
field_list = []
numeric_fields = ["Double", "Integer", "SmallInteger"]
fields = arcpy.ListFields(in_data)
for field in fields:
# if (field.type in numeric_fields):
field_list.append(field.name)
# convert the list of fields to a semicolor delimited string
fields = ";".join(field_list)
rows = arcpy.UpdateCursor(in_data, '', '', fields)
count = len(field_list)
for row in rows:
for k in range(count):
if row.isNull(field_list ):
row.setValue(field_list , 0)
rows.updateRow(row)
This doesn't work? Why?
... View more
11-17-2014
12:50 AM
|
0
|
9
|
3583
|
|
POST
|
or this: Cleaning up temporary layers created by python toolbox script
... View more
11-14-2014
03:02 AM
|
0
|
2
|
1516
|
|
POST
|
Maybe this could help you? arcgis desktop - Remove feature layer using ArcPy script? - Geographic Information Systems Stack Exchange
... View more
11-14-2014
02:58 AM
|
0
|
3
|
1516
|
|
POST
|
Maybe this is the reason why expand doesn't work, I would create small packets of data and then do the expand. For that you could use the fishnet tool ... to chlip data
... View more
11-14-2014
12:45 AM
|
0
|
0
|
6987
|
|
POST
|
My suggestion was to use expand ... but if it doen't work you could convert to polygon the things you want to buffer?
... View more
11-14-2014
12:30 AM
|
1
|
1
|
6987
|
|
POST
|
Philip, I think Dan still did a lot for you, he could do it easiliy. But it's your work to learn it, if you want to reach his skills 🙂 By the way, I would be interested to hear about your instructors reasons why you should't use model builder? Could you ask him? Maybe he's here inside and could enlight me?
... View more
11-13-2014
10:51 PM
|
0
|
0
|
1962
|
|
POST
|
Have a look there: How do I remove holes (such as lakes) from a polygon feature
... View more
11-12-2014
10:48 PM
|
1
|
1
|
1856
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-10-2025 08:08 AM | |
| 1 | 05-13-2025 05:05 AM | |
| 1 | 04-28-2025 03:40 AM | |
| 4 | 08-13-2024 10:49 PM | |
| 1 | 08-13-2024 09:52 PM |
| Online Status |
Online
|
| Date Last Visited |
yesterday
|