public void parse_colorado_polygon_through_pipeline_expect_translation_to_geometric_object()
        {
            var geoJSON = Container.GetService <IConfigurationStrategy>().GetJson("colorado_outline");

            var context = new GeoJsonContext(geoJSON)
            {
                MaxZoom   = 14,
                Buffer    = 64,
                Extent    = 4096,
                Tolerance = 3
            };

            var pipeline = new DetermineCollectionsTypePipeline()
                           .ExtendWith(new ParseGeoJsonToFeatures()
                                       .IterateWith(new ProjectGeoJSONToGeometric(
                                                        (geoItem) => new WebMercatorProcessor(geoItem)))
                                       .ExtendWith(new GeometricSimplification()));

            pipeline.Process(context);

            var feature = context.TileFeatures.Single() as Feature;

            Assert.IsNotNull(feature);

            Assert.AreEqual(386, feature.Geometry[0].Length);
            Assert.AreEqual(0.00027851809900100721d, feature.Area[0]);
            Assert.AreEqual(0.067996893428153737d, feature.Distance[0]);
            Assert.AreEqual(0.21655132222222223d, feature.MaxGeometry.X);
            Assert.AreEqual(0.38925641237479158d, feature.MaxGeometry.Y);
            Assert.AreEqual(0.19705485277777779d, feature.MinGeometry.X);
            Assert.AreEqual(0.374913347992747d, feature.MinGeometry.Y);
            Assert.AreEqual(GeometryType.Polygon, feature.Type);
            Assert.AreEqual(5, feature.Tags.Count);
        }
        public async Task process_geojson_file_using_pipeline_expect_collections()
        {
            var rawGeoJSON = Container.GetService <IConfigurationStrategy>().GetJson("simple_stops");

            var context = new GeoJsonContext(rawGeoJSON);

            var pipe = new DetermineCollectionsTypePipeline();

            await pipe.Process(context);

            Assert.AreEqual(2, context.Features.Features.Count);
        }
        public async Task parse_multi_linestring_through_pipeline_expect_features()
        {
            var geoJSON = Container.GetService <IConfigurationStrategy>().GetJson("multi_linestring_sample");

            var context = new GeoJsonContext(geoJSON)
            {
                MaxZoom   = 14,
                Buffer    = 64,
                Extent    = 4096,
                Tolerance = 3
            };

            var pipeline = new DetermineCollectionsTypePipeline()
                           .ExtendWith(new ParseGeoJsonToFeatures()
                                       .IterateWith(new ProjectGeoJSONToGeometric(
                                                        (geoItem) => new WebMercatorProcessor(geoItem)))
                                       .ExtendWith(new GeometricSimplification()));

            await pipeline.Process(context);

            var feature  = context.TileFeatures.First() as Feature;
            var geometry = feature.Geometry.First();

            Assert.AreEqual(5.2325351872911652E-07, feature.Area[0]);
            Assert.AreEqual(5.066394805852692E-06, feature.Distance[0]);
            Assert.AreEqual(GeometryType.MultiLineString, feature.Type);
            Assert.AreEqual(6, geometry.Length);

            geometry = feature.Geometry.Skip(1).First();
            Assert.AreEqual(3.6111155667095662E-07, feature.Area[1]);
            Assert.AreEqual(3.0994415283758237E-06, feature.Distance[1]);
            Assert.AreEqual(GeometryType.MultiLineString, feature.Type);
            Assert.AreEqual(3, geometry.Length);

            geometry = feature.Geometry.Skip(2).First();
            Assert.AreEqual(5.9605864598938352E-07, feature.Area[2]);
            Assert.AreEqual(3.993511200006683E-06, feature.Distance[2]);
            Assert.AreEqual(GeometryType.MultiLineString, feature.Type);
            Assert.AreEqual(5, geometry.Length);

            geometry = feature.Geometry.Skip(3).First();
            Assert.AreEqual(6.8980112467170729E-07, feature.Area[3]);
            Assert.AreEqual(4.4107437134344174E-06, feature.Distance[3]);
            Assert.AreEqual(GeometryType.MultiLineString, feature.Type);
            Assert.AreEqual(4, geometry.Length);
        }
        public void parse_and_wrap_geometry_through_the_pipeline_expect_rendered_data()
        {
            //var geoJSON = Container.GetService<IConfigurationStrategy>().GetJson("populated_points_simple");
            var geoJSON = Container.GetService <IConfigurationStrategy>().GetJson("populated_points_two_US");

            var context = new GeoJsonContext(geoJSON)
            {
                MaxZoom   = 14,
                Buffer    = 64,
                Extent    = 4096,
                Tolerance = 3
            };

            var pipeline = new DetermineCollectionsTypePipeline()
                           .ExtendWith(new ParseGeoJsonToFeatures()
                                       .IterateWith(new ProjectGeoJSONToGeometric(
                                                        (geoItem) => new WebMercatorProcessor(geoItem))));

            pipeline.Process(context);
        }
        public async Task process_large_geojson_expect_points()
        {
            var geoJSON = Container.GetService <IConfigurationStrategy>().GetJson("nola_jazzhouses");

            var context = new GeoJsonContext(geoJSON)
            {
                MaxZoom   = 14,
                Buffer    = 64,
                Extent    = 4096,
                Tolerance = 3
            };

            var pipeline = new DetermineCollectionsTypePipeline()
                           .ExtendWith(new ParseGeoJsonToFeatures()
                                       .IterateWith(new ProjectGeoJSONToGeometric(
                                                        (geoItem) => new WebMercatorProcessor(geoItem)))
                                       .ExtendWith(new GeometricSimplification()));

            await pipeline.Process(context);
        }
        public void parse_geospatial_to_geometric_through_the_pipeline_expect_rendered_data()
        {
            var geoJSON = Container.GetService <IConfigurationStrategy>().GetJson("simple_stops");

            var context = new GeoJsonContext(geoJSON)
            {
                MaxZoom   = 14,
                Buffer    = 64,
                Extent    = 4096,
                Tolerance = 3
            };

            var pipeline = new DetermineCollectionsTypePipeline()
                           .ExtendWith(new ParseGeoJsonToFeatures()
                                       .IterateWith(new ProjectGeoJSONToGeometric(
                                                        (geoItem) => new WebMercatorProcessor(geoItem))));

            pipeline.Process(context);

            Assert.AreEqual(2, context.TileFeatures.Count());

            var feature1 = context.TileFeatures.FirstOrDefault(f => ((Feature)f).Id == "400001") as Feature;

            Assert.AreEqual("400001", feature1.Id);
            Assert.AreEqual("400001", feature1.Tags["stop_id"].ToString());
            Assert.AreEqual("4 AV/E 9 ST", feature1.Tags["stop_name"].ToString());
            Assert.AreEqual(0.294471d, feature1.Geometry[0][0].X);
            Assert.AreEqual(0.375915411794357d, feature1.Geometry[0][0].Y);
            Assert.AreEqual(0, feature1.Geometry[0][0].Z);

            var feature2 = context.TileFeatures.FirstOrDefault(f => ((Feature)f).Id == "400002") as Feature;

            Assert.AreEqual("400002", feature2.Id);
            Assert.AreEqual("400002", feature2.Tags["stop_id"].ToString());
            Assert.AreEqual("4 AV/E 12 ST", feature2.Tags["stop_name"].ToString());
            Assert.AreEqual(0.29447233333333334d, feature2.Geometry[0][0].X);
            Assert.AreEqual(0.37590819401923736d, feature2.Geometry[0][0].Y);
            Assert.AreEqual(0, feature2.Geometry[0][0].Z);
        }
        public async Task projected_into_features_initialize_layer_from_features_expect_cached_tile()
        {
            // Covers the case that the GeoJsonContext is not the context that initializes the TileRetrieverService //
            var geoJSON  = Container.GetService <IConfigurationStrategy>().GetJson("populated_points_two_US");
            var uniqueId = Guid.NewGuid().ToString().Substring(0, 6);
            var context  = new GeoJsonContext(geoJSON)
            {
                Identifier = uniqueId,
                MaxZoom    = 14,
                Buffer     = 64,
                Extent     = 4096,
                Tolerance  = 3
            };

            var tileContext = new SimpleTileContext()
            {
                MaxZoom   = 14,
                Buffer    = 64,
                Extent    = 4096,
                Tolerance = 3
            };

            var accessor  = new LayerTileCacheAccessor(() => new MockTransformedCacheStorage(), () => new MockRawCacheStorage());
            var generator = new Generator(tileContext, accessor, new LayerInitializationFileService(Container.GetService <IFileProvider>()));
            var retriever = new TileRetrieverService(accessor, tileContext, generator);

            var pipeline = new DetermineCollectionsTypePipeline()
                           .ExtendWith(new ParseGeoJsonToFeatures()
                                       .IterateWith(new ProjectGeoJSONToGeometric(
                                                        (geoItem) => new WebMercatorProcessor(geoItem)))
                                       .ExtendWith(new GeometricSimplification())
                                       .ExtendWith(new InitializeProjectedFeatures(retriever)));

            await pipeline.Process(context);

            // Its important that this succeeded //
            Assert.IsNotNull(context.Features);
        }
        public async Task project_raw_points_into_features_initialize_layer_from_features_expect_cached_tile()
        {
            var geoJSON  = Container.GetService <IConfigurationStrategy>().GetJson("populated_points_two_US");
            var uniqueId = Guid.NewGuid().ToString().Substring(0, 6);
            var context  = new GeoJsonContext(geoJSON)
            {
                Identifier = uniqueId,
                MaxZoom    = 14,
                Buffer     = 64,
                Extent     = 4096,
                Tolerance  = 3
            };

            var accessor  = new LayerTileCacheAccessor(() => new MockTransformedCacheStorage(), () => new MockRawCacheStorage());
            var generator = new Generator(context, accessor, new LayerInitializationFileService(Container.GetService <IFileProvider>()));
            var retriever = new TileRetrieverService(accessor, context, generator);

            var pipeline = new DetermineCollectionsTypePipeline()
                           .ExtendWith(new ParseGeoJsonToFeatures()
                                       .IterateWith(new ProjectGeoJSONToGeometric(
                                                        (geoItem) => new WebMercatorProcessor(geoItem)))
                                       .ExtendWith(new GeometricSimplification())
                                       .ExtendWith(new InitializeProjectedFeatures(retriever)));

            await pipeline.Process(context);

            var tile = await retriever.GetTile(1, 0, 0);

            Assert.IsNotNull(tile);
            var transformed = tile as ITransformedTile;
            var featue      = transformed.TransformedFeatures.First();

            (int X, int Y)coordinates = transformed.TransformedFeatures.First().Coordinates.First();
            Assert.AreEqual(1707, coordinates.X);
            Assert.AreEqual(3109, coordinates.Y);
        }
        public void parse_alabama_polygon_through_pipeline_expect_translation_to_geometric_object()
        {
            var geoJSON = Container.GetService <IConfigurationStrategy>().GetJson("alabama_outline");

            var context = new GeoJsonContext(geoJSON)
            {
                MaxZoom   = 14,
                Buffer    = 64,
                Extent    = 4096,
                Tolerance = 3
            };

            var pipeline = new DetermineCollectionsTypePipeline()
                           .ExtendWith(new ParseGeoJsonToFeatures()
                                       .IterateWith(new ProjectGeoJSONToGeometric(
                                                        (geoItem) => new WebMercatorProcessor(geoItem)))
                                       .ExtendWith(new GeometricSimplification()));

            pipeline.Process(context);

            var feature = context.TileFeatures.Single();

            Assert.IsNotNull(feature);
        }
Esempio n. 10
0
        internal async Task CommandReceiver(IMessage message)
        {
            if (message is GeneralCommand gCommand)
            {
                // This will be the function that receives a command from the event framework //
                // and processes the command into a valid data conversion //
                var topic = new TopicMessage {
                    Message =
                        $"Tile Processing request started for {gCommand.Command}, for ID:{gCommand.Id.ToString()}"
                };
                messageRepository.AddMessage(topic);
                await messenger.Send(topic);

                try
                {
                    var fileName     = gCommand.CommandDataCollection.FirstOrDefault(cd => cd.DataType == "filename")?.Data?.ToString();
                    var uploadedFile = await fileRepository.Get(gCommand.Id.ToString(), fileName);

                    string converted = uploadedFile.GetDataContentsAsString(Encoding.UTF8);
                    string uniqueId  = GenerateUniqueId(gCommand.Id);
                    var    context   = new GeoJsonContext(uploadedFile.TextContents)
                    {
                        Identifier = fileName + $"_{uniqueId}",
                        MaxZoom    = 14,
                        Buffer     = 64,
                        Extent     = 4096,
                        Tolerance  = 3
                    };

                    var pipeline = new DetermineCollectionsTypePipeline()
                                   .ExtendWith(new ParseGeoJsonToFeatures()
                                               .IterateWith(new ProjectGeoJSONToGeometric(
                                                                (geoItem) => new WebMercatorProcessor(geoItem)))
                                               .ExtendWith(new GeometricSimplification())
                                               .ExtendWith(new InitializeProjectedFeatures(tileService)));

                    await pipeline.Process(context);

                    var layerModel = new LayerInformationModel
                    {
                        Identifier = gCommand.Id,
                        Name       = context.Identifier,
                        Properties = new Property[]
                        {
                            new Property {
                                Name = "features", Value = context.TileFeatures, ValueType = typeof(List <IGeometryItem>)
                            }
                        }
                    };
                    layerService.AddLayer(layerModel);

                    var topicFinished = new TopicMessage
                    {
                        Message = $"Tile Processing request FINISHED for {gCommand.Command}, for ID:{gCommand.Id.ToString()}"
                    };
                    messageRepository.AddMessage(topicFinished);
                    await messenger.Send(topicFinished);
                }
                catch (Exception ex)
                {
                    await logger.Log(new MessageLogEntry
                    {
                        Type        = LogType.Error.ToString(),
                        Title       = $"Processing the command {gCommand.Command} failed while building the projected data. Error Message : {ex.Message}",
                        Id          = gCommand.CorrellationId,
                        MessageBody = ex.StackTrace
                    });
                }
            }
        }