1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
Spherical Geometry Operations
=============================
Pyresample provides some basic support for various geometrical calculations applicable to
a spherical earth. These spherical operations are available for geometry definition objects.
This includes for instance finding the intersection of two
great circles or finding the area of a spherical polygon given by a set of
great circle arcs.
The spherical geometry operations are calculated based on the corners of a GeometryDefinition
(:class:`~pyresample.geometry.GridDefinition`,
:class:`~pyresample.geometry.AreaDefinition`, or a 2D
:class:`~pyresample.geometry.SwathDefinition`) assuming the edges are great circle arcs.
Geometries can be checked for overlap:
.. doctest::
>>> import numpy as np
>>> from pyresample.geometry import AreaDefinition
>>> from pyresample.geometry import SwathDefinition
>>> area_id = 'ease_sh'
>>> description = 'Antarctic EASE grid'
>>> proj_id = 'ease_sh'
>>> projection = '+proj=laea +lat_0=-90 +lon_0=0 +a=6371228.0 +units=m'
>>> width = 425
>>> height = 425
>>> area_extent = (-5326849.0625,-5326849.0625,5326849.0625,5326849.0625)
>>> area_def = AreaDefinition(area_id, description, proj_id, projection,
... width, height, area_extent)
>>> lons = np.array([[-40, -11.1], [9.5, 19.4], [65.5, 47.5], [90.3, 72.3]])
>>> lats = np.array([[-70.1, -58.3], [-78.8, -63.4], [-73, -57.6], [-59.5, -50]])
>>> swath_def = SwathDefinition(lons, lats)
>>> print(swath_def.overlaps(area_def))
True
The fraction of overlap can be calculated
.. doctest::
>>> overlap_fraction = swath_def.overlap_rate(area_def)
>>> overlap_fraction = round(overlap_fraction, 10)
>>> print(overlap_fraction)
0.0584395313
And the polygon defining the (great circle) boundaries over the overlapping area can be calculated
.. doctest::
>>> overlap_polygon = swath_def.intersection(area_def)
>>> print(overlap_polygon)
[(-40.0, -70.1), (-11.1, -58.3), (72.3, -50.0), (90.3, -59.5)]
It can be tested if a (lon, lat) point is inside a GeometryDefinition
.. doctest::
>>> print((0, -90) in area_def)
True
Satellite swath coverage over area of interest
----------------------------------------------
With this support and the help of Cartopy_ it is for instance also possible to
draw the outline of a satellite swath on the earth, and calculate the relative
coverage by one or more swaths over an area of interest.
Below is an example calculating how much of an area of interest is covered by
two satellite overpasses. It operates on a list of `trollsched.satpass.Pass`
satellite passes. See trollschedule_ how to generate a list of satellite overpasses.
`area_def` is an :class:`~pyresample.geometry.AreaDefinition` object.
>>> from pyresample.spherical_utils import GetNonOverlapUnions
>>> from pyresample.boundary import AreaDefBoundary
>>> area_boundary = AreaDefBoundary(area_def, frequency=100) # doctest: +SKIP
>>> area_boundary = area_boundary.contour_poly # doctest: +SKIP
>>> list_of_polygons = []
>>> for mypass in passes: # doctest: +SKIP
>>> list_of_polygons.append(mypass.boundary.contour_poly) # doctest: +SKIP
>>> non_overlaps = GetNonOverlapUnions(list_of_polygons) # doctest: +SKIP
>>> non_overlaps.merge() # doctest: +SKIP
>>> polygons = non_overlaps.get_polygons() # doctest: +SKIP
>>> coverage = 0
>>> for polygon in polygons: # doctest: +SKIP
>>> isect = polygon.intersection(area_boundary) # doctest: +SKIP
>>> if isect: # doctest: +SKIP
>>> coverage = coverage + isect.area() # doctest: +SKIP
>>> area_cov = coverage / area_boundary.area() # doctest: +SKIP
>>> print("Area coverage = {0}".format(area_cov)) # doctest: +SKIP
0.889317815
.. image:: /_static/images/2_passes_between_202001051137_and_202001051156.png
In this case the relative area covered by the two passes (blue outlines) over
the area of interest (red outlines) is 89%.
.. _Cartopy: http://scitools.org.uk/cartopy/
.. _trollschedule: https://github.com/pytroll/pytroll-schedule.git
|