|
POST
|
If I convert a map to eps to work with it in a graphic software some text things look loke this: Even with embedded fonts? Any ideas?
... View more
04-16-2015
11:20 PM
|
0
|
2
|
2541
|
|
POST
|
For me this does the job: Count_Lines = arcpy.GetCount_management(Meka) print Count_Lines ?
... View more
04-16-2015
04:03 AM
|
0
|
0
|
1552
|
|
POST
|
Maybe this helps you: Removing Duplicate feature Points/Records Or this: Find and Delete Spatially Duplicate Records in a Shapefile
... View more
04-16-2015
01:18 AM
|
1
|
0
|
1610
|
|
POST
|
I would use python for this: https://community.esri.com/message/442946?sr=search&searchId=5a0da25d-a777-43c7-87fc-bb6748a74467&searchIndex=0#442946
... View more
04-09-2015
04:51 AM
|
0
|
1
|
1535
|
|
POST
|
As well you could erase the points inside the buffer?
... View more
03-29-2015
11:59 PM
|
0
|
0
|
3900
|
|
POST
|
# Import arcpy module
import arcpy
arcpy.env.workspace = "R:\Karto\Bierer2014\FFH_MEKA\data.gdb"
# Local variables:
ALK_Flurstueck_Merge1 = r"R:\Daten\geo_daten\Basisgeometrien\Basisgeometrien_2014_03_21.gdb\data\ALK_Flurstueck_Merge1"
Meka = "R:\\Karto\\Bierer2014\\FFH_MEKA\\Meka.mdb\\Meka"
ALK_Flurstueck_Merge1_2 = "ALK_Flurstueck_Merge1"
Count_Lines = arcpy.GetCount_management(Meka)
print Count_Lines
MekaLyr = arcpy.MakeTableView_management(Meka)
for i in range(0, 18000, 100):
print i
y = str(i + 99)
print y
z = str(i)
## SelectCl = ( [ID] < ' + y + " AND [ID] > '" + z + ")
arcpy.SelectLayerByAttribute_management(MekaLyr,"NEW_SELECTION", '( [ID] < ' + y + " AND [ID] > " + z + ")")
# Process: Feld verbinden
arcpy.JoinField_management(ALK_Flurstueck_Merge1, "FLSKZ", MekaLyr, "FLRSTKZ", "FLRSTKZ;ALLB-Nr;Antragsteller;'Name, Vorname Antragsteller';Strasse;PLZ;Ort;'Nutzungsfl ar';N-Code;Meka-Codes;Feld11;Feld12;Feld13;Feld14;Feld15;Feld16;Feld17;Feld18;Feld19")
# Process: Features kopieren
arcpy.CopyFeatures_management(ALK_Flurstueck_Merge1_2, "zwErgebnis_" + i, "", "0", "0", "0") Unfortunately the join doesn't work in one, so I want to split the table and join then? But I miss the option which offers the arcmap interface - keep only matching records? With the script here python is working, but nothing happens?
... View more
03-19-2015
12:40 AM
|
0
|
1
|
3801
|
|
POST
|
MAybe this could help? new compressed LAS format by ESRI | rapidlasso GmbH
... View more
03-10-2015
11:12 PM
|
1
|
0
|
1126
|
|
POST
|
Thanks Kishor, that's it. But in your solution I have to edit the attributes. Is there also a possibility to do this automatically? Split the text in a certain lenght without editing the attributes?
... View more
03-10-2015
04:01 AM
|
0
|
1
|
2725
|
|
POST
|
Ok, the code was working to replace c:\temp\data through c:\tempXXX\data. But not if there are more subfolders like c:\tempYYY\datax\dataY\dataZ it failed? Have tested it with only listlayer. Somehow it steps out. After printing Projektgewaesser .. File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\_mapping.py", line 695, in findAndReplaceWorkspacePath return convertArcObjectToPythonObject(self._arc_object.findAndReplaceWorkspacePath(*gp_fixargs((find_workspace_path, replace_workspace_path, validate), True))) ValueError: Layer: Unexpected error
... View more
02-10-2015
10:37 PM
|
0
|
0
|
1946
|
|
POST
|
Do these have to be replaced or is it possible to use them in python?
... View more
02-09-2015
11:58 PM
|
0
|
1
|
6413
|
|
POST
|
Why does this code replace only things like c:\temp\data through c:\tempXXX\data and not the beginning of c:\temp\data\1\2\3 ? import arcpy, os
# Pfade definieren
folderPath = r"R:\SG-C\8850.20-6 FFH-Gebiete\04 MaP\7218-341_Calwer_Heckengaeu"
oldPath = r"R:\natura 2000\8847.04 MaP\7218-341_Calwer_Heckengäu"
# mxd definieren
path = r"R:\SG-C\8850.20-6 FFH-Gebiete\04 MaP\7218-341_Calwer_Heckengaeu\7218341.mxd"
mxd = arcpy.mapping.MapDocument(path)
for df in arcpy.mapping.ListDataFrames(mxd):
for lyr in arcpy.mapping.ListLayers(mxd):
print (lyr)
lyr.findAndReplaceWorkspacePath(oldPath, folderPath, "")
arcpy.RefreshTOC()
arcpy.RefreshActiveView()
mxd.save
del mxd
... View more
02-09-2015
11:37 PM
|
0
|
6
|
5614
|
|
POST
|
Unfortunately don't get it: dts = {(fld_xmin,fld_xmax),numpy.int}
print (dts)
npa = numpy.array(dts)
arcpy.da.NumPyArrayToTable(npa, fcout) What is the sense of the error message: TypeError: narray.fields require
... View more
01-30-2015
12:25 AM
|
0
|
2
|
7001
|
| 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 |
2 hours ago
|