Posts

Adding zeros in between character length python

"WP"+str( !OBJECTID!).zfill(8)

Key for FREE Google Earth Pro

Image
For those who may have overlooked the code for FREEE Google Earth Pro. Look at the upper right portion of the image below: key in GEPFREE and you're good to go! :)

Creating Watershed in ArcGIS

Image
ArcGIS can delineate watersheds directly from a DEM. Essentially, you will be needing a Spatial Analyst extension to do this. Below is the hydrologic modeling flowchart employed by ArcGIS to generate runoff characteristics Here's an image automating the entire Watershed modeling process: Important Notes from model above: GENERATING THE STREAM RASTER: To generate the Output Raster or the STREAM RASTER, use Raster Calculator CON tool and enter the expression below: Con("FlowAcc_Flow1" > 100, 1) The number '100'  states how many cells drains toward the stream network. This can be varied depending on the detail of stream network needed for modeling. The smaller the area, the smaller the number to be entered. GENERATING POUR POINTS In generating the watershed, pour point location is needed. To automatically generate pour points, use Stream to Feature > Feature Vertices to Points. (Note however that Feature Vertices to Points is only av...

How to Transfer Certificate of Title in Metro Manila Philippines

Reposting from my Multiply account: If someone wants to buy a lot, his first notion was to get a real estate broker to do all the processing. But if the buyer has ample time, with just a few knowledge and some resourcefulness, he can surely do all the processing without having to throw-off some extra bucks for service charges. Here are the few easy steps to transferring your newly acquired lot under your name: Summary of requirements 1. Preparation of the deed of sale and ratification by notary public. 2. Obtain a certified true copy of latest tax declaration from the Assessor’s Office of the city where the lot is located. 3.Payment of Documentary Stamp Tax and Capital Gains Tax at an authorized bank. 4. Obtain tax clearance (or Certificate Authorizing Registration(CAR)) from the Bureau of Internal Revenue 5. Obtain a tax clearance certificate of Real Estate Taxes from the Treasurer’s Office of the city where the lot is located. 6. Payment of transfer tax at the Treasurer’s ...

Who's talking about MH 370?

Image
Been checking out the progress of the Malaysian Flight MH370 sudden disappearance. It was really some sort of mystery with all the speculations including odd topics of alien abduction and Bermuda Triangle topics getting out there. Tried working around with some maps to see heat maps of such fuss. Tried fetching frequency of getottagged Twitter, Flicker and YouTube feeds containing MH370 in their posts reveal the maps below: USA is really so into it but interestingly Africa is also on close monitoring as well. No wonder Philippines just got to have its own spot since it was lately hailed as the selfiest place on Earth with most Instagram geottaged posts tagged with #selfie. We're so into social networking really. I hope the mystery will be resolved soon. Want to fetch some live feed? Use this web app that I have made and log in using your Twitter account to view real time maps.

Formatting content in vbcsript adding new line

In ArcMap labelling, I need to parse the label into Customer Name and its account number with the account number appearing after new line: I used the code vbNewLine and it worked fine. [CUBAOmeters.CUSTOMER] & vbNewLine &  [CUBAOmeters.CAN] 

Creating a new field with attributes incrementing by 1

Image
pre-logic script code: rec=0 def autoIncrement( ):  global rec  pStart = 1   pInterval = 1   if (rec == 0):    rec = pStart   else:    rec = rec + pInterval   return rec