├── .gitattributes ├── .github └── workflows │ ├── build-linux.yml │ ├── build-mac.yml │ ├── build-windows.yml │ ├── build.yml │ ├── release.yml │ └── validate.yml ├── .gitignore ├── GEHistoricalImagery.sln ├── LICENSE.txt ├── README.md ├── docs ├── README.md ├── assets │ ├── Cherry Creek 1-Small.jpg │ ├── Cherry Creek 2-Small.jpg │ ├── Cherry Creek 3-Small.jpg │ ├── Cherry Creek 4-Small.jpg │ ├── Cherry Creek 5-Small.jpg │ ├── Cherry Creek 6-Small.jpg │ └── RegionFile.kmz ├── availability.md ├── download.md ├── dump.md ├── info.md └── regions.md ├── gehinix.sh ├── src ├── GEHistoricalImagery │ ├── Cli │ │ ├── AoiVerb.cs │ │ ├── Availability.cs │ │ ├── Download.cs │ │ ├── Dump.cs │ │ ├── FileDownloadVerb.cs │ │ ├── Info.cs │ │ ├── OptionChooser.cs │ │ └── OptionsBase.cs │ ├── CoordinateSystem.cs │ ├── EarthImage.cs │ ├── GEHistoricalImagery.csproj │ ├── GdalLib.cs │ ├── ImageDateHelper.cs │ ├── Kml │ │ └── Placemark.cs │ ├── OSGeo.GDAL │ │ └── GDALExtensions.cs │ ├── ParallelProcessor.cs │ ├── PathHelper.cs │ ├── Program.cs │ ├── TileDataset.cs │ └── curl-ca-bundle.crt ├── LibEsri │ ├── Capabilities.cs │ ├── DatedEsriTile.cs │ ├── EsriExtensions.cs │ ├── EsriTile.cs │ ├── Geometry │ │ └── DatedRegion.cs │ ├── Layer.cs │ ├── LibEsri.csproj │ └── WayBack.cs ├── LibGoogleEarth │ ├── DatedTile.cs │ ├── DbRoot.cs │ ├── DefaultDbRoot.cs │ ├── IEarthAsset.cs │ ├── Keyhole │ │ ├── IQuadtreeChannel.cs │ │ ├── IQuadtreeLayer.cs │ │ ├── IQuadtreeNode.cs │ │ ├── IQuadtreePacket.cs │ │ ├── ISparseQuadtreeNode.cs │ │ ├── KhQuadTreeBTG.cs │ │ ├── KhQuadTreePacket16.cs │ │ ├── KhQuadTreePacketHeader.cs │ │ ├── KhQuadTreeQuantum16.cs │ │ ├── KhQuadtreeChannel.cs │ │ ├── KhQuadtreeLayer.cs │ │ ├── KhQuadtreeNode.cs │ │ ├── KhSparseQuadtreeNode.cs │ │ ├── QuadtreeChannel.cs │ │ ├── QuadtreeImageryDatedTile.cs │ │ ├── QuadtreeLayer.cs │ │ ├── QuadtreeNode.cs │ │ └── QuadtreePacket.cs │ ├── KeyholeTile.cs │ ├── LibGoogleEarth.csproj │ ├── NamedDbRoot.cs │ ├── ProtoBuf │ │ ├── DbrootV2.cs │ │ └── Quadtreeset.cs │ ├── TerrainTile.cs │ ├── TileNode.cs │ ├── Util.cs │ └── WORKINGPROGRESS │ │ ├── GridMesh.cs │ │ └── TerrainMesh.cs └── LibMapCommon │ ├── CachedHttpClient.cs │ ├── Extensions.cs │ ├── Geometry │ ├── GeoPolygon.cs │ ├── GeoRegion.cs │ ├── Line2.cs │ ├── Matrix2x2.cs │ ├── PixelPolygon.cs │ ├── PixelRegion.cs │ ├── Polygon.cs │ ├── Region.cs │ ├── TileStats.cs │ ├── Vector2.cs │ └── Vector3.cs │ ├── IGeoCoordinate.cs │ ├── IO │ ├── AsyncMutex.cs │ ├── CachedValueTaskSource[TResult].cs │ └── ITaskCompletionSource[TResult].cs │ ├── ITile.cs │ ├── LibMapCommon.csproj │ ├── OSGeo.GDAL │ └── GeoTransform.cs │ ├── PixelPoint.cs │ ├── TypeConverters │ └── Wgs1984TypeConverter.cs │ ├── Util.cs │ ├── WebMercator.cs │ └── Wgs1984.cs └── test ├── GEHistoricalImageryTest ├── GEHistoricalImageryTest.csproj └── RectangleTests.cs └── LibGoogleEarthTest ├── CoordinateTests.cs ├── KeyholeTileTests.cs ├── LibGoogleEarthTest.csproj ├── QtPathTest.cs ├── RootIndexDictionary.json └── SubIndexDictionary.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/.github/workflows/build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/build-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/.github/workflows/build-mac.yml -------------------------------------------------------------------------------- /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/.gitignore -------------------------------------------------------------------------------- /GEHistoricalImagery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/GEHistoricalImagery.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ./docs/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/Cherry Creek 1-Small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/assets/Cherry Creek 1-Small.jpg -------------------------------------------------------------------------------- /docs/assets/Cherry Creek 2-Small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/assets/Cherry Creek 2-Small.jpg -------------------------------------------------------------------------------- /docs/assets/Cherry Creek 3-Small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/assets/Cherry Creek 3-Small.jpg -------------------------------------------------------------------------------- /docs/assets/Cherry Creek 4-Small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/assets/Cherry Creek 4-Small.jpg -------------------------------------------------------------------------------- /docs/assets/Cherry Creek 5-Small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/assets/Cherry Creek 5-Small.jpg -------------------------------------------------------------------------------- /docs/assets/Cherry Creek 6-Small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/assets/Cherry Creek 6-Small.jpg -------------------------------------------------------------------------------- /docs/assets/RegionFile.kmz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/assets/RegionFile.kmz -------------------------------------------------------------------------------- /docs/availability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/availability.md -------------------------------------------------------------------------------- /docs/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/download.md -------------------------------------------------------------------------------- /docs/dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/dump.md -------------------------------------------------------------------------------- /docs/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/info.md -------------------------------------------------------------------------------- /docs/regions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/docs/regions.md -------------------------------------------------------------------------------- /gehinix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/gehinix.sh -------------------------------------------------------------------------------- /src/GEHistoricalImagery/Cli/AoiVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/Cli/AoiVerb.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/Cli/Availability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/Cli/Availability.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/Cli/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/Cli/Download.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/Cli/Dump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/Cli/Dump.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/Cli/FileDownloadVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/Cli/FileDownloadVerb.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/Cli/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/Cli/Info.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/Cli/OptionChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/Cli/OptionChooser.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/Cli/OptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/Cli/OptionsBase.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/CoordinateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/CoordinateSystem.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/EarthImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/EarthImage.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/GEHistoricalImagery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/GEHistoricalImagery.csproj -------------------------------------------------------------------------------- /src/GEHistoricalImagery/GdalLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/GdalLib.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/ImageDateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/ImageDateHelper.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/Kml/Placemark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/Kml/Placemark.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/OSGeo.GDAL/GDALExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/OSGeo.GDAL/GDALExtensions.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/ParallelProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/ParallelProcessor.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/PathHelper.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/Program.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/TileDataset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/TileDataset.cs -------------------------------------------------------------------------------- /src/GEHistoricalImagery/curl-ca-bundle.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/GEHistoricalImagery/curl-ca-bundle.crt -------------------------------------------------------------------------------- /src/LibEsri/Capabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibEsri/Capabilities.cs -------------------------------------------------------------------------------- /src/LibEsri/DatedEsriTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibEsri/DatedEsriTile.cs -------------------------------------------------------------------------------- /src/LibEsri/EsriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibEsri/EsriExtensions.cs -------------------------------------------------------------------------------- /src/LibEsri/EsriTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibEsri/EsriTile.cs -------------------------------------------------------------------------------- /src/LibEsri/Geometry/DatedRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibEsri/Geometry/DatedRegion.cs -------------------------------------------------------------------------------- /src/LibEsri/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibEsri/Layer.cs -------------------------------------------------------------------------------- /src/LibEsri/LibEsri.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibEsri/LibEsri.csproj -------------------------------------------------------------------------------- /src/LibEsri/WayBack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibEsri/WayBack.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/DatedTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/DatedTile.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/DbRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/DbRoot.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/DefaultDbRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/DefaultDbRoot.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/IEarthAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/IEarthAsset.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/IQuadtreeChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/IQuadtreeChannel.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/IQuadtreeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/IQuadtreeLayer.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/IQuadtreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/IQuadtreeNode.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/IQuadtreePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/IQuadtreePacket.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/ISparseQuadtreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/ISparseQuadtreeNode.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/KhQuadTreeBTG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/KhQuadTreeBTG.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/KhQuadTreePacket16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/KhQuadTreePacket16.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/KhQuadTreePacketHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/KhQuadTreePacketHeader.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/KhQuadTreeQuantum16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/KhQuadTreeQuantum16.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/KhQuadtreeChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/KhQuadtreeChannel.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/KhQuadtreeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/KhQuadtreeLayer.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/KhQuadtreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/KhQuadtreeNode.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/KhSparseQuadtreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/KhSparseQuadtreeNode.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/QuadtreeChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/QuadtreeChannel.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/QuadtreeImageryDatedTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/QuadtreeImageryDatedTile.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/QuadtreeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/QuadtreeLayer.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/QuadtreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/QuadtreeNode.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Keyhole/QuadtreePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Keyhole/QuadtreePacket.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/KeyholeTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/KeyholeTile.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/LibGoogleEarth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/LibGoogleEarth.csproj -------------------------------------------------------------------------------- /src/LibGoogleEarth/NamedDbRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/NamedDbRoot.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/ProtoBuf/DbrootV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/ProtoBuf/DbrootV2.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/ProtoBuf/Quadtreeset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/ProtoBuf/Quadtreeset.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/TerrainTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/TerrainTile.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/TileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/TileNode.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/Util.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/WORKINGPROGRESS/GridMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/WORKINGPROGRESS/GridMesh.cs -------------------------------------------------------------------------------- /src/LibGoogleEarth/WORKINGPROGRESS/TerrainMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibGoogleEarth/WORKINGPROGRESS/TerrainMesh.cs -------------------------------------------------------------------------------- /src/LibMapCommon/CachedHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/CachedHttpClient.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Extensions.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/GeoPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/GeoPolygon.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/GeoRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/GeoRegion.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/Line2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/Line2.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/Matrix2x2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/Matrix2x2.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/PixelPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/PixelPolygon.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/PixelRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/PixelRegion.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/Polygon.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/Region.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/TileStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/TileStats.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/Vector2.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Geometry/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Geometry/Vector3.cs -------------------------------------------------------------------------------- /src/LibMapCommon/IGeoCoordinate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/IGeoCoordinate.cs -------------------------------------------------------------------------------- /src/LibMapCommon/IO/AsyncMutex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/IO/AsyncMutex.cs -------------------------------------------------------------------------------- /src/LibMapCommon/IO/CachedValueTaskSource[TResult].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/IO/CachedValueTaskSource[TResult].cs -------------------------------------------------------------------------------- /src/LibMapCommon/IO/ITaskCompletionSource[TResult].cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/IO/ITaskCompletionSource[TResult].cs -------------------------------------------------------------------------------- /src/LibMapCommon/ITile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/ITile.cs -------------------------------------------------------------------------------- /src/LibMapCommon/LibMapCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/LibMapCommon.csproj -------------------------------------------------------------------------------- /src/LibMapCommon/OSGeo.GDAL/GeoTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/OSGeo.GDAL/GeoTransform.cs -------------------------------------------------------------------------------- /src/LibMapCommon/PixelPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/PixelPoint.cs -------------------------------------------------------------------------------- /src/LibMapCommon/TypeConverters/Wgs1984TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/TypeConverters/Wgs1984TypeConverter.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Util.cs -------------------------------------------------------------------------------- /src/LibMapCommon/WebMercator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/WebMercator.cs -------------------------------------------------------------------------------- /src/LibMapCommon/Wgs1984.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/src/LibMapCommon/Wgs1984.cs -------------------------------------------------------------------------------- /test/GEHistoricalImageryTest/GEHistoricalImageryTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/test/GEHistoricalImageryTest/GEHistoricalImageryTest.csproj -------------------------------------------------------------------------------- /test/GEHistoricalImageryTest/RectangleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/test/GEHistoricalImageryTest/RectangleTests.cs -------------------------------------------------------------------------------- /test/LibGoogleEarthTest/CoordinateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/test/LibGoogleEarthTest/CoordinateTests.cs -------------------------------------------------------------------------------- /test/LibGoogleEarthTest/KeyholeTileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/test/LibGoogleEarthTest/KeyholeTileTests.cs -------------------------------------------------------------------------------- /test/LibGoogleEarthTest/LibGoogleEarthTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/test/LibGoogleEarthTest/LibGoogleEarthTest.csproj -------------------------------------------------------------------------------- /test/LibGoogleEarthTest/QtPathTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/test/LibGoogleEarthTest/QtPathTest.cs -------------------------------------------------------------------------------- /test/LibGoogleEarthTest/RootIndexDictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/test/LibGoogleEarthTest/RootIndexDictionary.json -------------------------------------------------------------------------------- /test/LibGoogleEarthTest/SubIndexDictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mbucari/GEHistoricalImagery/HEAD/test/LibGoogleEarthTest/SubIndexDictionary.json --------------------------------------------------------------------------------