Jump to content

bdsmolla

Inactive Members
  • Posts

    104
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by bdsmolla

  1. good for non-programmers as well as programmers?!
  2. Hello Anay The following link could be useful for you. http://blogs.esri.com/esri/arcgis/2010/12/14/combining-data-driven-pages-with-python-and-arcpy-mapping/ The easiest way to keep all your mxd files into you a single folder and in the script use the folder path as input and get list of mxd files for loop to make pdf. Thanks S. Molla
  3. In ArcGIS ArcMap use dissolve tool based on class field not merge.
  4. What is your output file type? it should be float, not 8 or 16 bit signed/unsigned integer...
  5. Nice questions! Just tested Desktop questions. It is indeed good one. I tested myself and 194(82%) got correct answer out of 236.
  6. Good luck! you will be always with us with your contributions
  7. Hi Lurker Do you have any idea of pricing of these devices?
  8. I think darksabersan not asked anything related to Esri Enterprise Geodatabase which is in fact refer to ArcSDE, he probably likes to configure the following thing: http://www.esri.com/library/whitepapers/pdfs/how-to-set-up-geoportal-server-122.pdf interesting notes are below: http://northredoubt.com/n/2013/08/22/postgresqlpostgis-and-arcgis-arcmap-10-2/
  9. So far my understanding, you cannot do it using any single tool/action. You may need to use python and use the the following hints: use search cursor (descending order by shape area), since you said 90% or more area contain means, your one polygon's 5-10% buffer will cover 100% contain, and selected small polygon can marge/delete with the larger one. this way the all polygon loop to solve .... Funny, but might interest you.
  10. This kind of resampling is meaning less however if you really need to do that just follow the steps below: 1. Add 30m DEM to ArcMap 2. Right click on the added layer, place your mouse to 'Data' then click to 'Export Data' 3. From the Export Raster Data - dialog box, just change the Cell Size (as you wanted to 5m) (Don't forget to change No Data value as well if needed to change) Hope, this process will be simple for you.
  11. Java enable opportunity for all platforms (means not 'only windows') Dot Net technology - you will get huge examples (mostly C# now a days) Means you can go for either Java or C#
  12. Is there any version difference between your mentioned 8.9 and the version we are using from this site?!
  13. Sorry Folks to make this is a topic. I may not have all ideas about of this forum as well as geo-informatics terminologies however observing many questions in fact feel not relevant to ask/post without knowing basics. Definitely newbies can seek guideline how to start but if the question is like: - Which interpolation method is good for surface generation? Which one will be good for contour generation? etc. I think this type of question is meaningless in this forum cause the user needs to learn theories on interpolation methods as well as regional experiences etc. This is why I think use search engine and study different forum before post a topic.
  14. The purpose of VBA and Python in fact popular to make easy repeated/iteration-able work inside ArcGIS desktop product. Mostly you need to open core product than you can use your developed tool/button etc. However you also can make GUI using third party/or your developed modules if you are strong on that. But you need to have desktop license installed in your computer. ArcObject offer mainly to make standalone solution through Dot Net framework. To deploy your development you will need runtime license.
  15. In 9.2 version that works fine. In 2010 and 2011 the problem you mentioned remains except sp5.
  16. Hi Swagata The problem you described is a bug. It is resolved with patch 5. Unfortunately no medicine available of ERDAS 2011 with patch 5. Use 2013 version.
  17. Hi Yasmin Frankly I do not want to practice VBA on top of ArcMap again. In case of doing the same thing in python (ArcPy) may be can give good advise. However, in your code, i think you defined workspace (which is default for vector data) for raster you need to use RasterWorkspaceFactory/NewRasterWorkspace etc.
  18. Hi Ms Yasmin Long time not practice VBA to customize ArcGIS/ArcMap. Python made the things much easier. However, your code seems okay. Just replace pLayer.Name to pRLayer.Name You didn't define pLayer earlier. Hope it will help.
  19. Hi Terka Long time not working with MODIS data. However, like to know are getting the message while directly read/open MODIS HDF file or importing as img format? Have you tried to use import using 'MODIS EOS HDF format' from the import list of ERDAS 2013? If you use so, are getting same message. May I 've a link to the data you have used as a sample.
  20. @ Maxsigma If you still have the problem, can help in this regards. In my first look, I guess you have problem in defining path. Use "\\" or "/" instead of "\" like: "c:\\Temp\\Demo.gdb\\raster" or "c:/Temp/Demo.gdb/raster" etc.
  21. In 10.0 the solution is very difficult. First you will be require to identify which field is defined as subtype. To find that field you can use: -------------------- urFC = r'C:\Temp\DemoData.gdb\VegA' fcDescr = arcpy.Describe(urFC) stFld = fcDescr.subtypeFieldName print stFld ------------------- If you run above code in Python Window of ArcGIS Desktop and if the VegA feature class of DemoData.gdb having subtype field will return the field name. You can not directly delete subtype field, before that you are require to delete its codes and values from the list. For that, you need to know how many subtype values defined into the Feature Class. In 10.0, I didn't find any function to list the codes and values, in 10.1 under arcpy.da (data access module there is a function which can be used) for details, visit the link: http://resources.arcgis.com/en/help/main/10.1/index.html#//018w00000021000000 Finally, make the list of codes which may like: ---------------------- stList = ["1", "2", "3", "4", "5"] arcpy.RemoveSubtype_management(urFC, stList) arcpy.DeleteField_management(urFC, stFld) ---------------------- If you find any problem, let me know
  22. I think, this will be good idea to share python codes to learn and get support from the members. Under this post we can do that. Can anyone help to delete subtype field from a feature class (FC)? Like one FC may have a subtype field with 5 (five) predefined subtypes. How to read and list those five subtype values and remove from the subtype list dynamically and finally delete the field. Just now thought about this. Will work on this to get solution. Please share your views and post how you learnt Python for customizing ArcGIS Desktop and Server.
×
×
  • 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