Jump to content

yousef2233

Members
  • Posts

    414
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by yousef2233

  1. Hi everyone This straightforward tool generates a stream order network from elevation data (DEM). The only input required is a DEM. As an open-source tool, it is accessible and easy to use. If you encounter any issues, feel free to contact me at [email protected]. Tested with ArcGIS Desktop 10.8.1😊 Let me know if you'd like further refinements Download Link To create a stream network and determine its order in ArcGIS starting with a Digital Elevation Model (DEM), follow these general steps: Step 1: Prepare the DEM Load your DEM into ArcGIS. Ensure the DEM is hydrologically correct, without any errors like sinks or pits. Use the Fill tool from the Spatial Analyst toolbox to fill these voids Step 2: Flow Direction Use the Flow Direction tool to compute the direction of water flow across the DEM surface. This creates a raster that assigns a flow direction to each cell Step 3: Flow Accumulation Apply the Flow Accumulation tool to calculate the amount of flow accumulated for each cell based on the flow direction raster Step 4: Stream Threshold Set a threshold value for the Flow Accumulation raster to define streams. The Con (conditional) tool can be used to extract cells that meet this threshold. This step essentially defines what qualifies as a stream Step 5: Stream Link Use the Stream Link tool to assign unique identifiers to connected stream segments. Step 6: Stream Order Apply the Stream Order tool to calculate the hierarchical order of streams (e.g., Strahler or Shreve order). Step 7: Vectorization (Optional) Convert the raster stream network to a vector format using the Stream to Feature tool. This makes the streams easier to visualize and analyze. With these steps, you'll have a stream network derived from your DEM with ordered streams that can be used for further hydrological analysis.
  2. 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
  3. 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".
  4. 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
  5. 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")
  6. With Image Classification toolbar it recognizes objects in images
  7. Dear fernandocjr, Check "Integrate" tool in FeatureClass toolset.
  8. dear zsoooc, It seems your problem is Capacitated maximal covering location problems and for the stated problem my recommendation is Esri Arcgis Network Analyst Location Allocation tools.
  9. If you have access to ArcGIS, using "Warp" in modelbuilder or python could automate your process.
  10. http://stackoverflow.com/questions/1613117/resizing-an-image-in-cm-c-sharp bmp.HorizontalResolution , bmp.VerticalResolution "HorizontalResolution and the VerticalResolution are pixel per inch
  11. Sorry my bad take a look http://stackoverflow.com/questions/6455979/how-to-get-the-image-dimension-from-the-file-name
  12. System.Drawing.Image img = System.Drawing.Image.FromFile (@"my image.jpg") now you have img.Width and img.Height
  13. 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?
  14. I don't have any documents, unfortunately. convert your image into an array. find the x y of the center of the image for example (10 cm, 12 cm) convert them to degrees dx = Long - Xdeg dy = Lat - Ydeg A = move all the cells with this dx and dy B = rotate A (flight azimuth) C = scale B based on flight height and .. (i'm not sure about dz)
  15. As far as I know, yes you can you have image size, camera elevation, camera focus length, so you can solve Scale problem, you have flight azimuth, so you can solve Rotation problem if you have delta X, delta Y and delta Z, so you can solve Movement problem.
  16. I dont know about that. But there is another angle on the top right of the image. I dont remember these courses but my guess is information on top are about flight and on the bottom are about camera settings!!
  17. Hi, Pixel size will solve the problem of scale, How about the rotation problem? Is that Azimuth angle? It seems like an imagery from a water body with an elevation near to zero. do you have the elevation of the camera (1114.1 meters?)? and size of the image? is it tilted?
  18. Use ArcPy instead. I sent you the sample code in pm
  19. Its not that easy, it makes some gaps and overlap some times 1 - do you care about topology rules ? 2 - how much is your accuracy ?
  20. I think you should use cursors like this input_fc="fc" field = "buffer_value_field" output = "fc_somewhere" output_temp = "fc_somewhereElse" cursor = arcpy.da.SearchCursor(input_fc) for row in cursor: arcpy.analysis.Buffer(input_fc,row.getValue(field),output_temp) arcpy.management.Append(output_temp,output,"NO_TEST") arcpy.management.Delete(output_temp) it does not work in the append process, I just made a conceptual example for you
  21. first thing on my mind is: 1 - convert end of your line to point - (arcpy.management.featurevertiestopoints) 2 - add points based on function(length, deflection) which based on last point on OID list shape@XY it calculates new XY maybe you can do it with tables only 3 - create a line based on points created in last step and then add it to first line you had 4 - do step 2 and 3 over and over again till end of your list
  22. I didnt check your file, but the solution is sth like this fc = "your_featureclass" fields = ["road_name_field"] cursor = arcpy.da.UpdateCursor(fc, fields) for row in cursor: full_name = [] full_name = row[0].split(" ") road_type = full_name[-1] if road_type = "ST": full_name[-1] = "STREET" elif road_type = "RD": full_name[-1] = "ROAD" result= full_name[:-1] result.append(full_name[-1]) row[0]= " ".join(result) cursor.updateRow(row)
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.

Disable-Adblock.png

 

If you enjoy our contents, support us by Disable ads Blocker or add GIS-area to your ads blocker whitelist