-
Content Count
407 -
Joined
-
Last visited
-
Days Won
27
yousef2233 last won the day on January 3 2018
yousef2233 had the most liked content!
Community Reputation
279 FamousAbout yousef2233
-
Rank
Lecturer
Contact Methods
- Yahoo
Profile Information
-
Gender
Not Telling
-
Interests
Network Analysis :D
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Free Urban Analysis Toolbox Contains ARCPY tools for Urban Planners. Now its Developing and of-coarse FREE. At the moment you can download it at this ADDRESS. Remember before use check out for latest version. 2 tools are available: Land Use Entropy Index Calculator & Modified Huff Gravity Model (added custom Distance Decay Functions). Hope you enjoy Developer is [email protected] which is unknown
-
Hi (Works for Hyperlinks): If your images are in a sub-folder next to your mxd named "Images", Hyperlink field value have to be "Images\Image_1.jpg".
-
do you work with layout.mxd or "current" ? do you save it after adding layers? works fine here import arcpy arcpy.env.workspace = r"C:\Users\Default.gdb" mxd = arcpy.mapping.MapDocument(r"D:\Untitled.mxd") listFC = arcpy.ListFeatureClasses() df = arcpy.mapping.ListDataFrames(mxd)[0] for fc in listFC: layer = arcpy.mapping.Layer(fc) arcpy.mapping.AddLayer(df,layer,"TOP") mxd.save() del mxd
-
dear Reyalino, put df = arcpy.mapping.ListDataFrames(mxd)[0] before "for loop", import arcpy arcpy.env.workspace = "D:/Directory/Map" mxd = arcpy.mapping.MapDocument("D:/Directory/Map/layout.mxd") listFC = arcpy.ListFeatureClasses() df = arcpy.mapping.ListDataFrames(mxd)[0] for fc in listFC: layer = arcpy.mapping.Layer(fc) arcpy.mapping.AddLayer(df,layer,"TOP")
-
With Image Classification toolbar it recognizes objects in images
-
Dear fernandocjr, Check "Integrate" tool in FeatureClass toolset.
-
Request for plotting of route waypoints using Google Map..?
yousef2233 replied to adnan0001's topic in WebGIS
Dear Adnan, Would you send me a sample avl file ? -
If you have access to ArcGIS, using "Warp" in modelbuilder or python could automate your process.
- 1 reply
-
- 1
-
-
you have to move center of your image which is not georeferenced to the exact location, this is the movement problem and your question about pixels and cm, think about a resolution (100,100) with 2 different pixel sizes 1 - 1*1 cm2 2 - 1000*1000 cm2 do you think calculation in pixels is correct now?