コード例 #1
0
            public void Setup()
            {
                if (Sequence == "Raw")
                {
                    var ordinateGroups = new[] { Ordinates.XY };
                    NtsGeometryServices.Instance = new NtsGeometryServices(new RawCoordinateSequenceFactory(ordinateGroups), new PrecisionModel(), 0);
                }
                else if (Sequence == "DotSpatial")
                {
                    NtsGeometryServices.Instance = new NtsGeometryServices(new DotSpatialAffineCoordinateSequenceFactory(Ordinates.XY), new PrecisionModel(), 0);
                }
                else if (Sequence == "FlatGeobuf")
                {
                    NtsGeometryServices.Instance = new NtsGeometryServices(new FlatGeobufCoordinateSequenceFactory(), new PrecisionModel(), 0);
                }
                var  geometryType = GeometryType.LineString;
                byte dimensions   = 2;
                var  headerBuffer = FeatureCollectionConversions.BuildHeader(1, geometryType, dimensions, null, null);

                headerBuffer.Position += 4;
                header = Header.GetRootAsHeader(headerBuffer);
                var geometry = MakeLineString(Vertices);

                feature         = new NetTopologySuite.Features.Feature(geometry, null);
                bytes           = FeatureConversions.ToByteBuffer(feature, ref header);
                bytes.Position += 4;
                feature         = FeatureConversions.FromByteBuffer(bytes, ref header);
            }
コード例 #2
0
 public static string ToGeoJson(byte[] bytes)
 {
     var fc = FeatureCollectionConversions.FromFlatGeobuf(bytes);
     var writer = new GeoJsonWriter();
     var geojson = writer.Write(fc);
     return geojson;
 }
コード例 #3
0
 public static byte[] FromGeoJson(string geojson)
 {
     var reader = new GeoJsonReader();
     var fc = reader.Read<FeatureCollection>(geojson);
     var bytes = FeatureCollectionConversions.ToFlatGeobuf(fc);
     return bytes;
 }
コード例 #4
0
ファイル: GeoJsonConversions.cs プロジェクト: pka/flatgeobuf
        public static async Task <byte[]> SerializeAsync(string geojson)
        {
            var reader = new GeoJsonReader();
            var fc     = reader.Read <FeatureCollection>(geojson);
            var bytes  = await FeatureCollectionConversions.SerializeAsync(fc, GeometryType.Unknown);

            return(bytes);
        }
コード例 #5
0
        public static byte[] Serialize(string geojson)
        {
            var reader = new GeoJsonReader();
            var fc     = reader.Read <FeatureCollection>(geojson);
            var bytes  = FeatureCollectionConversions.Serialize(fc, GeometryType.Unknown);

            return(bytes);
        }
コード例 #6
0
        public static string Deserialize(byte[] bytes)
        {
            var fc      = FeatureCollectionConversions.Deserialize(bytes);
            var writer  = new GeoJsonWriter();
            var geojson = writer.Write(fc);

            return(geojson);
        }
コード例 #7
0
        public void TigerRoadsTest()
        {
            var geojson    = File.ReadAllText("../../../../../../test/data/tiger_roads.geojson");
            var reader     = new GeoJsonReader();
            var fcExpected = reader.Read <FeatureCollection>(geojson);
            var bytes      = FeatureCollectionConversions.ToFlatGeobuf(fcExpected);
            var fcActual   = FeatureCollectionConversions.FromFlatGeobuf(bytes);

            Assert.AreEqual(fcExpected.Count, fcActual.Count);
        }
コード例 #8
0
        public void StatesTest()
        {
            var geojson    = File.ReadAllText("../../../../../../test/data/states.geojson");
            var reader     = new GeoJsonReader();
            var fcExpected = reader.Read <FeatureCollection>(geojson);
            var bytes      = FeatureCollectionConversions.ToFlatGeobuf(fcExpected, GeometryType.MultiPolygon);
            var fcActual   = FeatureCollectionConversions.FromFlatGeobuf(bytes);

            Assert.AreEqual(fcExpected.Count, fcActual.Count);
        }
コード例 #9
0
        public void TigerRoadsTest()
        {
            var geojson    = File.ReadAllText("../../../../../../test/data/tiger_roads.geojson");
            var reader     = new GeoJsonReader();
            var fcExpected = reader.Read <FeatureCollection>(geojson);
            var bytes      = FeatureCollectionConversions.Serialize(fcExpected, GeometryType.LineString);
            var fcActual   = FeatureCollectionConversions.Deserialize(bytes);

            Assert.AreEqual(fcExpected.Count, fcActual.Count);
        }
コード例 #10
0
        static async Task <IFeature> ToDeserializedFeature(string wkt)
        {
            var  f            = MakeFeature(wkt);
            var  fc           = MakeFeatureCollection(f);
            var  geometryType = GeometryConversions.ToGeometryType(f.Geometry);
            byte dimensions   = GetDimensions(f.Geometry);
            var  flatgeobuf   = await FeatureCollectionConversions.SerializeAsync(fc, geometryType, dimensions);

            return(FeatureCollectionConversions.Deserialize(flatgeobuf)[0]);
        }
コード例 #11
0
        public async Task PointMutable()
        {
            var f          = MakeFeature("POINT (1.2 -2.1)");
            var fc         = MakeFeatureCollection(f);
            var flatgeobuf = await FeatureCollectionConversions.SerializeAsync(fc, GeometryType.Point, 2);

            var fcOut = FeatureCollectionConversions.Deserialize(flatgeobuf);
            var point = fcOut[0].Geometry as Point;

            point.CoordinateSequence.SetOrdinate(0, 0, 0.01);
            Assert.AreEqual(0.01, point.Coordinate.X);
        }
コード例 #12
0
        public void CountriesTest()
        {
            var bytes    = File.ReadAllBytes("../../../../../../test/data/countries.fgb");
            var fcActual = FeatureCollectionConversions.Deserialize(bytes);

            Assert.AreEqual(179, fcActual.Count);

            var rect = new Envelope(12, 12, 56, 56);
            var list = FeatureCollectionConversions.Deserialize(new MemoryStream(bytes), rect).ToList();

            Assert.AreEqual(3, list.Count);
        }
コード例 #13
0
        static async Task <string> RoundTrip(string wkt)
        {
            var  f            = MakeFeature(wkt);
            var  fc           = MakeFeatureCollection(f);
            var  geometryType = GeometryConversions.ToGeometryType(f.Geometry);
            byte dimensions   = GetDimensions(f.Geometry);
            var  flatgeobuf   = await FeatureCollectionConversions.SerializeAsync(fc, geometryType, dimensions);

            var fcOut  = FeatureCollectionConversions.Deserialize(flatgeobuf);
            var wktOut = new WKTWriter(dimensions).Write(fcOut[0].Geometry);

            return(wktOut);
        }
コード例 #14
0
            public FeatureCollectionConversionsBenchmark()
            {
                var point    = GeometryRoundtripTests.MakeFeature("POINT (1.2 -2.1)");
                var polygon  = GeometryRoundtripTests.MakeFeature("POLYGON ((30 10, 40 40, 20 40, 10 20, 30 10))");
                var polygonZ = GeometryRoundtripTests.MakeFeature("POLYGON Z((30 10 1, 40 40 2, 20 40 3, 10 20 4, 30 10 5))");

                var attributes = new Dictionary <string, object>()
                {
                    ["test1"] = 1,
                    ["test2"] = 1.1,
                    ["test3"] = "test",
                    ["test4"] = true,
                    ["test5"] = "teståöä2",
                    ["test6"] = false,
                };

                var pointWithAttributes = GeometryRoundtripTests.MakeFeature("POINT (1.2 -2.1)", attributes);

                pointFixture = new GeometryFixture()
                {
                    fc           = GeometryRoundtripTests.MakeFeatureCollection(point),
                    geometryType = GeometryConversions.ToGeometryType(point.Geometry),
                    dimensions   = GeometryRoundtripTests.GetDimensions(point.Geometry),
                };
                pointFixture.flatgeobuf = FeatureCollectionConversions.Serialize(pointFixture.fc, pointFixture.geometryType, pointFixture.dimensions);

                polygonFixture = new GeometryFixture()
                {
                    fc           = GeometryRoundtripTests.MakeFeatureCollection(polygon),
                    geometryType = GeometryConversions.ToGeometryType(polygon.Geometry),
                    dimensions   = GeometryRoundtripTests.GetDimensions(polygon.Geometry),
                };
                polygonFixture.flatgeobuf = FeatureCollectionConversions.Serialize(polygonFixture.fc, polygonFixture.geometryType, polygonFixture.dimensions);

                polygonZFixture = new GeometryFixture()
                {
                    fc           = GeometryRoundtripTests.MakeFeatureCollection(polygonZ),
                    geometryType = GeometryConversions.ToGeometryType(polygonZ.Geometry),
                    dimensions   = GeometryRoundtripTests.GetDimensions(polygonZ.Geometry),
                };
                polygonZFixture.flatgeobuf = FeatureCollectionConversions.Serialize(polygonZFixture.fc, polygonZFixture.geometryType, polygonZFixture.dimensions);

                pointWithAttributesFixture = new GeometryFixture()
                {
                    fc           = GeometryRoundtripTests.MakeFeatureCollection(pointWithAttributes),
                    geometryType = GeometryConversions.ToGeometryType(pointWithAttributes.Geometry),
                    dimensions   = GeometryRoundtripTests.GetDimensions(pointWithAttributes.Geometry),
                };
                pointWithAttributesFixture.flatgeobuf = FeatureCollectionConversions.Serialize(pointWithAttributesFixture.fc, pointWithAttributesFixture.geometryType, pointWithAttributesFixture.dimensions);
            }
コード例 #15
0
        private async Task RunAsync(CancellationToken stoppingToken)
        {
            try
            {
                using var scope = _serviceProvider.CreateScope();
                var db = scope.ServiceProvider
                         .GetRequiredService <OsmDbContext>();

                IEnumerable <Feature> GetFeatures()
                {
                    var maxTrackCount = _configuration.GetValueOrDefault("MaxFeatures", int.MaxValue);
                    var tracks        = db.Tracks.Where(x => x.Id < maxTrackCount)
                                        .Where(x => x.UserId != null).OrderBy(x => x.Id);

                    var trackCount = 0;

                    foreach (var track in tracks)
                    {
                        trackCount++;
                        if (stoppingToken.IsCancellationRequested)
                        {
                            break;
                        }
                        if (track.GpxFile == null)
                        {
                            continue;
                        }

                        _logger.LogInformation(
                            "Track {trackCount}/{maxTrackCount} {trackId}: {trackLength} bytes",
                            trackCount + 1, maxTrackCount, track.Id, track.GpxFile?.Length);


                        // build attributes
                        var attributes = new AttributesTable()
                        {
                            { "bdp_id", track.Id },
                            { "track_id", track.OsmTrackId },
                            { "user_id", track.UserId ?? -1 },
                            { "file_name", track.GpxFileName ?? string.Empty },
                            { "timestamp", (track.OsmTimeStamp ?? DateTime.UnixEpoch).ToUnixTime() },
                            { "tags", string.Join(',', track.Tags ?? Array.Empty <string>()) }
                        };

                        // try compressed.
                        string?xml = null;
                        try {
                            using (var memoryStream = new MemoryStream(track.GpxFile))
                                using (var gzipStream1 = new GZipStream(memoryStream, CompressionMode.Decompress))
                                    using (var gzipStream2 = new GZipStream(gzipStream1, CompressionMode.Decompress))
                                        using (var streamReader = new StreamReader(gzipStream2)) {
                                            xml = streamReader.ReadToEnd();
                                        }
                        }
                        catch (Exception e) {
                        }

                        // try uncompressed.
                        if (string.IsNullOrWhiteSpace(xml))
                        {
                            try {
                                using (var memoryStream = new MemoryStream(track.GpxFile))
                                    using (var gzipStream =
                                               new GZipStream(memoryStream, CompressionMode.Decompress))
                                        using (var streamReader = new StreamReader(gzipStream)) {
                                            xml = streamReader.ReadToEnd();
                                        }
                            }
                            catch (Exception e) {
                            }
                        }

                        // read gpx.
                        Feature[]? trackFeatures = null;
                        try {
                            if (!string.IsNullOrWhiteSpace(xml))
                            {
                                using (var reader = new StringReader(xml))
                                    using (var xmlReader = XmlReader.Create(reader)) {
                                        (_, trackFeatures, _) =
                                            GpxReader.ReadFeatures(xmlReader, new GpxReaderSettings()
                                        {
                                            DefaultCreatorIfMissing = "OSM"
                                        }, GeometryFactory.Default);
                                    }
                            }
                        }
                        catch (Exception e) {
                            _logger.LogError(e, "Unhandled exception while parsing GPX");
                        }

                        if (trackFeatures != null)
                        {
                            foreach (var tf in trackFeatures)
                            {
                                if (stoppingToken.IsCancellationRequested)
                                {
                                    break;
                                }
                                if (tf.Geometry is Point)
                                {
                                    continue;
                                }
                                if (tf.Geometry is Polygon)
                                {
                                    continue;
                                }

                                if (tf.Geometry is MultiLineString mls)
                                {
                                    foreach (var g in mls)
                                    {
                                        if (g is LineString ls)
                                        {
                                            if (ls.Count >= 2)
                                            {
                                                yield return(new Feature(ls, attributes));
                                            }
                                        }
                                    }
                                }
                                else if (tf.Geometry is LineString ls)
                                {
                                    if (ls.Count >= 2)
                                    {
                                        yield return(new Feature(tf.Geometry, attributes));
                                    }
                                }
                            }
                        }
                        else
                        {
                            _logger.LogWarning("Failed to parse track: {trackId} - {trackFileName}", track.Id,
                                               track.GpxFileName);
                        }
                    }
                }

                var outputFileInfo = new FileInfo(
                    this._configuration.GetValueOrDefault("OutputFile", "osm-gpx.fbg"));
                var tempOutputFile = Path.Combine(outputFileInfo.Directory.FullName, ".osm-gpx.fbg.part");

                _logger.LogDebug("Building output file: {tempOutputFile}", tempOutputFile);
                await using var outputFileStream = File.Open(tempOutputFile, FileMode.Create);
                FeatureCollectionConversions.Serialize(outputFileStream, GetFeatures(), FlatGeobuf.GeometryType.LineString,
                                                       columns: new []
                {
                    new ColumnMeta()
                    {
                        Name = "bdp_id",
                        Type = ColumnType.Long
                    },
                    new ColumnMeta()
                    {
                        Name = "track_id",
                        Type = ColumnType.Long
                    },
                    new ColumnMeta()
                    {
                        Name = "user_id",
                        Type = ColumnType.Int
                    },
                    new ColumnMeta()
                    {
                        Name = "file_name",
                        Type = ColumnType.String
                    },
                    new ColumnMeta()
                    {
                        Name = "timestamp",
                        Type = ColumnType.Long
                    },
                    new ColumnMeta()
                    {
                        Name = "tags",
                        Type = ColumnType.String
                    }
                }.ToList());

                if (outputFileInfo.Exists)
                {
                    outputFileInfo.Delete();
                }
                File.Move(tempOutputFile, outputFileInfo.FullName);
                _logger.LogDebug("Moved output file: {tempOutputFile}->{outputFile}",
                                 tempOutputFile, outputFileInfo.FullName);

                _logger.LogInformation("Built output file: {outputFile}", outputFileInfo.FullName);
            }
            catch (Exception e)
            {
                _logger.LogError(e, "Unhandled exception exporting GPX tracks");
            }
        }
コード例 #16
0
ファイル: Worker.cs プロジェクト: frezap/osm-gpx-integration
        private async Task RunAsync(CancellationToken stoppingToken)
        {
            try
            {
                IEnumerable <Feature> GetFeatures()
                {
                    var maxTrackCount = _configuration.GetValueOrDefault("MaxFeatures", int.MaxValue);
                    var tracks        = _db.Tracks.Where(x => x.Id < maxTrackCount)
                                        .Where(x => x.UserId != null).OrderBy(x => x.Id);

                    var trackCount = 0;

                    foreach (var track in tracks)
                    {
                        trackCount++;
                        if (stoppingToken.IsCancellationRequested)
                        {
                            break;
                        }
                        if (track.GpxFile == null)
                        {
                            continue;
                        }

                        _logger.LogInformation(
                            $"Track {trackCount + 1}/{maxTrackCount} {track.Id}: {track.GpxFile?.Length} bytes");

                        // try compressed.
                        string?xml = null;
                        try {
                            using (var memoryStream = new MemoryStream(track.GpxFile))
                                using (var gzipStream1 = new GZipStream(memoryStream, CompressionMode.Decompress))
                                    using (var gzipStream2 = new GZipStream(gzipStream1, CompressionMode.Decompress))
                                        using (var streamReader = new StreamReader(gzipStream2)) {
                                            xml = streamReader.ReadToEnd();
                                        }
                        }
                        catch (Exception e) {
                        }

                        // try uncompressed.
                        if (string.IsNullOrWhiteSpace(xml))
                        {
                            try {
                                using (var memoryStream = new MemoryStream(track.GpxFile))
                                    using (var gzipStream =
                                               new GZipStream(memoryStream, CompressionMode.Decompress))
                                        using (var streamReader = new StreamReader(gzipStream)) {
                                            xml = streamReader.ReadToEnd();
                                        }
                            }
                            catch (Exception e) {
                            }
                        }

                        // read gpx.
                        Feature[]? trackFeatures = null;
                        try {
                            if (!string.IsNullOrWhiteSpace(xml))
                            {
                                using (var reader = new StringReader(xml))
                                    using (var xmlReader = XmlReader.Create(reader)) {
                                        (_, trackFeatures, _) =
                                            GpxReader.ReadFeatures(xmlReader, new GpxReaderSettings()
                                        {
                                            DefaultCreatorIfMissing = "OSM"
                                        }, GeometryFactory.Default);
                                    }
                            }
                        }
                        catch (Exception e) {
                            _logger.LogError(e, "Unhandled exception while parsing GPX");
                        }

                        if (trackFeatures != null)
                        {
                            foreach (var tf in trackFeatures)
                            {
                                if (stoppingToken.IsCancellationRequested)
                                {
                                    break;
                                }
                                if (tf.Geometry is Point)
                                {
                                    continue;
                                }
                                if (tf.Geometry is Polygon)
                                {
                                    continue;
                                }

                                if (tf.Geometry is MultiLineString mls)
                                {
                                    foreach (var g in mls)
                                    {
                                        if (g is LineString ls)
                                        {
                                            if (ls.Count >= 2)
                                            {
                                                yield return(new Feature(ls, new AttributesTable()
                                                {
                                                    { "track_id", track.Id }
                                                }));
                                            }
                                        }
                                    }
                                }
                                else if (tf.Geometry is LineString ls)
                                {
                                    if (ls.Count >= 2)
                                    {
                                        yield return(new Feature(tf.Geometry, new AttributesTable()
                                        {
                                            { "track_id", track.Id }
                                        }));
                                    }
                                }
                            }
                        }
                        else
                        {
                            _logger.LogWarning("Failed to parse track: {trackId} - {trackFileName}", track.Id,
                                               track.GpxFileName);
                        }
                    }
                }

                var outputFile = this._configuration.GetValueOrDefault("OutputFile", "osm-gpx.fbg");
                _logger.LogDebug("Building output file: {outputFile}", outputFile);
                using var outputFileStream = File.Open(outputFile, FileMode.Create);
                FeatureCollectionConversions.Serialize(outputFileStream, GetFeatures(), FlatGeobuf.GeometryType.LineString);

                _logger.LogInformation("Built output file: {outputFile}", outputFile);
            }
            catch (Exception e)
            {
                _logger.LogError(e, $"Unhandled exception exporting GPX tracks");
            }
        }
コード例 #17
0
 public void DeserializePointWithAttributes()
 {
     FeatureCollectionConversions.Deserialize(pointWithAttributesFixture.flatgeobuf);
 }
コード例 #18
0
 public void SerializePointWithAttributes()
 {
     FeatureCollectionConversions.Serialize(pointWithAttributesFixture.fc, pointWithAttributesFixture.geometryType, pointWithAttributesFixture.dimensions);
 }
コード例 #19
0
 public void DeserializePolygonZ()
 {
     FeatureCollectionConversions.Deserialize(polygonZFixture.flatgeobuf);
 }
コード例 #20
0
 public void SerializePolygonZ()
 {
     FeatureCollectionConversions.Serialize(polygonZFixture.fc, polygonZFixture.geometryType, polygonZFixture.dimensions);
 }
コード例 #21
0
 public void DeserializePoint()
 {
     FeatureCollectionConversions.Deserialize(pointFixture.flatgeobuf);
 }