gov.nasa.worldwind.geom.Angle.getDegrees()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(10.5k)|赞(0)|评价(0)|浏览(119)

本文整理了Java中gov.nasa.worldwind.geom.Angle.getDegrees()方法的一些代码示例,展示了Angle.getDegrees()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Angle.getDegrees()方法的具体详情如下:
包路径:gov.nasa.worldwind.geom.Angle
类名称:Angle
方法名:getDegrees

Angle.getDegrees介绍

[英]Retrieves the size of this angle in degrees. This method may be faster than first obtaining the radians and then converting to degrees.
[中]检索此角度的大小(以度为单位)。此方法可能比首先获取弧度然后转换为度数更快。

代码示例

代码示例来源:origin: com.metsci.glimpse/glimpse-extras-worldwind

  1. public static LatLonGeo fromLatLon( LatLon latlon )
  2. {
  3. return LatLonGeo.fromDeg( latlon.latitude.getDegrees( ), latlon.longitude.getDegrees( ) );
  4. }

代码示例来源:origin: com.metsci.glimpse/glimpse-extras-worldwind

  1. public static LatLonGeo fromLatLon( LatLon latlon )
  2. {
  3. return LatLonGeo.fromDeg( latlon.latitude.getDegrees( ), latlon.longitude.getDegrees( ) );
  4. }

代码示例来源:origin: Berico-Technologies/Geo-Coordinate-Conversion-Java

  1. @Override
  2. public String toString()
  3. {
  4. String las = String.format("Lat %7.4f\u00B0", this.getLatitude().getDegrees());
  5. String los = String.format("Lon %7.4f\u00B0", this.getLongitude().getDegrees());
  6. return "(" + las + ", " + los + ")";
  7. }

代码示例来源:origin: com.bitplan.radolan/com.bitplan.radolan

  1. /**
  2. * Divides this angle by another angle. This angle remains unchanged, instead the resulting value in degrees is
  3. * returned.
  4. *
  5. * @param angle the angle by which to divide.
  6. *
  7. * @return this angle's degrees divided by angle's degrees.
  8. *
  9. * @throws IllegalArgumentException if angle is null.
  10. */
  11. public final double divide(Angle angle)
  12. {
  13. if (angle == null)
  14. {
  15. throw new IllegalArgumentException("Angle Is Null");
  16. }
  17. if (angle.getDegrees() == 0.0)
  18. {
  19. throw new IllegalArgumentException("Divide By Zero");
  20. }
  21. return this.degrees / angle.degrees;
  22. }

代码示例来源:origin: Berico-Technologies/Geo-Coordinate-Conversion-Java

  1. /**
  2. * Divides this angle by another angle. This angle remains unchanged, instead the resulting value in degrees is
  3. * returned.
  4. *
  5. * @param angle the angle by which to divide.
  6. *
  7. * @return this angle's degrees divided by angle's degrees.
  8. *
  9. * @throws IllegalArgumentException if angle is null.
  10. */
  11. public final double divide(Angle angle)
  12. {
  13. if (angle == null)
  14. {
  15. throw new IllegalArgumentException("Angle Is Null");
  16. }
  17. if (angle.getDegrees() == 0.0)
  18. {
  19. throw new IllegalArgumentException("Divide By Zero");
  20. }
  21. return this.degrees / angle.degrees;
  22. }

代码示例来源:origin: Berico-Technologies/Geo-Coordinate-Conversion-Java

  1. public static Sector boundingSector(Iterable<? extends LatLon> locations)
  2. {
  3. if (locations == null)
  4. {
  5. throw new IllegalArgumentException("Positions List Is Null");
  6. }
  7. if (!locations.iterator().hasNext())
  8. return EMPTY_SECTOR; // TODO: should be returning null
  9. double minLat = Angle.POS90.getDegrees();
  10. double minLon = Angle.POS180.getDegrees();
  11. double maxLat = Angle.NEG90.getDegrees();
  12. double maxLon = Angle.NEG180.getDegrees();
  13. for (LatLon p : locations)
  14. {
  15. double lat = p.getLatitude().getDegrees();
  16. if (lat < minLat)
  17. minLat = lat;
  18. if (lat > maxLat)
  19. maxLat = lat;
  20. double lon = p.getLongitude().getDegrees();
  21. if (lon < minLon)
  22. minLon = lon;
  23. if (lon > maxLon)
  24. maxLon = lon;
  25. }
  26. return Sector.fromDegrees(minLat, maxLat, minLon, maxLon);
  27. }

代码示例来源:origin: com.metsci.glimpse/glimpse-extras-worldwind

  1. public static LatLonGeo fromPosition( Position position )
  2. {
  3. return LatLonGeo.fromDeg( position.getLatitude( ).getDegrees( ), position.getLongitude( ).getDegrees( ) );
  4. }

代码示例来源:origin: com.metsci.glimpse/glimpse-extras-worldwind

  1. public static LatLonGeo fromPosition( Position position )
  2. {
  3. return LatLonGeo.fromDeg( position.getLatitude( ).getDegrees( ), position.getLongitude( ).getDegrees( ) );
  4. }

代码示例来源:origin: it.tidalwave.geo/it-tidalwave-geo-viewer-spi-worldwindprovider

  1. /*******************************************************************************************************************
  2. *
  3. *
  4. ******************************************************************************************************************/
  5. @Nonnull
  6. private static Coordinate toCoordinate (final @Nonnull Position position)
  7. {
  8. return new Coordinate(position.getLatitude().getDegrees(),
  9. position.getLongitude().getDegrees(),
  10. position.getElevation()); // FIXME: meters/feet?
  11. }

代码示例来源:origin: com.bitplan.radolan/com.bitplan.radolan

  1. /**
  2. * get my DMS representation
  3. * @return the Degrees Minutes Second representation
  4. */
  5. public String getDMS() {
  6. String dms = "?";
  7. if (latAngle.getDegrees() != 0.0) {
  8. dms = latAngle.toFormattedDMSString() + " "
  9. + lonAngle.toFormattedDMSString();
  10. }
  11. return dms;
  12. }

代码示例来源:origin: com.metsci.glimpse/glimpse-extras-worldwind

  1. public static LatLonBounds getCorners( List<LatLon> screenCorners )
  2. {
  3. double minLat = Double.POSITIVE_INFINITY;
  4. double minLon = Double.POSITIVE_INFINITY;
  5. double maxLat = Double.NEGATIVE_INFINITY;
  6. double maxLon = Double.NEGATIVE_INFINITY;
  7. for ( LatLon latlon : screenCorners )
  8. {
  9. double lat = latlon.getLatitude( ).getDegrees( );
  10. double lon = latlon.getLongitude( ).getDegrees( );
  11. if ( lat < minLat ) minLat = lat;
  12. if ( lat > maxLat ) maxLat = lat;
  13. if ( lon < minLon ) minLon = lon;
  14. if ( lon > maxLon ) maxLon = lon;
  15. }
  16. return new LatLonBounds( minLat, maxLat, minLon, maxLon );
  17. }

代码示例来源:origin: Berico-Technologies/Geo-Coordinate-Conversion-Java

  1. return null;
  2. double minLat = Angle.POS90.getDegrees();
  3. double minLon = Angle.POS180.getDegrees();
  4. double maxLat = Angle.NEG90.getDegrees();
  5. double maxLon = Angle.NEG180.getDegrees();
  6. double lat = ll.getLatitude().getDegrees();
  7. if (lat < minLat)
  8. minLat = lat;
  9. maxLat = lat;
  10. double lon = ll.getLongitude().getDegrees();
  11. if (lon >= 0 && lon < minLon)
  12. minLon = lon;
  13. double lastLon = lastLocation.getLongitude().getDegrees();
  14. if (Math.signum(lon) != Math.signum(lastLon))

代码示例来源:origin: it.tidalwave.geo/it-tidalwave-geo-viewer-spi-brgmprovider

  1. public URL getURL(Tile tile, String string) throws MalformedURLException
  2. {
  3. StringBuffer sb = new StringBuffer(tile.getLevel().getService());
  4. if (sb.lastIndexOf("?") != sb.length() - 1)
  5. sb.append("?");
  6. sb.append("request=GetMap");
  7. sb.append("&layers=");
  8. sb.append(tile.getLevel().getDataset());
  9. sb.append("&srs=EPSG:4326");
  10. sb.append("&width=");
  11. sb.append(tile.getLevel().getTileWidth());
  12. sb.append("&height=");
  13. sb.append(tile.getLevel().getTileHeight());
  14. Sector s = tile.getSector();
  15. sb.append("&bbox=");
  16. sb.append(s.getMinLongitude().getDegrees());
  17. sb.append(",");
  18. sb.append(s.getMinLatitude().getDegrees());
  19. sb.append(",");
  20. sb.append(s.getMaxLongitude().getDegrees());
  21. sb.append(",");
  22. sb.append(s.getMaxLatitude().getDegrees());
  23. sb.append("&format=image/jpeg");
  24. sb.append("&version=1.1.1");
  25. sb.append("&styles=");
  26. return new java.net.URL(sb.toString());
  27. }
  28. }

代码示例来源:origin: it.tidalwave.geo/it-tidalwave-geo-viewer-spi-geosignalwwjprovider

  1. public URL getURL(Tile tile, String string) throws MalformedURLException {
  2. String layerName = tile.getLevel().getDataset() + layerNames[tile.getLevelNumber()] + "K";
  3. StringBuffer sb = new StringBuffer(tile.getLevel().getService());
  4. if (sb.lastIndexOf("?") != sb.length() - 1) {
  5. sb.append("?");
  6. }
  7. sb.append("request=GetMap");
  8. sb.append("&layers=");
  9. sb.append(layerName);
  10. sb.append("&srs=EPSG:4326");
  11. sb.append("&width=");
  12. sb.append(tile.getLevel().getTileWidth());
  13. sb.append("&height=");
  14. sb.append(tile.getLevel().getTileHeight());
  15. Sector s = tile.getSector();
  16. sb.append("&bbox=");
  17. sb.append(s.getMinLongitude().getDegrees());
  18. sb.append(",");
  19. sb.append(s.getMinLatitude().getDegrees());
  20. sb.append(",");
  21. sb.append(s.getMaxLongitude().getDegrees());
  22. sb.append(",");
  23. sb.append(s.getMaxLatitude().getDegrees());
  24. sb.append("&format=image/png");
  25. sb.append("&version=1.1.1");
  26. sb.append("&styles=");
  27. //System.out.println(tile.getLevelNumber() + " " + sb);
  28. return new java.net.URL(sb.toString());
  29. }
  30. }

代码示例来源:origin: it.tidalwave.geo/it-tidalwave-geo-viewer-spi-worldwindprovider

  1. /*******************************************************************************************************************
  2. *
  3. *
  4. ******************************************************************************************************************/
  5. @Override
  6. public void fitView (final @Nonnull Sector sector)
  7. {
  8. logger.info("fitView(%s)", sector);
  9. final double angle = sector.getMaxDelta();
  10. final OrbitView view = (OrbitView)worldWindow.getView();
  11. final Angle fov = view.getFieldOfView();
  12. // TODO: see http://forum.worldwindcentral.com/showthread.php?p=49433#post49433
  13. final double elevation = 6400 * 1000 * angle / (fov.getDegrees() / 2);
  14. logger.fine(">>>> fov: %f, sector delta: %s, elevation: %f", fov.getDegrees(), angle, elevation);
  15. setCenterPosition(sector.getCenter(), elevation, Angle.ZERO, Angle.fromDegrees(45));
  16. }

代码示例来源:origin: Berico-Technologies/Geo-Coordinate-Conversion-Java

  1. double fov = horizontalFieldOfView.getDegrees();
  2. double farMinusNear = far - near;

代码示例来源:origin: com.metsci.glimpse/glimpse-extras-worldwind

  1. LatLonGeo centerLatLon = LatLonGeo.fromDeg( centerPosition.latitude.getDegrees( ), centerPosition.longitude.getDegrees( ) );
  2. LatLonGeo swLatLon = centerLatLon.displacedBy( Length.fromMeters( viewportSizeMeters ), Azimuth.southwest );
  3. LatLonGeo seLatLon = centerLatLon.displacedBy( Length.fromMeters( viewportSizeMeters ), Azimuth.southeast );

代码示例来源:origin: com.metsci.glimpse/glimpse-extras-worldwind

  1. protected GlimpsePosition getGlimpsePosition( MouseEvent mouseEvent )
  2. {
  3. GlimpseTargetStack stack = tile.getTargetStack( );
  4. if ( stack == null ) return null;
  5. Position worldwindPosition = this.wwd.getCurrentPosition( );
  6. if ( worldwindPosition == null ) return null;
  7. // get the lat/lon of the mouse from the WorldWind
  8. double lat = worldwindPosition.getLatitude( ).getDegrees( );
  9. double lon = worldwindPosition.getLongitude( ).getDegrees( );
  10. LatLonGeo latlon = LatLonGeo.fromDeg( lat, lon );
  11. // convert the lat/lon into Glimpse coordinate space using the GeoProjection
  12. Vector2d glimpsePosition = this.projection.project( latlon );
  13. // calculate the x/y position in pixels of the mouse click relative to the GlimpseLayout
  14. Axis2D axis = this.layout.getAxis( stack );
  15. int posX = axis.getAxisX( ).valueToScreenPixel( glimpsePosition.getX( ) );
  16. int posY = axis.getAxisY( ).getSizePixels( ) - axis.getAxisY( ).valueToScreenPixel( glimpsePosition.getY( ) );
  17. return new GlimpsePosition( posX, posY );
  18. }

代码示例来源:origin: com.bitplan.radolan/com.bitplan.radolan

  1. public String toString() {
  2. String result = "";
  3. if (this.getLocode() != null) {
  4. result += this.getLocode() + "/";
  5. } else {
  6. result += "? ? /";
  7. }
  8. if (this.getCountryCode() != null) {
  9. result += this.getCountryCode();
  10. } else {
  11. result += "? ";
  12. }
  13. if (this.getNameWoDiacritics() != null) {
  14. result += " " + this.getNameWoDiacritics();
  15. } else {
  16. result += " " + this.getName();
  17. }
  18. this.initLatLon();
  19. if (latAngle.getDegrees() != 0.0)
  20. result += " at " + getDMS();
  21. return result;
  22. }

代码示例来源:origin: senbox-org/s1tbx

  1. if (firstPosNext) {
  2. cumStartPos = cumStartPos.add(pos);
  3. cumStartPosLat_deg += pos.getLatitude().getDegrees();
  4. cumStartPosLon_deg += pos.getLongitude().getDegrees();
  5. firstPosNext = false;
  6. } else {

相关文章