Source Code Cross Referenced for IndicesForme.java in  » GIS » GeOxygene-1.3 » fr » ign » cogit » geoxygene » contrib » geometrie » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeOxygene 1.3 » fr.ign.cogit.geoxygene.contrib.geometrie 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * This file is part of the GeOxygene project source files. 
003:         * 
004:         * GeOxygene aims at providing an open framework which implements OGC/ISO specifications for 
005:         * the development and deployment of geographic (GIS) applications. It is a open source 
006:         * contribution of the COGIT laboratory at the Institut Géographique National (the French 
007:         * National Mapping Agency).
008:         * 
009:         * See: http://oxygene-project.sourceforge.net 
010:         *  
011:         * Copyright (C) 2005 Institut Géographique National
012:         *
013:         * This library is free software; you can redistribute it and/or modify it under the terms
014:         * of the GNU Lesser General Public License as published by the Free Software Foundation; 
015:         * either version 2.1 of the License, or any later version.
016:         *
017:         * This library is distributed in the hope that it will be useful, but WITHOUT ANY 
018:         * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
019:         * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
020:         *
021:         * You should have received a copy of the GNU Lesser General Public License along with 
022:         * this library (see file LICENSE if present); if not, write to the Free Software 
023:         * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
024:         *  
025:         */
026:
027:        package fr.ign.cogit.geoxygene.contrib.geometrie;
028:
029:        import java.util.Iterator;
030:
031:        import fr.ign.cogit.geoxygene.spatial.coordgeom.DirectPosition;
032:        import fr.ign.cogit.geoxygene.spatial.coordgeom.DirectPositionList;
033:        import fr.ign.cogit.geoxygene.spatial.coordgeom.GM_LineString;
034:        import fr.ign.cogit.geoxygene.spatial.coordgeom.GM_Polygon;
035:        import fr.ign.cogit.geoxygene.spatial.geomroot.GM_Object;
036:
037:        /**
038:         * Méthodes statiques de calcul d'indices de forme (de lignes et de surfaces).
039:         * 
040:         * English : Measures of shapes
041:         * 
042:         * @author  Mustière/Sheeren/Grosso
043:         */
044:
045:        public abstract class IndicesForme {
046:
047:            //////////////////////////////////////////
048:            // INDICES SUR DES SURFACES
049:            //////////////////////////////////////////
050:
051:            /** Indice de circularité de Miller (pour des surfaces) 
052:             * Valeur entre 0 et 1. 
053:             * Vaut 1 si le polygone est un cercle, 0 si il est de surface nulle.
054:             * Définition = 4*pi*surface/perimetre^2
055:             * Conseil : le seuil de 0.95 est adapté pour des ronds points dans un réseau routier.
056:             */
057:            public static double indiceCompacite(GM_Polygon poly) {
058:                if (Operateurs.surface(poly) == 0)
059:                    return 0;
060:                if (poly.coord().size() < 4)
061:                    return 0;
062:                double perimetre = poly.perimeter();
063:                if (perimetre == 0)
064:                    return 0;
065:                double surface = poly.area();
066:                return 4 * (Math.PI) * surface / Math.pow(perimetre, 2);
067:            }
068:
069:            /** Coefficient de compacité de Gravelius (pour des surfaces) 
070:             * Non borné : supérieur ou égal à 1 (cercle) . 
071:             * Définition = perimetre/2*Racine(Pi*surface)
072:             */
073:            public static double indiceCompaciteGravelius(GM_Polygon poly) {
074:                double perimetre = poly.length();
075:                double surface = poly.area();
076:                return perimetre / 2 * (Math.sqrt(Math.PI * surface));
077:            }
078:
079:            /** Diamètre d'une surface: plus grande distance entre 2 points de la
080:             * frontière de la surface considérée.
081:             * 
082:             * English: diameter of a surface
083:             * 
084:             * @param GM_Object A
085:             * @return -1 si A n'est pas une surface, le diamètre sinon
086:             */
087:            public static double diametreSurface(GM_Object A) {
088:                if (A.area() == 0)
089:                    return -1;
090:
091:                DirectPositionList pts = A.coord();
092:                double dist, diametre = 0;
093:
094:                Iterator itPts = pts.getList().iterator();
095:                while (itPts.hasNext()) {
096:                    DirectPosition dp = (DirectPosition) itPts.next();
097:                    Iterator itPts2 = pts.getList().iterator();
098:                    while (itPts2.hasNext()) {
099:                        DirectPosition dp2 = (DirectPosition) itPts2.next();
100:                        dist = Distances.distance2D(dp, dp2);
101:                        if (dist > diametre)
102:                            diametre = dist;
103:                    }
104:                }
105:                return diametre;
106:            }
107:
108:            //////////////////////////////////////////
109:            // INDICES SUR DES LIGNES
110:            //////////////////////////////////////////
111:            /** Méthode qui détermine si la liste de points passée en entrée est rectiligne.
112:             *  Une ligne est considérée rectiligne si les angles entre les segments qui
113:             *  la constitue ne sont pas trop forts (inférieur au seuil en paramètre en radians).
114:             *  Défaut : dépend de l'échantillonage des courbes, des critères de courbure 
115:             *  seraient plus stables.
116:             *  
117:             *  English: is the line straight?
118:             */
119:            public static boolean rectiligne(GM_LineString ligne,
120:                    double toleranceAngulaire) {
121:                int i;
122:                Angle ecartTrigo;
123:                double angle;
124:                double angleMin = Math.PI - toleranceAngulaire;
125:                double angleMax = Math.PI + toleranceAngulaire;
126:                DirectPositionList listePts = ligne.getControlPoint();
127:                for (i = 0; i < listePts.size() - 2; i++) {
128:                    ecartTrigo = Angle.angleTroisPoints(listePts.get(i),
129:                            listePts.get(i + 1), listePts.get(i + 2));
130:                    angle = ecartTrigo.getAngle();
131:                    if ((angle > angleMax) || (angle < angleMin))
132:                        return false;
133:                }
134:                return true;
135:            }
136:
137:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.