program gridanalyzer4 c - 2018 04 18 - Updated to work with VERTCON 3 cccccccccccccccccccccccccccccccccccccccccccccccccccccc c - 2016 01 22 c - Dru Smith c - Updated from gridanalyzer3.f to provide histogram style c - stats for bins. c - Updated to do stats in cells implicit real*8(a-h,o-z) parameter(nspacings = 9,maxpts = 500000,maxppc=10000) real*8 g(nspacings) character*10 region character*200 cfn real*8 xaa,xbb,xla(maxpts),xlo(maxpts) character*6 xcc,pid(maxpts) real*8 dmin(maxpts) integer*2 ppc(5000,5000),ippc(25000000),iselect2 integer*4 iknt(0:maxppc,nspacings),maxknt(nspacings) data g/1.d0, 2.d0, 3.d0, 5.d0, 7.5d0, 10.d0, 15.d0, 30.d0, 60.d0/ write(6,1) 1 format('Program gridanalyzer4...',/, *' Coverage file name: ',$) read(5,'(a)')cfn open(1,file=cfn,form='formatted',status='old') c------------------------ c - Get the region from the cv file name c------------------------ l = len(trim(cfn)) ndots = 0 do 20 i=1,l if(cfn(i:i).eq.'.')then ndots = ndots + 1 if(ndots.eq.3)then lleft = i+1 write(6,*) ' lleft = ',lleft endif if(ndots.eq.4)then lright = i - 1 write(6,*) ' lright = ',lright goto 21 endif endif 20 continue 21 region = cfn(lleft:lright) write(6,22)region 22 format('Region = ',a) c------------------------ c - Get the official grid boundaries for this region c------------------------ call getgridbounds(region,xn,xs,xw,xe) write(6,110)xn,xs,xw,xe 110 format('Grid boundaries:',/, *4x,'North: ',f8.3,/, *4x,'South: ',f8.3,/, *4x,'West : ',f8.3,/, *4x,'East : ',f8.3) c------------------------ c - Read in the coverage file to RAM c------------------------ npts = 0 2 read(1,3,end=4)xaa,xbb,xcc npts = npts + 1 xlo(npts) = xaa xla(npts) = xbb pid(npts) = xcc goto 2 3 format(f16.10,f16.10,8x,a6) 4 if(npts.eq.0)then write(6,5) stop else write(6,6)npts endif 5 format('That file is empty. Program ending.') 6 format('That file contains ',i0,' points...') c---------------------------- c - For every point, find its closest neighbor, and compute c - the distance to that neighbor. Then perform stats on c - those distances. c---------------------------- write(6,700) 700 format('Analyzing distances between points...') do 701 i=1,npts x1 = xlo(i) y1 = xla(i) dmin(i) = +99999999 c if(mod(i,100).eq.0)write(6,703)i,npts do 702 j=1,npts if(i.eq.j)goto 702 x2 = xlo(j) y2 = xla(j) dist=60.d0*dsqrt((x2-x1)**2 + (y2-y1)**2) if(dist.lt.dmin(i))dmin(i) = dist 702 continue 701 continue 703 format('...pt ',i8,' of ',i8) ave = 0.d0 rms = 0.d0 xmx = -999999999d0 xmn = +999999999d0 do 704 i=1,npts ave = ave + dmin(i) rms = rms + dmin(i)**2 if(dmin(i).gt.xmx)xmx=dmin(i) if(dmin(i).lt.xmn)xmn=dmin(i) 704 continue kk = npts/2 dminmed = select2(kk,npts,dmin,maxpts) ave = ave / npts rms = dsqrt(rms / npts) fac = dble(npts)/dble(npts-1) std = dsqrt(fac*(rms**2-ave**2)) write(6,705)ave,std,rms,xmn,xmx,dminmed 705 format( *'Distance to Nearest Neighbor Stats (ArcMinutes):',/, *5x,'Ave = ',f8.2,/, *5x,'STD = ',f8.2,/, *5x,'RMS = ',f8.2,/, *5x,'Min = ',f8.2,/, *5x,'Max = ',f8.2,/, *5x,'MED = ',f8.2) c ------------------------------------------------------------------ c ------------------------------------------------------------------ c ------------------------------------------------------------------ c - ANALYSIS c ------------------------------------------------------------------ c ------------------------------------------------------------------ c ------------------------------------------------------------------ write(6,103) 103 format(' Min ',1x,'#row',1x,'#col',1x,' # cells', *' #w/data',2x,'%w/d',4x,'Ave PPC',4x,'STD PPC',4x, *'RMS PPC',2x,'Min PPC',2x,'Max PPC',4x,'MED PPC') c--------------- c - Spin over all grid spacings c--------------- do 10 ig = 1,nspacings c - Convert grid spacing to arcdegrees dla = g(ig) / 60.d0 dlo = dla c - Compute # cells N/S nla = nint( 1 + ((xn - xs)/dla) ) nlo = nint( 1 + ((xe - xw)/dlo) ) ncells = nla*nlo write(6,101)g(ig),nla,nlo,ncells 101 format(f5.2,1x,i4,1x,i4,1x,i8,$) c--------------- c - Zero out the counts of points in each cell c--------------- k = 0 do 811 i=1,nla do 812 j=1,nlo k = k + 1 ppc(i,j) = 0 ippc(k) = 0 812 continue 811 continue c--------------- c - Zero out the counts of cells in each bin c - e.g. iknt(7,*) = 23 will mean that there are 23 cells with 7 points in them, for grid spacing "*" c--------------- do 611 i=0,maxppc iknt(i,ig) = 0 611 continue c--------------- c - Put each point into its proper cell by c - ratcheting that cells count up by 1 c--------------- do 813 k=1,npts i = idnint((xla(k)-xs)/dla)+1 j = idnint((xlo(k)-xw)/dlo)+1 ppc(i,j) = ppc(i,j) + 1 813 continue ikt = 0 ave = 0.d0 imn = +999999999 imx = -999999999 rms = 0.d0 do 820 i=1,nla do 821 j=1,nlo c - Ratchet up the count for this histogram iknt(ppc(i,j),ig) = iknt(ppc(i,j),ig) + 1 if(ppc(i,j).eq.0)goto 821 ikt = ikt + 1 ippc(ikt) = ppc(i,j) ave = ave + ppc(i,j) rms = rms + ppc(i,j)**2 if(ppc(i,j).lt.imn)imn = ppc(i,j) if(ppc(i,j).gt.imx)imx = ppc(i,j) 821 continue 820 continue kk = ikt/2 ippcmed = iselect2(kk,ikt,ippc,25000000) ave = ave/ikt rms = sqrt(rms/ikt) fac = dble(ikt)/dble(ikt-1) std = sqrt(fac*(rms**2-ave**2)) pctwd = 100*dble(ikt)/dble(ncells) write(6,830)ikt,pctwd,ave,std,rms,imn,imx,ippcmed 830 format(i8,1x,f5.2,1x,f10.1,1x,f10.1,1x,f10.1,1x,i8,1x,i8,1x,i10) 10 continue c - Now do the histogram stuff c do 640 i=1,nspacings c do 641 j=0,25 c write(6,*) ' i,j,iknt(j,i) = ',i,j,iknt(j,i) c 641 continue c 640 continue c - First, get the largest bin for any of them imax = -99999 do 630 ig=1,nspacings do 631 j=maxppc,0,-1 if(iknt(j,ig).ne.0)then maxknt(ig) = j c write(6,*) ' ig,maxknt(ig) = ',ig,maxknt(ig) if(maxknt(ig).gt.imax)imax=maxknt(ig) goto 630 endif 631 continue 630 continue c write(6,*) ' imax = ',imax c pause write(6,620)(g(ig),ig=1,nspacings) 620 format(9x,10(f8.1,1x)) do 621 i=0,imax write(6,622)i,(iknt(i,ig),ig=1,nspacings) 621 continue 622 format(i5,4x,10(i8,1x)) end include 'Subs/getgridbounds.f' include '/home/dru/NumRec/Double/select2.for' include '/home/dru/NumRec/Modified/iselect2.for'